in

Warning: invalid error callback in C:\wamp\www\banners\libs\PEAR\PEAR.php on line 362

What does this error actually mean?  How do I fix it?  It is a common error with pear?

Solution: Warning: invalid error callback in C:\wamp\www\banners\libs\PEAR\PEAR.php on line 362

Change this line:

$dbh-> setErrorHandling(PEAR_ERROR_CALLBACK, "db_error_handler");

to this line:

PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, "db_error_handler");


which should be on line 362 which is the problem. Hope this helps.
Note that the variables may not be all exactly the same.