When i click the Log In link as a customer i get prompted with the security prompts stating:
"This page contains both secure and nonsecure items.
Do you want to display the nonsecure items?"
This happens on all my "secure" pages, such as My Account and Checkout.
Solution:
That indicates that somewhere in your templates you have hard-coded actual URL links to http://xxxxxxxxx instead of using relative paths to objects.
This can also happen if you have added banners with http:// links and not told them to skip display on SSL pages.
This can also happen if you have added click-tracking tools to your site via javascript, which link to http:// pages somewhere.
You can identify most culprits by searching your browser's View Source for:
src="http://
Then work through your template files and remove those hard-coded links. If they are caused by click-tracking scripts somewhere, try converting them to https:// links or contact the vendor for assistance with alternate scripts.
Basically, *never* hard-code a full HTTP:// URL into any page on your site unless you know that doing so will not produce this sort of error. This is especially true for <IMG SRC=...> and <SCRIPT SRC=...> tags.

