is it possible to turn off warnings for php?
warnings for php?
Collapse
X
-
Be a good idea to figure out what causing the warnings but....
You can add to the offending script the following:
orPHP Code:ini_set('display_errors', '0' );
PHP Code:ini_set('error_reporting', '0' );
You could place them in an php.ini text file like this:
orCode:display_errors = 0
You could do what Jonathan suggested too.Code:error_reporting = 0
"Whatcha mean I shouldn't be rude to my clients?! If you want polite then there will be a substantial fee increase." - BuddhaComment
Comment