Guest User

Untitled

a guest
Aug 15th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Php Error Reporting even when display error is on
  2. ; display_errors
  3. ; Default Value: On
  4. ; Development Value: On
  5. ; Production Value: On
  6.  
  7. ; display_startup_errors
  8. ; Default Value: Off
  9. ; Development Value: On
  10. ; Production Value: Off
  11.  
  12. ; error_reporting
  13. ; Default Value: E_ALL
  14. ; Development Value: E_ALL
  15. ; Production Value: E_ALL
  16.  
  17. display_errors = On
  18. display_startup_errors = On
  19. error_reporting = E_ALL
  20.  
  21. error_reporting(E_ALL);
  22. ini_set("display_errors", 1);
Add Comment
Please, Sign In to add comment