I am having a big problem. I'm hosting some sites that run off of a template system. The templates rely heavily on sessions. Here's how they work:
User points browser to: www.thedomain.com
which is pointed (w/ apache) to an index.php3 that is essentially a frame forwarder:
<frameset rows="0,*">
<frame name="small" src="" ...>
<frame name="forwarder src="http://www.someotherdomain.com/sites/0001" ...>
</frameset>
- Now this method works fine in IE 5 and Netscape (4.77 for sure - have not tried 6). However in the new IE 6 - when I use this method I get a bunch of errors - since it seems my sessions are not being carried over. I assume the reason for this is that the server_name is different for the session and for the url.
Any suggestions would be more than welcome. Thanks.