Link to home
Start Free TrialLog in
Avatar of Starquest321
Starquest321

asked on

CENT OS php.ini

For some reason on my application I always see the SQL queries and any error reports that I do not need. How can I turn it off? It's somewhere here I think:

define("EW_DEBUG_ENABLED", FALSE, TRUE); // TRUE to debug
if (EW_DEBUG_ENABLED) {
      @ini_set("display_errors", "1"); // Display errors
      error_reporting(E_ALL ^ E_NOTICE); // Report all errors except E_NOTICE
}

I need to turn off this error stuff....
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial