Turn on error reporting for your website

Turn on error reporting for your website

you can place this in your page coding

ini_set('display_errors',1);
error_reporting(E_ALL);

or this in a custom php.ini file in the same folder as the files or program

error_reporting = E_ALL

If php.ini file does not work on your server try it in .htaccess file in this context,

php_flag display_errors 1
php_value error_reporting 8191
  • 0 Users Found This Useful
Was this answer helpful?