No I've checked it, it does not work.
Fatal error: require_once() [
function.require]: Failed opening required 'DB.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in
/home/user/public_html/mb/functions/system/init.php on line
81
Code:
/* load Pear. */
require_once ('DB.php');
if (!class_exists(DB)) {
die("<b>Error:</b> Unable to load PEAR-DB! It is a requirement. Please add this package, and try again.");
}
Also when I echo out get_include_path as just a test to get that information I obtain this:
.:/usr/lib/php:/usr/local/lib/php
So if this is not the correct path to pear if it is infact installed and functioning, i'll need the information to correctly set my include path so that I can require DB.php within it.
Thank you for any help in getting this up and running.