Advertisement
Echo89

PHP Error Reporting Example

Oct 25th, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. # Make sure that error reporting is set to this when in development
  2. # This way you see every error so you can fix them
  3. error_reporting=E^ALL
  4.  
  5. # But you need to be able to see the errors onscreen in the first place...
  6. display_errors=On
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement