<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Sudden empty / blank page for large posts with WordPress</title>
	<atom:link href="http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/</link>
	<description>secrets and mysteries from the realms of the technocrats and other such ramblings</description>
	<lastBuildDate>Thu, 09 Sep 2010 06:06:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Christopher Sutton</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-9868</link>
		<dc:creator>Christopher Sutton</dc:creator>
		<pubDate>Wed, 08 Sep 2010 12:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-9868</guid>
		<description>Just wasted 20 minutes trying to figure out this bizarre problem with a post - but then your solution (changing the PCRE limits in php.ini) worked like a charm. Thanks for bothering to write it up!</description>
		<content:encoded><![CDATA[<p>Just wasted 20 minutes trying to figure out this bizarre problem with a post &#8211; but then your solution (changing the PCRE limits in php.ini) worked like a charm. Thanks for bothering to write it up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-8873</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 29 Jul 2010 00:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-8873</guid>
		<description>Thank you!!  Just wasted 3 hours of my life trying to figure this out.

I&#039;m on a shared server with BlueHost, but the php.ini fix worked perfectly even without any sort of server reset (sadly, that&#039;s the last thing I tried...)

Thanks again for putting this together!</description>
		<content:encoded><![CDATA[<p>Thank you!!  Just wasted 3 hours of my life trying to figure this out.</p>
<p>I&#8217;m on a shared server with BlueHost, but the php.ini fix worked perfectly even without any sort of server reset (sadly, that&#8217;s the last thing I tried&#8230;)</p>
<p>Thanks again for putting this together!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pffmihai</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-8819</link>
		<dc:creator>pffmihai</dc:creator>
		<pubDate>Mon, 26 Jul 2010 16:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-8819</guid>
		<description>I was too working on a client page with lots of shortcodes so he can easily edit the page contents and i was in the same position.

Using these two lines 

ini_set(‘pcre.recursion_limit’,20000000);
ini_set(‘pcre.backtrack_limit’,10000000);

in the wp-config.php worked like a charm. 

Another note on the code, beside the fact that it doesn&#039;t require the apache restart, is that you have to make sure you change the quote marks in that as wordpress comment system replaces the quotes in a funny way.

Thank you for the solution.</description>
		<content:encoded><![CDATA[<p>I was too working on a client page with lots of shortcodes so he can easily edit the page contents and i was in the same position.</p>
<p>Using these two lines </p>
<p>ini_set(‘pcre.recursion_limit’,20000000);<br />
ini_set(‘pcre.backtrack_limit’,10000000);</p>
<p>in the wp-config.php worked like a charm. </p>
<p>Another note on the code, beside the fact that it doesn&#8217;t require the apache restart, is that you have to make sure you change the quote marks in that as wordpress comment system replaces the quotes in a funny way.</p>
<p>Thank you for the solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Floridan</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-8317</link>
		<dc:creator>Floridan</dc:creator>
		<pubDate>Thu, 08 Jul 2010 02:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-8317</guid>
		<description>Hi Abel,
I posted this over at Wordpress.org and I would like to re-post it here for those readers who had no success with your fix.

Some of you have reported issues with blank pages if your posts are too long or contain too many comments. I had the same problem with disappearing posts until Rob in tech support at Liquid Web helped me to resolve the issue. I tried Abel&#039;s fix over at &lt;a href=&quot;http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/&quot; rel=&quot;nofollow&quot;&gt;http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/&lt;/a&gt; but I had no success.

Then Rob came up with the solution after about 45 minutes of troubleshooting. The fix is to increase the memory limit in your wp_settings.php file which is found in your server root. The number below worked for me! I&#039;m a happy camper now. :)

&lt;code&gt;if ( !defined(&#039;WP_MEMORY_LIMIT&#039;) )
	define(&#039;WP_MEMORY_LIMIT&#039;, &#039;48M&#039;);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Abel,<br />
I posted this over at Wordpress.org and I would like to re-post it here for those readers who had no success with your fix.</p>
<p>Some of you have reported issues with blank pages if your posts are too long or contain too many comments. I had the same problem with disappearing posts until Rob in tech support at Liquid Web helped me to resolve the issue. I tried Abel&#8217;s fix over at <a href="http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/" rel="nofollow">http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/</a> but I had no success.</p>
<p>Then Rob came up with the solution after about 45 minutes of troubleshooting. The fix is to increase the memory limit in your wp_settings.php file which is found in your server root. The number below worked for me! I&#8217;m a happy camper now. <img src='http://www.undermyhat.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code>if ( !defined('WP_MEMORY_LIMIT') )<br />
	define('WP_MEMORY_LIMIT', '48M');</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: YouLin</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-8179</link>
		<dc:creator>YouLin</dc:creator>
		<pubDate>Thu, 01 Jul 2010 06:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-8179</guid>
		<description>Hi, Abel,
Found your useful blog via search. I am having this problem since months. And this week I installed WP ver3.0, and it is getting worst and mess up my &lt;a href=&quot;http://www.youlinchng.com&quot; rel=&quot;nofollow&quot;&gt;whole blog&lt;/a&gt;. I just realised that a bug on wordpress ver 3. I am wondering wheather your solutions(since it&#039;s quite long from now)can apply to the current problem?</description>
		<content:encoded><![CDATA[<p>Hi, Abel,<br />
Found your useful blog via search. I am having this problem since months. And this week I installed WP ver3.0, and it is getting worst and mess up my <a href="http://www.youlinchng.com" rel="nofollow">whole blog</a>. I just realised that a bug on wordpress ver 3. I am wondering wheather your solutions(since it&#8217;s quite long from now)can apply to the current problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Quinn</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-7277</link>
		<dc:creator>Rob Quinn</dc:creator>
		<pubDate>Tue, 18 May 2010 02:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-7277</guid>
		<description>Thank You! Thank You! Thank You! I a freakin&#039; geek and have be tearing what little hair I have left trying to figure out why changing some minor text on my wife&#039;s doll site was causing the page to go blank. I owe you a beer.</description>
		<content:encoded><![CDATA[<p>Thank You! Thank You! Thank You! I a freakin&#8217; geek and have be tearing what little hair I have left trying to figure out why changing some minor text on my wife&#8217;s doll site was causing the page to go blank. I owe you a beer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-6831</link>
		<dc:creator>Anne</dc:creator>
		<pubDate>Thu, 29 Apr 2010 03:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-6831</guid>
		<description>THANKS A MILLION!!  We were really banging our heads against the wall until we read your post.  You are a saint!  Your fix worked great!</description>
		<content:encoded><![CDATA[<p>THANKS A MILLION!!  We were really banging our heads against the wall until we read your post.  You are a saint!  Your fix worked great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fum</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-6829</link>
		<dc:creator>fum</dc:creator>
		<pubDate>Thu, 29 Apr 2010 02:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-6829</guid>
		<description>I want to add a detail that I forgot:
support people asked me to show you an example of the problem input, so I made a large entry to show the issue.
Then when I only have included a very large text the problem not appears, the entry was normal published.
How is it I thought?
When I added an singlepic with nextgen gallery shortcode, I got the trouble, the full entry disappears.</description>
		<content:encoded><![CDATA[<p>I want to add a detail that I forgot:<br />
support people asked me to show you an example of the problem input, so I made a large entry to show the issue.<br />
Then when I only have included a very large text the problem not appears, the entry was normal published.<br />
How is it I thought?<br />
When I added an singlepic with nextgen gallery shortcode, I got the trouble, the full entry disappears.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fum</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-6811</link>
		<dc:creator>fum</dc:creator>
		<pubDate>Wed, 28 Apr 2010 14:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-6811</guid>
		<description>Hi,first thank you for publish your work, I got exactly the sensation you said when I sow that my  laborious entry does not appear in my blog. 
I tried to solve the trouble contacting the support hosting people and they said that has modified the recursion limit of PHP.ini according to your instructions. But nothing change.
Any suggestion about this?

In other way, I tried the alternative solution and I have looked the formating.php and sought the code line you said, but can&#039;t find it.  There are about twenty  similar lines but not exactly this.  I&#039;m using WP 2.9.2 and your example is over 2.8 can you tell me how to find the equivalent?

I&#039;m very gratefull if you can help me, greetings, and sorry for my horrible english.</description>
		<content:encoded><![CDATA[<p>Hi,first thank you for publish your work, I got exactly the sensation you said when I sow that my  laborious entry does not appear in my blog.<br />
I tried to solve the trouble contacting the support hosting people and they said that has modified the recursion limit of PHP.ini according to your instructions. But nothing change.<br />
Any suggestion about this?</p>
<p>In other way, I tried the alternative solution and I have looked the formating.php and sought the code line you said, but can&#8217;t find it.  There are about twenty  similar lines but not exactly this.  I&#8217;m using WP 2.9.2 and your example is over 2.8 can you tell me how to find the equivalent?</p>
<p>I&#8217;m very gratefull if you can help me, greetings, and sorry for my horrible english.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abel Braaksma</title>
		<link>http://www.undermyhat.org/blog/2009/07/sudden-empty-blank-page-for-large-posts-with-wordpress/comment-page-1/#comment-6312</link>
		<dc:creator>Abel Braaksma</dc:creator>
		<pubDate>Fri, 09 Apr 2010 10:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.undermyhat.org/blog/?p=126#comment-6312</guid>
		<description>Apologies for missing your comment earlier on. I&#039;m running WordPress 2.9.x and the fix still works (the fix is at PHP level, not really at WP level, so it should work for any future version). Can you elaborate what your issue is if it doesn&#039;t help?</description>
		<content:encoded><![CDATA[<p>Apologies for missing your comment earlier on. I&#8217;m running WordPress 2.9.x and the fix still works (the fix is at PHP level, not really at WP level, so it should work for any future version). Can you elaborate what your issue is if it doesn&#8217;t help?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: www.undermyhat.org @ 2010-09-10 05:04:11 -->