Search for your php.ini, e.g with the connad locate: locate.php.ini Its the file located under /etc/.... Open the file with an editor and and set: error_reporting = E_ALL To see all errors and notices or a more usable setting is: error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT which shows only errors that stop your script. Then restart your apache webserver.