I can not find why my pear directory is failing. DB.php which is in the pear directory does not open.
I have pasted code to show the path of the server to the secondary website(see the red below for the code and the output). The path that I can see is: /home1/nuclearp/public_html/libs/pear/DB.php
Thanks to anyone who can see why I am getting my error.
This is the index.php
//this script reads the path and is listed in the output below:
<?php
$path = getcwd();
echo "This Is Your Absolute Path: ";
echo $path;
?>
<?php
require_once("includes/ru_config.php");
require_once("includes/ru_connection.php");
require_once("includes/ru_data.php");
require_once("includes/ru_utils.php");
require_once("libs/ru_multi_smarty.php");
$smarty->display("index.tpl");
?>This is ru_config.php
<?php
//require_once(dirname(__FILE__) . 'ru_4pear.php');
ini_set("include_path", ini_get("include_path") . ":/home1/nuclearp/public_html/libs/pear/");
require_once('DB.php'); This is the output from www.atc-roofing.com (the index.php result)