[PHP] sessions broken when redirected?

2001-03-29 Thread elists
I've searched the archives and relevant web sites to no avail, so as a last resort I'm turning to this knowledgeable group of people. I'm working to set up a user authentication system using native PHP 4 sessions on a box running Apache, mod_perl, mod_ssl, PHP (the lastest), etc. PHP was

Re: [PHP] sessions broken when redirected?

2001-03-29 Thread Jon Rosenberg
encoding, passing in URL and decoding on the other side. jon - Original Message - From: [EMAIL PROTECTED] To: "Php-General@Lists. Php. Net" [EMAIL PROTECTED] Sent: Thursday, March 29, 2001 2:57 PM Subject: [PHP] sessions broken when redirected? I've searched the archives and re

Re: [PHP] sessions broken when redirected?

2001-03-29 Thread KPortsmout
Hi Andrew, I`m not sure if switching from http to https will count as a *new* domain, but here is a link to some information which may solve your problem. http://phpbuilder.com/columns/chriskings20001128.php3 HTH Ade -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] sessions broken when redirected?

2001-03-29 Thread Derek Sivers
I had this same problem and it constantly broke our whole site. So I tried a different approach and this has been working great: Instead of ? header ("Location: sometoherpage.php"); ? Consider: ? include "someotherpage.php"; ? It works flawlessly, always, and maintains your session. Because