
Originally Posted by
kobra
Have a look at your admin/includes/configure.php file for ssl settings
Thank you! I didn't know about this.
I now read that section's comment:
PHP Code:
/* If you desire your *entire* admin to be SSL-protected,
make sure you use a "https:" URL for all 4 of \
the following:
*/
define('HTTP_SERVER', 'http://mydomain.com');
define('HTTPS_SERVER', 'https://mydomain.com');
define('HTTP_CATALOG_SERVER', 'http://mydomain.com');
define('HTTPS_CATALOG_SERVER', 'https://mydomain.com');
Which raises two new questions:
- If I don't make my *entire* admin SSL-protected, does this mean that my password is transmitted over the Internet in CLEAR TEXT every time I login to my admin account?
- If my SSL certificate is for https://secure.mydomain.com do I have to change the 2nd and 4th lines accordingly?
Thanks,
Daniel