How can I turn off PHP error output?

To disable error output in your script, use:

error_reporting (0);

Remember that you need to call this function before starting any PHP directives.

You can also use this code in the .htaccess file to disable error output:

php_flag display_errors off

  • 95 Users Found This Useful
Was this answer helpful?

Related Articles

Help, the cron is not working

If you run a job through PHP, for example php -f /home/username/public_html/file.php and you...

Help, Adsense is not showing

If your ad is not showing, please make sure you paste the code between the "body" tags. If you...

Firefox error: The page isn't redirecting properly

When a page redirects you to an infinite redirect, Firefox will display the error: The page isn't...

My Wordpress has been hacked, how do I reset my admin password?

If your Wordpress password has been changed to an unknown value, you can always change it by...

How do I disable magic quotes? (Using .htaccess)

You need to add this line to your htaccess file in the directory where you want to disable magic...