I have problems with my WP because some plugins not have enoght memory (like lazyest gallery). The same problem I have in the dashboard. The messege is "Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /home3/iaafadu/public_html/wp-includes/class-simplepie.php on line 3735".
So I make this to change my memory from 32M to 64M:
I change my wp-config adding this line
define('WP_MEMORY_LIMIT', '64M');
Then I change my wp-settings.php in this line
if ( !defined('WP_MEMORY_LIMIT') )
define('WP_MEMORY_LIMIT', '64M');
Then I put in muy public_html a txt file called php.ini with this line
memory_limit = 64M
BUT NOTHING CHANGES!!! My memory still have 33554432 bytes (32M)
I don´t know what´s wrong... I don´t if I have to change something more...
Anybody can help me? (and sorry for my english...)