Thread: Database help
View Single Post
  #18  
Old 01-01-2009, 02:52 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 10,929
BMR777 is on a distinguished road
Default RE: Database help

The errors could be a result of a change your host made to php.ini.

Tell your host to turn off PHP notices in your site's PHP.INI file. The correct setting for your account should be:

Code:
// Report all errors except E_NOTICE
// This is the default value set in php.ini
error_reporting(E_ALL ^ E_NOTICE);
I bet your host is using:

Code:
// Report all PHP errors
error_reporting(E_ALL);
http://us.php.net/error_reporting
Reply With Quote