Hi
We have recently installed an SSL certificate on our server as https://secure.domain.com. When a user logs into their members area they are in the domain https://secure.domain.com , the problem is when the are navigating other content on the site we don't want them to be using the SSL certificate and slowwing down the server.
So if the user is not in the members area they are redirected to http://www.domain.com . This is where the problem occurs as the session isn't being passed and it appears to the user that they have been logged out.
I have read that I have to pass the session manually is this the only way? The code is exactly the same on each page.
Thanks in advance
Michael
I have tried using this:
session_set_cookie_params (0, '/', 'domain.com', 0); session_start();
to remove the sub domain but that is not working.
Any suggestions would be much appreciated.