Here is my php.ini and I have restarted the httpd process several times while messing around with this, however no errors are being displayed, only a blank page.
error_reporting = E_ALL & E_STRICT
display_errors = On
Here is my php.ini and I have restarted the httpd process several times while messing around with this, however no errors are being displayed, only a blank page.
error_reporting = E_ALL & E_STRICT
display_errors = On
In dev, we use this:
error_reporting = E_ALL | E_STRICT
& is used to remove ~ certain types of error like E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)display_startup_errors = On to spot some config issues.