<?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; Script busy</title>
	<atom:link href="http://wordpress.ralfengel.com/tag/script-busy/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>
	</channel>
</rss>

