dreamingdigital Posted September 24, 2005 Posted September 24, 2005 How do I make the admin/ section always SSL protected with https:// I login at https:// but when I click on the links they go back to http:// I have modified the admin/includes/configure.php file to say https:// but that didn't do a thing. define('HTTP_SERVER', 'http://scrapbookcottage1.sslpowered.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://scrapbookcottage1.sslpowered.com'); define('HTTPS_CATALOG_SERVER', 'https://scrapbookcottage1.sslpowered.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/mnt/web_m/d13/s33/b025a5c2/www/store/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/admin/'); // absolute path required define('DIR_FS_ADMIN', '/mnt/web_m/d13/s33/b025a5c2/www/store/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/store/'); // absolute path required define('DIR_FS_CATALOG', '/mnt/web_m/d13/s33/b025a5c2/www/store/'); // absolute path required 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/'); What other files do I need to modify?! CP :-"
dreamingdigital Posted September 24, 2005 Author Posted September 24, 2005 Found it. Guess I just needed more sleep. Just made all the http:// parts https:// no matter what the comment said it was for. :P CP
Recommended Posts
Archived
This topic is now archived and is closed to further replies.