Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Php.ini can't turn off many warning in the log

Status
Not open for further replies.

cheer8923

Programmer
Aug 7, 2006
230
0
0
US
Fedora
Apache 2.2.22
Php 5.4.0
horde 3.3.13 with imp

The error_log has tons of PHP Strict Standards, Deprecated and alike.

Php.ini has the following line but it appears to have no effect.

error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

How can turn them off?

Thanks
 
To answer my own question, horde overwrite it in its conf.php

$conf['debug_level'] = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top