<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wordpress @ Ralf Engel dot Com &#187; MU Bugs</title>
	<atom:link href="http://wordpress.ralfengel.com/tag/mu-bugs/feed" rel="self" type="application/rss+xml" />
	<link>http://wordpress.ralfengel.com</link>
	<description>Wordpress and Wordpress Multi User (MU) Tips and Tricks</description>
	<lastBuildDate>Thu, 27 Oct 2011 20:45:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress MU Write Post page opens very slow</title>
		<link>http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow</link>
		<comments>http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow#comments</comments>
		<pubDate>Tue, 03 Mar 2009 12:45:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MU Bugs]]></category>
		<category><![CDATA[MU trouble]]></category>
		<category><![CDATA[Script busy]]></category>
		<category><![CDATA[Script Error]]></category>
		<category><![CDATA[Write Post Slow]]></category>

		<guid isPermaLink="false">http://wordpress.ralfengel.com/?p=82</guid>
		<description><![CDATA[After finishing an upgrade from WordPress 2.7 to WordPress 2.6.5 my &#8220;Write Post&#8221; page would take very long (2 or 3 minutes) to completley load. The &#8220;Custom Fields&#8221; records where full of entries, some 500 or 600. I deleted all those entries manually and now my &#8220;Write Post&#8221; page would load within about half a [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>After finishing an upgrade from WordPress 2.7 to WordPress 2.6.5 my &#8220;Write Post&#8221; page would take very long (2 or 3 minutes) to completley load. The &#8220;Custom Fields&#8221; records where full of entries, some 500 or 600. I deleted all those entries manually and now my &#8220;Write Post&#8221; page would load within about half a minute or so. This was still very slow, so I did some Googeling on this Issue.</p>
<p>Since I was using Google Chrome I didn&#8217;t get any error messages. Using Mozilla Firefox I got this error message:</p>
<blockquote><p>A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.<br />
Script:http://ralfengel.com/wp-includes/js/jquery/jquery.js?ver=1.2.6:11&#8243;
</p></blockquote>
<p>The slow loading of the &#8220;Write Post&#8221; page in WordPress MU is caused by the execution of a script which loads all the meta data of all the posts (wp_postmeta). I believe that my dirty install (I imported allmost 400 posts with comments from my old WP installation) caused this. I had to repeat the upload several times for each file part (can&#8217;t upload (import) 4 mega bites using the import function of WordPress, thus I broke it up into 4 parts), since the uploads wouldn&#8217;t complete correctley. </p>
<p><strong><em>There are two ways to fix the problem. You can either edit your edit-form-advanced.php file in the wp-admin folder or you can do a clean up in your database by running a query.<br />
</em></strong><br />
<strong>Edit the edit-form-advanced.php</strong><br />
Open the edit-form-advanced.php file found in wp-admin folder in an html editor and navigate to line 306 (for WPMU 2.6.5). You will see the following code there:</p>
<blockquote><p>&#60;?php<br />
$metadata = has_meta($post-&gt;ID);<br />
list_meta($metadata);<br />
?&gt;</p></blockquote>
<p>You will have to delete this code. Save the file and upload it to your wp-admin folder. Refresh your &#8220;Write Post&#8221; screen. It should load within the usual 3 seconds. That is all, you&#8217;re done.</p>
<p><strong>2. Clean up the WordPress Database using a query</strong><br />
To do a Database cleanup you will have to log in to your MySQL Database on your Server.<br />
Once you are in PHP my Admin you should see your database name on top left and below all the tables it contains.<br />
On the top of the right big window you should see a &#8220;SQL&#8221; tab. Click on it. Now paste the following code into the &#8220;execute query&#8221; window.</p>
<blockquote><p>DELETE FROM wp_1_postmeta WHERE post_id =0;</p></blockquote>
<p>DELETE FROM is the command line. wp_1_postmeta is the table name in MY database. You will have to change this to the name of your postmeta record name. This could be wp_postmeta or wp1_postmeta or something like it.<br />
Hit the &#8220;execute query&#8221; button. You should get a report stating how many records where deleted. In my case there were some 3500 records with post_id=0.<br />
After refreshing your &#8220;Write Post&#8221; window, you should get the page loaded in the usual 1-3 seconds.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress mu very slow">wordpress mu very slow</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="A script on this page may be busy or it may have stopped responding wordpress">A script on this page may be busy or it may have stopped responding wordpress</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress slow page editing">wordpress slow page editing</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress slow on post">wordpress slow on post</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress slow loading page editor">wordpress slow loading page editor</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress slow charge new post">wordpress slow charge new post</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress schedule post slow">wordpress schedule post slow</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress post slow">wordpress post slow</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress new post slow\">wordpress new post slow\</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow" title="wordpress new post slow">wordpress new post slow</a></li></ul><!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d82').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d82" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=WordPress+MU+Write+Post+page+opens+very+slow&amp;Description=WordPress+MU+Write+Post+page+opens+very+slow&amp;Url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=WordPress+MU+Write+Post+page+opens+very+slow&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;h=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;t=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;t=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;bm_description=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;T=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;h=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;name=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fwordpress-mu-write-post-page-opens-very-slow&amp;t=WordPress+MU+Write+Post+page+opens+very+slow" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d82').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d82').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.ralfengel.com/mu-bugs/wordpress-mu-write-post-page-opens-very-slow/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Youtube Video in WordPress MU</title>
		<link>http://wordpress.ralfengel.com/mu-bugs/youtube-video-in-wordpress-mu</link>
		<comments>http://wordpress.ralfengel.com/mu-bugs/youtube-video-in-wordpress-mu#comments</comments>
		<pubDate>Thu, 19 Feb 2009 10:53:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MU Bugs]]></category>
		<category><![CDATA[MU Plugins]]></category>
		<category><![CDATA[MU trouble]]></category>

		<guid isPermaLink="false">http://wordpress.ralfengel.com/?p=9</guid>
		<description><![CDATA[This is an attempt to &#8220;fix&#8221; the issue concerning the ability to show Youtube Videos in a WordPress MU post. If you can see the Youtube Video above, then the Easy Tube Plugin works. Download EasyTube. Just in case EasyTube doesn&#8217;t work for you, visit the eJump forum to see if they can advice you [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>This is an attempt to &#8220;fix&#8221; the issue concerning the ability to show Youtube Videos in a WordPress MU post.<br />
<a href="http://wordpress.ralfengel.com/mu-bugs/youtube-video-in-wordpress-mu"><img src="http://img.youtube.com/vi/jFFylx-l1ZY/default.jpg" width="130" height="97" border=0></a><br />
If you can see the Youtube Video above, then the <a href="http://www.ejump.co.uk/wordpress/easytube-plugin-for-wordpress/">Easy Tube Plugin</a> works.</p>
<p><a href="http://downloads.wordpress.org/plugin/easytube.zip">Download EasyTube</a>.</p>
<p>Just in case EasyTube doesn&#8217;t work for you, visit the <a href="http://forums.ejump.co.uk/">eJump forum</a> to see if they can advice you on the issue.</p>
<p>To use the EasyTube Youtube Video Plugin just add the following command line in your post:</p>
<blockquote><p>&#91;youtube:URL to Video]</p></blockquote>
<p>To show Google Videos just change youtube: to googlevideo:</p>
<p>Width and Height<br />
To display different Video Window Sizes just adjust your tag to the following format: &#91;youtube:URL WIDTH HEIGHT]</p>
<p>Autoplay?<br />
To have your Video start automatically add “&amp;autoplay=1? after the URL.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpress.ralfengel.com/mu-bugs/youtube-video-in-wordpress-mu" title="wordpress mu youtube">wordpress mu youtube</a></li><li><a href="http://wordpress.ralfengel.com/mu-bugs/youtube-video-in-wordpress-mu" title="video plugin youtube mu wordpress">video plugin youtube mu wordpress</a></li></ul><!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d9').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d9" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Youtube+Video+in+WordPress+MU&amp;Description=Youtube+Video+in+WordPress+MU&amp;Url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Youtube+Video+in+WordPress+MU&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;h=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;t=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;t=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;bm_description=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;T=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;h=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;name=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-bugs%2Fyoutube-video-in-wordpress-mu&amp;t=Youtube+Video+in+WordPress+MU" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d9').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d9').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.ralfengel.com/mu-bugs/youtube-video-in-wordpress-mu/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrade from WordPress 2.7 to WordPress MU 2.6.5</title>
		<link>http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265</link>
		<comments>http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265#comments</comments>
		<pubDate>Thu, 19 Feb 2009 09:33:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MU Installation]]></category>
		<category><![CDATA[MU Bugs]]></category>
		<category><![CDATA[MU Plugins]]></category>
		<category><![CDATA[MU Sidebar Widgets]]></category>
		<category><![CDATA[MU trouble]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress MU]]></category>

		<guid isPermaLink="false">http://wordpress.ralfengel.com/?p=7</guid>
		<description><![CDATA[Yesterday I upgraded my Blog Site from WordPress 2.7 to WordPress MU (Multi User) 2.6.5. Everything went more or less (hehe) well, with some exceptions. I ran into major trouble concerning several issues. 1. Exec-PHP 2. Youtube Video 3. Sidebar Widgets 4. Write Post &#8211; Custom Fields 5. Google Analytics 1. Exec-PHP After finishing the [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Yesterday I upgraded my Blog Site from WordPress 2.7 to WordPress MU (Multi User) 2.6.5.<br />
Everything went more or less (hehe) well, with some exceptions. I ran into major trouble concerning several issues.</p>
<ul>
<strong>1. Exec-PHP<br />
2. Youtube Video<br />
3. Sidebar Widgets<br />
4. Write Post &#8211; Custom Fields<br />
5. Google Analytics</strong></ul>
<p><strong>1. Exec-PHP</strong><br />
After finishing the WP MU install I started re-activating all my plugins. All of them did re-activate without any error messages. Then, when I returned to the &#8220;Write a Post&#8221; page, the usual </p>
<blockquote><p>
&#8220;Exec-PHP WYSIWYG Conversion Warning. Saving this article will render all contained PHP code permanently unuseful. Even if you are saving this article through the Code editor. You can turn off this warning in your user profile. Ignore this warning in case this article does not contain PHP code. Read the Exec-PHP documentation if you are unsure what to do next.&#8221;</p></blockquote>
<p>Message came up! Doing what the help link says, I returned and found out that the Warning was still active. I googled the issue, and found out that the exec-php plugin will not work on WordPress MU. I found some posts mentioning a way to get around this issue, but they were clearly warning of a Security Issue, <strong>leaving WordPress MU vulnerable to hackers!!!</strong><br />
So, for now I&#8217;m trying to find a way, a new way to make PHP code work on WordPress MU, and here it is:<br />
ATTENTION: Only use this procedure if you are the only user of WordPress MU, since it is a security risk!!<br />
You will have to download a plugin to be able to execute code withing the &#60; and &gt; brackets, and you will further have to edit you kses.php file in the wp-includes folder. Go to my <a href="http://wordpress.ralfengel.com/mu-plugins/how-to-execute-php-code-in-wordpress-mu">&#8220;Execute PHP code on WordPress MU&#8221;</a> post for all details&#8230;</p>
<p><strong>2. Youtube Video</strong><br />
I have 365 posts, and at least 40 of them have one or more Youtube Videos integrated into them. This Youtube embedding worked excellent on WordPress, but on WordPress MU it does not. After Googeling around for a while I ran into this excellent Plugin created by eJump. It is called <a href="http://www.ejump.co.uk/wordpress/easytube-plugin-for-wordpress/">EasyTube</a> and it overruns the Worpress MU protection, thus allowing for Youtube and Google Videos to be shown in WordPress MU.<br />
<strong>So, the &#8220;Youtube Video&#8221; issue is solved!</strong></p>
<p><strong>3. Sidebar Widgets</strong><br />
I&#8217;m using the &#8220;Adsense Prosense&#8221; theme for WordPress. It is a Widget ready theme that has 3 Adsense ads integrated, 3 columns, 2 Sidebars. It worked fine on WordPress 2.7, but now on WordPress MU it is not behaving correctly. After editing your Sidebar 1, and clicking on &#8220;Save Changes&#8221;, you would want to edit Sidebar 2. So I went ahead to display Sidebar 2, and started adding the Widgets I would like to be displayed in it, but everytime I add a Widget, the whole screen returns to display Sidebar 1 and with the Widgets added that I wanted on Sidebar 2. Now that is weird!</p>
<p>I found out that I can use Sidebar 1 as I desire, personalized, and just not touch Sidebar 2, which already has the basic fields in it. Nevertheless I&#8217;d rather be able to personalize both Sidebars&#8230;</p>
<p><strong>4. Write Post &#8211; Custom Fields</strong><br />
Today when I wanted to enter the -write post- tab it took an eternity to open, some 2 or three minutes. I started looking around on Google and found several possible reasons that could cause this.<br />
The most logic one would be a plugin. Thus I de-activated all my plugins, but the problem persisted.<br />
I tried to open this blogs -write post- tab, and it opend in an acceptable time, thus I knew that it was my main blog who was giving trouble.<br />
I kept on checking and by coincidence saw that inside the &#8220;custom fields&#8221; tab, there was a lot of information in the different fields. I waited for the loading process to finish and then opened the custom field tab, and there were at least 500 entires, descriptions, title and enclosure.<br />
I started deleting them manually and it took me like 20 minutes or more. Then I reloaded the page and some fields where still there, deleted them and reloaded. Finally all custom fields where empty.<br />
The page still loads slower than on my subdomain blogs, but at least it works again.<br />
I will investigate this further and post the solution here.</p>
<p><strong>5. Google Analytics</strong><br />
If you have used Google Analytics before, you may have been using Google Analytics for WordPress by Joost Devalk at <a href="http://yoast.com/wordpress/google-analytics/">http://yoast.com/wordpress/google-analytics/</a>. Sorry, but it seems that this version of the plugin doesn&#8217;t work for WPMU.<br />
I googled to see if there are any Google Analytics for WordPress MU out there and found this one:<br />
<a href="http://www.be-lifted.com/posts/google-analytics-plugin-for-wordpress-mu-revised-english/">Google Analytics Plugin For WordPress MU &#8211; Revised &#8211; English</a><br />
It works perfectly. One confusing thing about it is that you can reach a &#8220;urchin&#8221; field in two different tabs:<br />
1. Site Admin: Google Analytics<br />
2. Settings: Google Analytics<br />
Both windows look different, as far as I understand If you fill out option 1. on your main blog, a side wide analytics will be done, if you choose option 2 only the specific URL will by considered for analytics. I&#8217;ll observe and update&#8230;</p>
<p>I&#8217;m working on these Issues and will add solutions as they come but I would greatly appreciate any feedback from you on this.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="google analytics for wordpress wordpress multiuser">google analytics for wordpress wordpress multiuser</a></li><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="analytics wordpress mu">analytics wordpress mu</a></li><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="Exec-PHP WYSIWYG Conversion Warning Saving this article will render all contained PHP code permanen">Exec-PHP WYSIWYG Conversion Warning Saving this article will render all contained PHP code permanen</a></li><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="Exec-PHP WYSIWYG Conversion Warning Saving this article will render all contained PHP code permanently unuseful">Exec-PHP WYSIWYG Conversion Warning Saving this article will render all contained PHP code permanently unuseful</a></li><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="exec-php wysiwyg conversion warning still there">exec-php wysiwyg conversion warning still there</a></li><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="google analytics wordpress mu error">google analytics wordpress mu error</a></li><li><a href="http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265" title="help upgrading wordpress mu 2 6 2 7">help upgrading wordpress mu 2 6 2 7</a></li></ul><!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d7').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d7" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5&amp;Description=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5&amp;Url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;h=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;t=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;t=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;bm_description=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;T=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;h=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;name=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwordpress.ralfengel.com%2Fmu-installation%2Fupgrade-from-wordpress-27-to-wordpress-mu-265&amp;t=Upgrade+from+WordPress+2.7+to+WordPress+MU+2.6.5" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://wordpress.ralfengel.com/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d7').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d7').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wordpress.ralfengel.com/mu-installation/upgrade-from-wordpress-27-to-wordpress-mu-265/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

