I have a problem with a website constructed with zen cart. The site is www.babyselections.com and the I can access specifically my admin area...I have checked several times the configure.php files and are configured correct. I also checked the errors log file and it does shows these php warnings..
[07-Jun-2012 10:42:50 UTC] PHP Warning: include(tracker.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /var/www/vhosts/babyselections.com/httpdocs/index.php on line 112
[07-Jun-2012 10:42:50 UTC] PHP Warning: include(tracker.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /var/www/vhosts/babyselections.com/httpdocs/index.php on line 112
[07-Jun-2012 10:42:50 UTC] PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening 'tracker.php' for inclusion (include_path='.:') in /var/www/vhosts/babyselections.com/httpdocs/index.php on line 112
Of course as you can see I cannot determine where the problem is in the admin section...The errors does not show anything about the back end...
the admin area is: http://www.babyselections.com/babyselectionadmin2012/ and the config file is this
define('HTTP_SERVER', 'http://www.babyselections.com');
define('HTTPS_SERVER', 'https://www.babyselections.com');
define('HTTP_CATALOG_SERVER', 'http://www.babyselections.com');
define('HTTPS_CATALOG_SERVER', 'https://www.babyselections.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_ADMIN', '/babyselectionadmin2012/');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_ADMIN', '/babyselectionadmin2012/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_ADMIN', '/var/www/vhosts/babyselections.com/httpdocs/babyselectionadmin2012/');
define('DIR_FS_CATALOG', '/var/www/vhosts/babyselections.com/httpdocs/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
// define our database connection
define('DB_TYPE', 'mysql');
define('DB_PREFIX', '');
define('DB_SERVER', 'xxxxxxxx');
define('DB_SERVER_USERNAME', 'xxxxx');
define('DB_SERVER_PASSWORD', 'xxxxxx');
define('DB_DATABASE', 'xxxxxx');
define('USE_PCONNECT', 'false');
define('STORE_SESSIONS', 'db');
// for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage
// The next 2 "defines" are for SQL cache support.
// For SQL_CACHE_METHOD, you can select from: none, database, or file
// If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
// or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
// ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
define('SQL_CACHE_METHOD', 'none');
define('DIR_FS_SQL_CACHE', '/var/www/vhosts/babyselections.com/httpdocs/cache');
// EOF
Could anyone please tell me what could be possibly went wrong....We changed servers that the only thing we did. First both the front end and the admin page(back end) was showing a blank page..However I manged to solve the front end due to a fatal PHP error that was showing on the errors log file. Unfortunately I wasn't able to solve the back end...and now I really need your help.


Reply With Quote

