Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

cant get past home page


rsilva140

Recommended Posts

Posted

Hi, I am fairly new to OsCommerce and for this specific shop I had to install it manually without the oscommerce installer but now I cant get past the home page, when I click on a product on the side bar..it cant find the page...it actually cant find the page on anything...can anyone help??

 

the website is... www.rlprinting.net

 

Thank You!

Posted

Didn't someone have a similar problem with dir_ws_admin just yesterday? Maybe do a search on that thread to see where to look, and what the solution was (if any was found). I'm wondering if there's some common thread here with these problems...

  • 2 weeks later...
Posted

<?php

define('HTTP_SERVER', 'http://www.rlprinting.net');

define('HTTP_CATALOG_SERVER', 'http://www.rlprinting.net');

define('HTTPS_CATALOG_SERVER', 'http://www.rlprinting.net');

define('ENABLE_SSL_CATALOG', false);

define('DIR_FS_DOCUMENT_ROOT', '/home/content/77/5179177/html/catalog/');

define('DIR_WS_ADMIN', '/catalog/admin/');

define('DIR_FS_ADMIN', '/home/content/77/5179177/html/catalog/admin/');

define('DIR_WS_CATALOG', '/catalog/');

define('DIR_FS_CATALOG', '/home/content/77/5179177/html/catalog/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');

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', DIR_WS_CATALOG . 'includes/languages/');

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_BACKUP', DIR_FS_ADMIN . 'backups/');

 

define('DB_SERVER', '');

define('DB_SERVER_USERNAME', '');

define('DB_SERVER_PASSWORD', '');

define('DB_DATABASE', '');

define('USE_PCONNECT', 'false');

define('STORE_SESSIONS', 'mysql');

?>

Posted

It seems your shop is using a define DIR_WS_HTTP_CATALOG which is not defined anywhere. I would suggest adding that to your configure.php:

 

define('DIR_WS_HTTP_CATALOG', '/catalog/');

 

There is also a problem with a not existing define HTTPS_SERVER (configure.php uses HTTPS_CATALOG_SERVER instead).

 

define('HTTPS_SERVER', 'http://www.rlprinting.net');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...