Re: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread Richard Davey
Hello Puiu, Tuesday, March 2, 2004, 11:13:07 AM, you wrote: PH> The site is working just fine on the development server, but when PH> uploading on release server it keeps losing session data and the PH> users are logged out of their account in a Some things to try/think about: 1. Are your sessi

RE: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread electroteque
all i can think of here, you could be calling start_session twice in the same page ? also init set the session timeout to an hour or so -Original Message- From: Puiu Hrenciuc [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 02, 2004 10:13 PM To: [EMAIL PROTECTED] Subject: [PHP] Sessions, ses

Re: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread Puiu Hrenciuc
1. No. If that would be the problem i think that sessions would expire after the same period of time and not randomly , right ? 2. The site consists in a single page (index.php) that includes the subpages as needed. The session_start() is at the begining of the file. If this would be

Re: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread Puiu Hrenciuc
the session_start() is in a file that is require_once in every page, so it can't get called more than one time. If this would be the problem, I would also have problems on the development server, don't you think ? "Electroteque" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > all i c

Re: [PHP] Sessions, sessions and... sessions

2004-03-02 Thread Michal Migurski
>I am a little desperate right now since I have tried to solve this >problem for 3-4 days now. I have developed a site that uses sessions for >user authentication and data storage between page access. The development >server is Apache1.3.24/MySQL4.1.0/PHP4.3.3/Win XP Pro The release server >is Apac