<?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: How to increase php wordpress memory limit</title>
	<atom:link href="http://hecode.com/how-to-increase-php-wordpress-memory-limit/feed/" rel="self" type="application/rss+xml" />
	<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/</link>
	<description>WordPress Professional Solutions - Wishlist Member advanced -  – SEO Consulting Services - Plugins and WP Theme</description>
	<lastBuildDate>Tue, 20 Mar 2012 15:02:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Sajan Abbas</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-2972</link>
		<dc:creator>Sajan Abbas</dc:creator>
		<pubDate>Wed, 21 Dec 2011 12:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-2972</guid>
		<description>Thnx it works 4 mine wordpress</description>
		<content:encoded><![CDATA[<p>Thnx it works 4 mine wordpress</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-848</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 27 Jul 2011 15:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-848</guid>
		<description>@Valentin
Try adding this line to top of your wp-config.php file: 
&lt;code&gt;define(&#039;WP_MEMORY_LIMIT&#039;, &#039;64M&#039;);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@Valentin<br />
Try adding this line to top of your wp-config.php file:<br />
<code>define('WP_MEMORY_LIMIT', '64M');</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valentin</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-847</link>
		<dc:creator>Valentin</dc:creator>
		<pubDate>Wed, 27 Jul 2011 15:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-847</guid>
		<description>In the last Version of TPC Memory usage, you can see a new parameter. WP Memory. In my case Look image below. Yo can apreciate that my WP Memory is 32 MB and PHP is 64 MB. 

Can I increase the 32 Mb of WP Memory?

http://screencast.com/t/EUALK8EKgY</description>
		<content:encoded><![CDATA[<p>In the last Version of TPC Memory usage, you can see a new parameter. WP Memory. In my case Look image below. Yo can apreciate that my WP Memory is 32 MB and PHP is 64 MB. </p>
<p>Can I increase the 32 Mb of WP Memory?</p>
<p><a href="http://screencast.com/t/EUALK8EKgY" >http://screencast.com/t/EUALK8EKgY</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yan</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-759</link>
		<dc:creator>Yan</dc:creator>
		<pubDate>Tue, 14 Jun 2011 02:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-759</guid>
		<description>It&#039;s worked for me...
Thanks a lot, but can you tell me about where I can find my php.ini? I mean the location of the file....</description>
		<content:encoded><![CDATA[<p>It&#8217;s worked for me&#8230;<br />
Thanks a lot, but can you tell me about where I can find my php.ini? I mean the location of the file&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-704</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Sat, 09 Apr 2011 09:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-704</guid>
		<description>Hello Todd,

It might be limit of your php ini max file upload size. Try to increase upload size in your php.ini

For example, Here are two ways to increase the limit on uploaded files to 20 MB:

    *1)  Add the below to the relevant php.ini file (recommended, if you have access). Note that for some hosts this is a system-wide setting. However, for hosts running PHP as a CGI script with suexec (for example) you may be able to put these directives in a php.ini file in your domain root directory.
          o upload_max_filesize = 20M
          o post_max_size = 20M
    *2) OR add the below to your .htaccess file in your Drupal root directory.
          o php_value upload_max_filesize 20M
          o php_value post_max_size 20M

I hope it Helped. 
Andy</description>
		<content:encoded><![CDATA[<p>Hello Todd,</p>
<p>It might be limit of your php ini max file upload size. Try to increase upload size in your php.ini</p>
<p>For example, Here are two ways to increase the limit on uploaded files to 20 MB:</p>
<p>    *1)  Add the below to the relevant php.ini file (recommended, if you have access). Note that for some hosts this is a system-wide setting. However, for hosts running PHP as a CGI script with suexec (for example) you may be able to put these directives in a php.ini file in your domain root directory.<br />
          o upload_max_filesize = 20M<br />
          o post_max_size = 20M<br />
    *2) OR add the below to your .htaccess file in your Drupal root directory.<br />
          o php_value upload_max_filesize 20M<br />
          o php_value post_max_size 20M</p>
<p>I hope it Helped.<br />
Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-690</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Thu, 31 Mar 2011 19:12:34 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-690</guid>
		<description>Hi Andy,

I am using Wordpress 3.05 and have my memory set to 128M which seems to be more than enough.  I also change the permissions of the wtc7uploads folder to 777 to make it writable to anyone, but the contact form 7 plugin will not work.  Each time try to upload an image of more than 1mb to through a form on our website, I keep getting that exhausted error.  I&#039;ve been trying all the things you mentioned above but no luck.  Do you have any ideas what it can be that is causing this exhausted issue.  Thank so much.</description>
		<content:encoded><![CDATA[<p>Hi Andy,</p>
<p>I am using WordPress 3.05 and have my memory set to 128M which seems to be more than enough.  I also change the permissions of the wtc7uploads folder to 777 to make it writable to anyone, but the contact form 7 plugin will not work.  Each time try to upload an image of more than 1mb to through a form on our website, I keep getting that exhausted error.  I&#8217;ve been trying all the things you mentioned above but no luck.  Do you have any ideas what it can be that is causing this exhausted issue.  Thank so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-531</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 18 Aug 2010 12:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-531</guid>
		<description>Yes Carlo! blank page also indicate to increase your php memory limit.</description>
		<content:encoded><![CDATA[<p>Yes Carlo! blank page also indicate to increase your php memory limit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-528</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Sat, 14 Aug 2010 17:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-528</guid>
		<description>Great post bro!
My compliments.
A blank page also indicate to increase your php memory limit, right?

Cheers</description>
		<content:encoded><![CDATA[<p>Great post bro!<br />
My compliments.<br />
A blank page also indicate to increase your php memory limit, right?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-486</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Sat, 10 Jul 2010 20:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-486</guid>
		<description>WordPress Works well with 32MB. yours is great memory. problem can be from incompatible plugins with theme.Try deactivating all plugins</description>
		<content:encoded><![CDATA[<p>WordPress Works well with 32MB. yours is great memory. problem can be from incompatible plugins with theme.Try deactivating all plugins</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eyl</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-479</link>
		<dc:creator>Eyl</dc:creator>
		<pubDate>Tue, 06 Jul 2010 07:43:04 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-479</guid>
		<description>thanks, my meory limit is changed to 64MB but the fatal error still appear. im using wordpress 3.0 with mystique theme.</description>
		<content:encoded><![CDATA[<p>thanks, my meory limit is changed to 64MB but the fatal error still appear. im using wordpress 3.0 with mystique theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fatal Error While Creating Profiles</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-453</link>
		<dc:creator>Fatal Error While Creating Profiles</dc:creator>
		<pubDate>Mon, 10 May 2010 00:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-453</guid>
		<description>I actually got some info here, See here  How to increase wordpress memory limit, I tried number #3, very helpful. Thank you.</description>
		<content:encoded><![CDATA[<p>I actually got some info here, See here  How to increase wordpress memory limit, I tried number #3, very helpful. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-319</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 14 Apr 2010 16:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-319</guid>
		<description>Hello kobizeit,

I&#039;m glad to hear it helped your wordpress enjoying more memory.

Andy</description>
		<content:encoded><![CDATA[<p>Hello kobizeit,</p>
<p>I&#8217;m glad to hear it helped your wordpress enjoying more memory.</p>
<p>Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kobizeit</title>
		<link>http://hecode.com/how-to-increase-php-wordpress-memory-limit/comment-page-1/#comment-318</link>
		<dc:creator>kobizeit</dc:creator>
		<pubDate>Wed, 14 Apr 2010 15:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://hecode.com/?p=213#comment-318</guid>
		<description>Thanks, your solution 3 worked for me.</description>
		<content:encoded><![CDATA[<p>Thanks, your solution 3 worked for me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

