Thanks for help. I re-install the entire store and have been ok and making minor modifications and suddenly, I'm getting this message trying to get to the storefront from the admin page:
Fatal error: Call to a member function isLogged() on a non-object in /home/jmclean/public_html/admin/controller/common/header.php on line 73
Here's the config file from the public_html folder:
<?php
// DIR
define('DIR_APPLICATION', '/home/xxx/public_html/admin/');
define('DIR_SYSTEM', '/home/xxx/public_html/system/');
define('DIR_DATABASE', '/home/xxx/public_html/system/database/');
define('DIR_LANGUAGE', '/home/xxx/public_html/admin/language/');
define('DIR_TEMPLATE', '/home/xxx/public_html/admin/view/template/');
define('DIR_CONFIG', '/home/xxx/public_html/system/config/');
define('DIR_IMAGE', '/home/xxx/public_html/image/');
define('DIR_CACHE', '/home/xxx/public_html/system/cache/');
define('DIR_DOWNLOAD', '/home/xxx/public_html/download/');
define('DIR_LOGS', '/home/xxx/public_html/system/logs/');
define('DIR_CATALOG', '/home/xxx/public_html/catalog/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'jmclean_ocar230');
define('DB_PASSWORD', 'fSsPaf117q');
define('DB_DATABASE', 'jmclean_ocar230');
define('DB_PREFIX', 'oc_');
?>
And here's the config file from the ADMIN directory:
<?php
// HTTP
define('HTTP_SERVER', '
http://xxx.com/admin/');
define('HTTP_CATALOG', '
http://xxx.com/');
define('HTTP_IMAGE', '
http://xxx.com/image/');
// HTTPS
define('HTTPS_SERVER', '
http://xxx.com/admin/');
define('HTTPS_IMAGE', '
http://xxx.com/image/');
// DIR
define('DIR_APPLICATION', '/home/xxx/public_html/admin/');
define('DIR_SYSTEM', '/home/xxx/public_html/system/');
define('DIR_DATABASE', '/home/xxx/public_html/system/database/');
define('DIR_LANGUAGE', '/home/xxx/public_html/admin/language/');
define('DIR_TEMPLATE', '/home/xxx/public_html/admin/view/template/');
define('DIR_CONFIG', '/home/xxx/public_html/system/config/');
define('DIR_IMAGE', '/home/xxx/public_html/image/');
define('DIR_CACHE', '/home/xxx/public_html/system/cache/');
define('DIR_DOWNLOAD', '/home/xxx/public_html/download/');
define('DIR_LOGS', '/home/xxx/public_html/system/logs/');
define('DIR_CATALOG', '/home/xxx/public_html/catalog/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'xxxxx');
define('DB_PASSWORD', 'xxxxxx');
define('DB_DATABASE', 'xxxxx');
define('DB_PREFIX', 'oc_');
?>
Have a feeling one of these is wrong.
Also, when I did the re-install, they added a clean DB called 'xxxxxx' but I continue to access the old DB. This might also be part of the problem, no?
HELP. Remember, I'm a newbie, so go easy on me.... :-)
Thanks.