I know there's loads of question re: PHP not displaying errors but I can't seem to find anything that fits my issue. I have a page that I know overloads the memory and in the logs I get the following message:
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 79 bytes)
However no error is displayed on the screen - it is just blank.
In my php.ini I have the following settings:
error_reporting = E_ALL
display_errors = On
I have also tried adding the following to the top of the script in question
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Any help or pointers much appreciated.
NB. Other errors do display correctly - it's just this memory error that appears to produce a blank screen.