Guest Posted September 15, 2005 Posted September 15, 2005 Is there an easy way to change all navigation links within the /admin section to https? I can login to admin using https but all links revert back to http.
Sierrab Posted September 15, 2005 Posted September 15, 2005 Is there an easy way to change all navigation links within the /admin section to https?I can login to admin using https but all links revert back to http. <{POST_SNAPBACK}> Edit your admin/includes/configure.php // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'https://secure.*****.co.uk/*****/catalog/'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www*******.com/catalog/'); define('HTTPS_CATALOG_SERVER', 'https://secure.*****t.co.uk/~*****/catalog/'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/usr/users/*****/public_html/catalog/'); // where the pages are located on the server is how my file looks Steve
Guest Posted September 15, 2005 Posted September 15, 2005 Edit your admin/includes/configure.php// Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'https://secure.*****.co.uk/*****/catalog/'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www*******.com/catalog/'); define('HTTPS_CATALOG_SERVER', 'https://secure.*****t.co.uk/~*****/catalog/'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/usr/users/*****/public_html/catalog/'); // where the pages are located on the server is how my file looks Steve <{POST_SNAPBACK}> Thanks Steve I will give that a try tomorrow, looks easy enough (touch wood)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.