Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Unable to view main section


press711

Recommended Posts

Posted

:?: Hi,

 

I just downloaded the latest release of the code. I am able to view the side menu, but when i click on any menu only the sub menu appears the contents of the page(e.g. product details, category details etc.. do not appear ). Just the menu header and footer.

 

Please help.

 

The system is running over IIS on my localhost at the moment.

 

Thanks,

-K

Posted

Here are my parameters

 

define('HTTP_SERVER', 'http://localhost/NiceStuff/OSCommerce');

define('HTTPS_SERVER', 'http://localhost/NiceStuff/OSCommerce');

define('ENABLE_SSL', 0); // ssl server enable(1)/disable(0)

define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT . '/');

define('DIR_FS_LOGS', '/usr/local/apache/logs/');

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

define('DIR_WS_IMAGES', '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_PAYMENT_MODULES', DIR_WS_MODULES . 'payment/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

The images nad rest of unclude files seem to be working.

 

Please Help. Thanks for your time.

 

Best Regards,

-K

Posted

The current structure is :

Catalog : C:InetpubwwwrootNiceStuffOSCommercecatalog

and

Admin : C:InetpubwwwrootNiceStuffOSCommerceadmin

Posted

The current structure is :

Catalog : C:InetpubwwwrootNiceStuffOSCommercecatalog

and

Admin : C:InetpubwwwrootNiceStuffOSCommerceadmin

Posted

Instead of:

define('HTTP_SERVER', 'http://localhost/NiceStuff/OSCommerce'); 

define('HTTPS_SERVER', 'http://localhost/NiceStuff/OSCommerce'); 

define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT . '/'); 

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

Try:

define('HTTP_SERVER', 'http://localhost); 

define('HTTPS_SERVER', 'http://localhost'); 

define('DIR_FS_DOCUMENT_ROOT', 'c:inetpubwwwroot'); 

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

 

You may want to set define('DIR_FS_LOGS', '/usr/local/apache/logs/'); to a more appropriate path since you're on a windows box.

Posted

Almost forgot...you'll have to do something similar for the configure.php for the admin directory structure.

 

Good luck.

 

-Jim

Archived

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

×
×
  • Create New...