-2

Im working on product server. When an exception takes place, nothing is seen but a white screen. I expected that it would print where the error was.

John Smith
  • 6,129
  • 12
  • 68
  • 123

1 Answers1

-1

Did you enable error reporting? By trying:

ini_set('error_reporting', E_ALL);

error_reporting(E_ALL); 
Logan Wayne
  • 6,001
  • 16
  • 31
  • 49