Hi,

Originally Posted by
fusionsp
ok maybe I shoud be changing the zencart config file? I changed it to what you said and now i have an error. Where is the config file? Where do i set the DIR_WS_ADMIN and DIR_FS_ADMIN at?
Ok. Put QBI back the way it was before you changed it.
Go to:
/store/admin/includes/configure.php
Normally it should be as follows (replace mydomain with your own domain):
- Adam
Code:
define('HTTP_SERVER', 'http://www.mydomain.com');
define('HTTPS_SERVER', 'https://www.mydomain.com');
define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com');
define('HTTPS_CATALOG_SERVER', 'https://www.mydomain.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', '/storezen/admin/');
define('DIR_WS_CATALOG', '/storezen/');
define('DIR_WS_HTTPS_ADMIN', '/storezen/admin/');
define('DIR_WS_HTTPS_CATALOG', '/storezen/');
Bookmarks