This is the page that is showing as having the error listed above
<?php
/* ************************************************** *******************
*
* This script is owned and copyrighted by phpMyDirectory.com. Your
* license confers no title or ownership in the Software and is
* not a sale of any rights to the Software.
*
************************************************** *********************/
/* License key - Is obtained from the user license area */
$license='******';
/* Installation Directory Name */
$install_folder_name = '/directory/PMD-11-04-00';
/* Administrator area folder name. Default: cp */
$ADMIN_DIRECTORY = 'cp';
/************************************************** *****************
* Root Path (absolute path to script) - NO TRAILING SLASH
* This is the full server path to the phpMyDirectory install directory.
* Example: /home/username/public_html/phpmydirectory
************************************************** *****************/
// AUTOMATIC Documents path setting. DO NOT CHANGE unless errors experienced.
// If errors are recevied use manual setting below.
$PMDROOT = $_SERVER['DOCUMENT_ROOT'] . '/' . "$install_folder_name";
// MANUAL Path Setting
// Comment out the $PMDROOT line above. Then un-comment our the line below.
// $PMDROOT = "/home/username/public_html/$install_folder_name";
/************************************************** *****************
* URL Path - NO TRAILING SLASH
* This is the full URL web path to phpMyDirectory
* Example:
http://www.domain.com
************************************************** *****************/
$BASE_URL='http://www.******.com';
/************************************************** *****************
* Database Settings
************************************************** ******************/
$DB['HOST'] = '******';
$DB['USER'] = '******';
$DB['PASS'] = '******';
$DB['NAME'] = '******';
/* Table names - only change if you know what you are doing */
$DB['TABLE_PREFIX'] = 'pmd';
$db_users = 'pmd_users';
$db_listings = 'pmd_listings';
$db_offers = 'pmd_offers';
$db_images = 'pmd_images';
$db_documents = 'pmd_documents';
$db_rating = 'pmd_rating';
$db_banners = 'pmd_banners';
$db_banner_types = 'pmd_banner_types';
$db_reviews = 'pmd_reviews';
$db_category = 'pmd_category';
$db_locations = 'pmd_locations';
$db_listcat = 'pmd_listing2category';
$db_plugins = 'pmd_plugins';
$db_admin = 'pmd_admin';
$db_log = 'pmd_log';
$db_config_main = 'pmd_config_main';
$db_config_memberships = 'pmd_config_memberships';
$db_config_variable_options = 'pmd_config_variable_options';
$db_email_templates = 'pmd_email_templates';
$db_admin_permissions = 'pmd_admin_permissions';
$db_invoices = 'pmd_invoices';
$db_modules = 'pmd_modules';
$db_module_code = 'pmd_module_code';
$db_banned = 'pmd_banned';
$db_fields = 'pmd_fields';
$db_processors = 'pmd_processors';
$db_cron = 'pmd_cron';
$db_sessions = 'pmd_sessions';
$db_cron_log = 'pmd_cron_log';
require ($PMDROOT . '/defaults_setup.php');
?>