I'm using 1.3.8a and have a problem with external link coding but don't want to post my url because in the past it has overloaded the server.
I've read Dr Byte's article about shared ssl and also about IE warnings of secure and non-secure items but I either don't understand how to do this or hope someone knows of a work around.
I guess my question is this: IS IT POSSIBLE TO CHANGE THE URL IN THE CONFIG FILE TO REFLECT THAT THE STORE IS IN A FOLDER WITHIN THE SITE AND BE ABLE TO GET THE SSL PAGES TO RESPECT THE RELATIVE URLS IN THE HEADERS DROP DOWN MENU TO PAGES OUTSIDE OF THAT FOLDER...and how?
As the code shows below the url to our store is in a subfolder. My header and drop down menu at the shop works beautifully...except the hardcoded urls seem to be triggering the dreaded ie browser warnig that there are secure and non secure items. When i use relative links they take on the https and trigger the ie warning and page doesn't load properly. Might a solution be to re-write the path to the store in the configure file? Any help appreciated.
Code:// Define the webserver and path parameters // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com define('HTTP_SERVER', 'http://mysite.com'); define('HTTPS_SERVER', 'https://www.ssl.com/username'); // Use secure webserver for checkout procedure? define('ENABLE_SSL', 'true'); // 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_CATALOG', '/Shop/'); define('DIR_WS_HTTPS_CATALOG', '/Shop/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_INCLUDES', 'includes/'); 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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/'); define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/'); define('DIR_WS_PHPBB', '/'); // * 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_CATALOG', 'D:/Inetpub/username/Shop/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/'); define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS); define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');




