PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 71 bytes) in /somepage
If you get this PHP error on any of your pages there is a simple fix. Just increase the PHP memory size in /etc/php.ini
By default the value will look like the below line
memory_limit = 128M
Change it to something like this or above
memory_limit = 512M
No comments yet