40. If you have Comodo SSL and want one of these:
[img]
http://www.trustlogo.com/images/cot.gif[/img] [img]
http://www.trustlogo.com/images/tl_transp.gif[/img]
the site:
http://www.trustlogo.com/trustlogo_choice.html
says
http://www.trustlogo.com/ssl-certificate-support/index2.html: Quote
Copy/Paste the following piece of code and insert EXACTLY before your </HEAD> tag.
AND
Copy/Paste the following piece of code and insert EXACTLY before your </BODY> tag.
I wanted the red corner logo. In lieu of adding a head and body tag to a php page, I just put both snippets of code on all the SSL pages at the end after "?>" like so:
?>
<script language="javascript" type="text/javascript">
//<![CDATA[
var cot_loc0=(window.location.protocol == "https:")? "https://secure.comodo.net/trustlogo/javascript/cot.js" :
"http://www.trustlogo.com/trustlogo/javascript/cot.js";
document.writeln('<scr' 'ipt language="Javascript" src="' cot_loc0 '" type="text\/javascript">' '<\/scr' 'ipt>');
//]]>
</script>
<a href="http://www.instantssl.com" id="comodoTL">Comodo SSL Certificate</a>
<script language="Javascript" type="text/javascript">
COT("http://mysite.com/catalog/images/home/cot.gif", "SC2", "none");
</script>
I added the code to the end of all the SSL pages: catalog/ all "account_", "checkout_", "address_", and "create_" files...also login, logoff, and password_forgotten
There is probably a faster way to get it it show on all SSL pages, but what I did will suffice.
41. I made my "privacy" page SSL as well, to show customers, as an example, what they will see on SSL pages....the http"s" and the logo etc.
To create a SSL page (in my case the privacy page), you need only modify the link to that page. The link was in the info box for me: catalog/includes/modules/boxes/bm_information
this:
' <a href="' . tep_href_link(FILENAME_PRIVACY) . '">' .
MODULE_BOXES_INFORMATION_BOX_PRIVACY . '</a><br />' .
was changed to this:
' <a href="' . tep_href_link(FILENAME_PRIVACY, "", "SSL") . '">' .
MODULE_BOXES_INFORMATION_BOX_PRIVACY . '</a><br />' .
simple
I wouldn't recommend making your entire site SSL, it is not necessary. 2.3.1 already has all the appropriate pages set-up for when you do get a certificate.