Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

changing the store directory


mykaren88

Recommended Posts

What you want to do is create a folder called store. Then copy all your files to that directory. After that edit the 2 configure.php (admin/includes folder and one in the includes folder) values changing the following:

 

  define('DIR_WS_HTTP_CATALOG', '/store/');
 define('DIR_WS_HTTPS_CATALOG', '/store/');
 define('DIR_FS_CATALOG', '/***/public_html/store/');

 

and in the admin/includes/configure.php file

 

  define('DIR_FS_DOCUMENT_ROOT', '/***/public_html/store/'); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/store/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/***/public_html/store/admin/'); // absolute
 define('DIR_WS_CATALOG', '/store/'); // absolute path required
 define('DIR_FS_CATALOG', '/***/public_html/store/'); // absolute path required

Andrew Yuen

osCommerce, Community Team

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...