Turn PHP display error off: Solved
Solution:
you will find the php configuration file probably here:
+ .../php.ini
+ Using an editor like Notepad, edit the php.ini file, find a line like this:
display_errors = On
+ Change to
display_errors = Off
and save
If you don't have access to php.ini
Add error_reporting(0); in your PHP script
0 comments:
Post a Comment