Hi Everyone,
I have been struggling with this for the past two days and I need help. I want the Admin section to have SSL protection and made the following change to admin/includes/configure.php:
I am in SSL mode but I get the following error message on the top of the screen when viewing the catalog pages:Code:define('HTTP_SERVER', 'https://secure24.vosn.net/~aztecrug'); // eg, http://localhost or - https://localhost should not be NULL for productive servers
Error: Catalog images directory does not exist: /home/venture/public_html/catalog/images/
Then I made the following change:
This got rid of the error, but I still can't see the images when viewing the products. When I view the properties of the broken image, here is where it is trying to pull the image from:Code:define 'DIR_FS_DOCUMENT_ROOT', '/home/aztecrug/public_html'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
https://secure24.vosn.net/catalog/images/98-85.jpg
Here is most of the code from admin/includes/configure.php. Please advise on what I need to do to have the images appear as they did before I made the change to view through the secure server:
Thank you in advance,Code:// define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'https://secure24.vosn.net/~aztecrug'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://aztecrugs.com'); define('HTTPS_CATALOG_SERVER', 'https://secure24.vosn.net/~aztecrug'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/aztecrug/public_html'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_WS_ADMIN', '/admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', '/catalog/'); define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_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/');
Mark





LinkBack URL
About LinkBacks






Bookmarks