Working on a host for a client. Site is hosted by DreamHost. The index.php file is fully functional, however any pages linked to from the front page appear as blank. I couldn’t find anything in the logs that were available, so some searching turned up the following code:
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
I placed that inside the top of the php code on all applicable pages, but alas no errors are showing up, and the pages are still completely blank. I’m more of a security guy than a developer, so could anyone point me in the right direction?
EDIT: Also the servers php.ini file has display_errors = 1 as well.
Check if you have @-operator, die or exit in your code. If yes, output some string to know where your script ends or use the error_log-function:
Include the following error handler in your code an try it again: