Wordpress 2.8 Memory Usage
With the release of wordpress 2.8 some people are experiencing out of memory php errors along the lines of:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 228968 bytes)
You may also be seeing pages fail to load fully (for example the wordpress admin dashboard) if php error messages are hidden. I’ve already had one case where we thought certain plugins were to blame but in fact it was just out of memory. A possible fix (which worked in the previously mentioned case) is to add:
@ini_set('memory_limit','64M');
to your wp-config file. Has anyone else encoutered this error?









