Re: SSL Warning - Fails To Load Stylesheet
dont know if this will work for yourself or not, but i had a similar problem with certain hosting companies..
Code:
not 100% sure, but look in
includes/templates/classic/common/html_header.php
in there...IIRC
Line 39...
will be
"<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />"
but change it to
"<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTPS_SERVER . DIR_WS_CATALOG ); ?>" />"
this should force the catalog to load stuff via HTTPS, but show the URL as HTTP till HTTPS is needed(e.g checkout etc)
this has worked for myself and a few other people i know
its a simple edit, and if it dont work, just change it back
i may not know how yet, but i soon will....i hope :)