Posted by Andrea under
Where can I find...?
If you’ve stumbled your way here, I’m looking for reader feedback. If you’ve got questions about wordpressmu and can’t seem to find the answer, I’ll try and help.
The only caveat is, I’ll stick to the distributed codebase. I can point out, however, if you need a plugin or not and where to find it - if it exists.
Share This
google.load("language", "1");
var curstate = 0;
var hasloaded = 0;
function bnc_show_translated() {
if (hasloaded == 0) {
bnc_lang_callback();
hasloaded = 1;
}
for (i = 0; i < 6; i++) {
var elem = $("bnc_original_" + i);
if (elem) {
if (curstate) {
elem.show();
} else {
elem.hide();
}
}
}
for (i = 0; i < 6; i++) {
var elem = $("bnc_trans_" + i);
if (elem) {
if (curstate) {
elem.hide();
} else {
elem.show();
}
}
}
if (curstate) {
$("bnc_trans_state1").show();
$("bnc_trans_state2").hide();
curstate = 0;
} else {
$("bnc_trans_state1").hide();
$("bnc_trans_state2").show();
curstate = 1;
}
}
function bnc_detect_div(div_id) {
var text = document.getElementById(div_id);
if (text) {
text = text.innerHTML;
if (text.length > 0) {
google.language.detect(text,
function(result) {
if (!result.error) {
if (result.language != "en") {
if (result.confidence > 0.25) {
$("bnc_translating").show();
bnc_xlate_div(result.language, div_id, "en");
}
}
}
} );
}
}
}
function bnc_xlate_div(src_lang,div_id,o_lang) {
var text = document.getElementById(div_id);
if (text) {
text = text.innerHTML;
google.language.translate(text, src_lang, o_lang,
function(result) {
var translated = document.getElementById(div_id); if (result.translation) { translated.innerHTML = result.translation; } });
}
}
function bnc_lang_callback() {
bnc_xlate_div("en", "bnc_lang_i_0_19", "en");
bnc_xlate_div("en", "bnc_lang_i_1_19", "en");
bnc_xlate_div("en", "bnc_lang_i_2_19", "en");
bnc_xlate_div("en", "bnc_lang_i_3_19", "en");
bnc_xlate_div("en", "bnc_lang_i_4_19", "en");
bnc_xlate_div("en", "bnc_lang_i_5_19", "en");
bnc_xlate_div("en", "bnc_lang_i_6_19", "en");
bnc_xlate_div("en", "bnc_lang_i_7_19", "en");
bnc_xlate_div("en", "bnc_lang_i_8_19", "en");
bnc_xlate_div("en", "bnc_lang_i_9_19", "en");
bnc_xlate_div("en", "bnc_lang_i_10_19", "en");
bnc_xlate_div("en", "bnc_lang_i_11_19", "en");
bnc_xlate_div("en", "bnc_lang_i_12_19", "en");
bnc_xlate_div("en", "bnc_lang_i_13_19", "en");
bnc_xlate_div("en", "bnc_lang_i_14_19", "en");
bnc_xlate_div("en", "bnc_lang_i_15_19", "en");
bnc_xlate_div("en", "bnc_lang_i_16_19", "en");
bnc_xlate_div("en", "bnc_lang_i_17_19", "en");
bnc_xlate_div("en", "bnc_lang_i_18_19", "en");
bnc_xlate_div("en", "bnc_lang_i_19_19", "en");
bnc_xlate_div("en", "bnc_lang_i_20_19", "en");
bnc_xlate_div("en", "bnc_lang_i_21_19", "en");
bnc_xlate_div("en", "bnc_lang_i_22_19", "en");
bnc_xlate_div("en", "bnc_lang_i_23_19", "en");
bnc_xlate_div("en", "bnc_lang_i_24_19", "en");
bnc_xlate_div("en", "bnc_lang_i_25_19", "en");
bnc_xlate_div("en", "bnc_lang_i_26_19", "en");
bnc_xlate_div("en", "bnc_lang_i_27_19", "en");
bnc_xlate_div("en", "bnc_lang_i_28_19", "en");
bnc_xlate_div("en", "bnc_lang_i_29_19", "en");
bnc_xlate_div("en", "bnc_lang_i_30_19", "en");
bnc_xlate_div("en", "bnc_lang_i_31_19", "en");
bnc_xlate_div("en", "bnc_lang_i_32_19", "en");
bnc_xlate_div("en", "bnc_lang_i_33_19", "en");
}
function bnc_startup() {
bnc_xlate_div("en", "bnc_translate_info", "en");
bnc_xlate_div("en", "bnc_translate_info2", "en");
bnc_detect_div("bnc_lang_i_0_19");bnc_detect_div("bnc_lang_i_1_19");bnc_detect_div("bnc_lang_i_2_19");bnc_detect_div("bnc_lang_i_3_19");bnc_detect_div("bnc_lang_i_4_19");bnc_detect_div("bnc_lang_i_5_19");bnc_detect_div("bnc_lang_i_6_19");bnc_detect_div("bnc_lang_i_7_19");bnc_detect_div("bnc_lang_i_8_19");bnc_detect_div("bnc_lang_i_9_19");bnc_detect_div("bnc_lang_i_10_19");bnc_detect_div("bnc_lang_i_11_19");bnc_detect_div("bnc_lang_i_12_19");bnc_detect_div("bnc_lang_i_13_19");bnc_detect_div("bnc_lang_i_14_19");bnc_detect_div("bnc_lang_i_15_19");bnc_detect_div("bnc_lang_i_16_19");bnc_detect_div("bnc_lang_i_17_19");bnc_detect_div("bnc_lang_i_18_19");bnc_detect_div("bnc_lang_i_19_19");bnc_detect_div("bnc_lang_i_20_19");bnc_detect_div("bnc_lang_i_21_19");bnc_detect_div("bnc_lang_i_22_19");bnc_detect_div("bnc_lang_i_23_19");bnc_detect_div("bnc_lang_i_24_19");bnc_detect_div("bnc_lang_i_25_19");bnc_detect_div("bnc_lang_i_26_19");bnc_detect_div("bnc_lang_i_27_19");bnc_detect_div("bnc_lang_i_28_19");bnc_detect_div("bnc_lang_i_29_19");bnc_detect_div("bnc_lang_i_30_19");bnc_detect_div("bnc_lang_i_31_19");bnc_detect_div("bnc_lang_i_32_19");bnc_detect_div("bnc_lang_i_33_19"); }
google.setOnLoadCallback(bnc_startup);
October 1st, 2007 at 3:42 pm
Andrea_r,
thanks for your notes on the forum - I’m thinking now that I will document a local install and push it out to my website - but I’m sure everybody does something different with their local installs. So…my feedback: I’d like to see how you would run MU locally, in as much detail as you can bear.
Andrea_r,
thanks for your notes on the forum - I’m thinking now that I will document a local install and push it out to my website - but I’m sure everybody does something different with their local installs. So…my feedback: I’d like to see how you would run MU locally, in as much detail as you can bear.
October 11th, 2007 at 10:51 am
Andrea,
I think what you are doing here is awesome. I am running a WPMu installation at the University of Mary Washington (http://umwblogs.org), and will be using your sage advice here regularly. Thanks for the great tutorials.
I will be writing some that are more specific to education WPMu installs, but borrow at will, most of my blog posts about WPMu can be found here:
http://bavatuesdays.com/category/wpmu
Best,
Jim
Andrea,
I think what you are doing here is awesome. I am running a WPMu installation at the University of Mary Washington (http://umwblogs.org), and will be using your sage advice here regularly. Thanks for the great tutorials.
I will be writing some that are more specific to education WPMu installs, but borrow at will, most of my blog posts about WPMu can be found here:
http://bavatuesdays.com/category/wpmu
Best,
Jim
November 20th, 2007 at 2:02 pm
Andrea,
Great idea for the site. Have just entered into working with WPMU, I can say that more tutorials and HOWTOs would definitely be of interest.
In particular, I’d love more info about how to customize the “home” portal page. Right now I’m just stumbling along trying to figure it all out. For instance, it doesn’t seem that you can apply a theme to the “home” portal page in the same way that you can to regular blogs. It works differently and applying a theme destroys the home portal page that you had. I also want to do things like add the list of recent posts to the portal page, which I gather from browsing through the codex that I can do by adding some of the code snippets found there onto my portal page. I’d also like to install things like:
- site-wide search (i.e. across all blogs)
- site-wide RSS feed (for someone who wants articles in all blogs)
- tag cloud across all blogs
A series of articles about how to add those elements to a WPMU installation would be great to see.
For some of what I personally am looking for in a blog portal, you can see the page I put up on The NewPR Wiki at:
http://www.thenewpr.com/wiki/pmwiki.php?pagename=CorpBlogPortal.HomePage
I’ve also been blogging about this subject on my own blog at:
http://www.disruptiveconversations.com/blog_portals/index.html
Anyway, if you are looking for a direction in which to write more, a series of posts about all of the “cross-blog” capabilities of WPMU would be most welcome.
Again, thanks for creating a great site!
Dan
Andrea,
Great idea for the site. Have just entered into working with WPMU, I can say that more tutorials and HOWTOs would definitely be of interest.
In particular, I’d love more info about how to customize the “home” portal page. Right now I’m just stumbling along trying to figure it all out. For instance, it doesn’t seem that you can apply a theme to the “home” portal page in the same way that you can to regular blogs. It works differently and applying a theme destroys the home portal page that you had. I also want to do things like add the list of recent posts to the portal page, which I gather from browsing through the codex that I can do by adding some of the code snippets found there onto my portal page. I’d also like to install things like:
- site-wide search (i.e. across all blogs)
- site-wide RSS feed (for someone who wants articles in all blogs)
- tag cloud across all blogs
A series of articles about how to add those elements to a WPMU installation would be great to see.
For some of what I personally am looking for in a blog portal, you can see the page I put up on The NewPR Wiki at:
http://www.thenewpr.com/wiki/pmwiki.php?pagename=CorpBlogPortal.HomePage
I’ve also been blogging about this subject on my own blog at:
http://www.disruptiveconversations.com/blog_portals/index.html
Anyway, if you are looking for a direction in which to write more, a series of posts about all of the “cross-blog” capabilities of WPMU would be most welcome.
Again, thanks for creating a great site!
Dan
December 9th, 2007 at 7:15 pm
Hi There
I am looking into the validity of using WPMU as a guild website. I think the whole forums/gallery structure is dated and is also ruined by spam bots these days.
WPMU looks like it could be a nice way to have a site with each guild member having their own blog.
My main concern is taking the information from all these members and displaying it on a main page.
Admin aside, I do not really want or need the “primary” blog as I would have my own blog like other users.
In fact I would prefer the site have a static main page. with maybe just the latest blog posts listed.
My question is, how can I pull the content of the various blogs onto the sites main page or a static page and remove the main page “blogginess”?
Hi There
I am looking into the validity of using WPMU as a guild website. I think the whole forums/gallery structure is dated and is also ruined by spam bots these days.
WPMU looks like it could be a nice way to have a site with each guild member having their own blog.
My main concern is taking the information from all these members and displaying it on a main page.
Admin aside, I do not really want or need the “primary” blog as I would have my own blog like other users.
In fact I would prefer the site have a static main page. with maybe just the latest blog posts listed.
My question is, how can I pull the content of the various blogs onto the sites main page or a static page and remove the main page “blogginess”?
February 23rd, 2008 at 11:21 am
Hello,
I have a couple of standalone wordpress blogs. Is there a way to turn in into a single WPMU installation?
Hello,
I have a couple of standalone wordpress blogs. Is there a way to turn in into a single WPMU installation?
March 27th, 2008 at 5:08 pm
Hi, thanks for the site.
I’ve just started playing with a new site developed on WPMU. I’ve managed to integrate BBPress fine, but I’d also like to integrate wiki software of some kind — all three sharing sign-ups, etc.
Any leads or tutorials?
Hi, thanks for the site.
I’ve just started playing with a new site developed on WPMU. I’ve managed to integrate BBPress fine, but I’d also like to integrate wiki software of some kind — all three sharing sign-ups, etc.
Any leads or tutorials?