Even though error_reporting is set to 0, database errors are still being printed to screen. Is there a setting somewhere I can change to disable database error reporting? This i
Found the answer:
In config/database.php:
config/database.php:
// ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
so:
$db['default']['db_debug'] = FALSE;
... should disable.