Forum Moderators: coopster
My SSL certificate works fine. The problem is that, when the browser goes to the absolute address, it starts a new session and thinks the user's cart is empty.
Is the absolute link the problem? If so, is there some other way, such as header info, to cause a page to load up with the SSL?
You can use absolute links and sessions, so long as the session stays in the same domain. So its not the link, its the change of domain that is the problem.
[edited by: Meno at 6:56 pm (utc) on Feb. 11, 2008]
The reverse is not necessarily true (I haven't tested, I don't know the default setting).
You can change the default behavior by modifying these PHP options:
session.cookie_path
session.cookie_domain
session.cookie_secure
Do you know what function I could use to force the 'www' domain prefix?
RewriteEngine on
RewriteRule ^(.*)$ http://www.example.com$1 [R=301,L]
I don't know if this is what caused it to work. I have no idea if this is had anything to do with it.
[edited by: Achernar at 11:35 am (utc) on Feb. 12, 2008]