Re: [PHP] RESOLVED, sort of -- Re: [PHP] where is my session data on my new server?

2003-10-19 Thread David T-G
Curt, et al -- ...and then Curt Zirzow said... % % * Thus wrote David T-G ([EMAIL PROTECTED]): % Hi, all -- % % It appears that the change from 4.2.3 to 4.3.4rc1 was not something that % got broken but instead something that got fixed. Oh, yay. But what do I % do now? Hmmm... % % I'm

Re: [PHP] RESOLVED, sort of -- Re: [PHP] where is my session data on my new server?

2003-10-18 Thread Curt Zirzow
* Thus wrote David T-G ([EMAIL PROTECTED]): Hi, all -- It appears that the change from 4.2.3 to 4.3.4rc1 was not something that got broken but instead something that got fixed. Oh, yay. But what do I do now? Hmmm... I'm catching up in emails a little late but using $_SESSION[] access

[PHP] RESOLVED, sort of -- Re: [PHP] where is my session data on my new server?

2003-10-17 Thread David T-G
Hi, all -- It appears that the change from 4.2.3 to 4.3.4rc1 was not something that got broken but instead something that got fixed. Oh, yay. But what do I do now? Hmmm... The code ?php session_name('name') ; session_start ; session_register('pw') ; $pwc = realpass ; if

RE: [PHP] where is my session data on my new server?

2003-10-16 Thread Ford, Mike [LSS]
On 14 October 2003 14:45, David T-G wrote: Mike, et al -- ...and then Ford, Mike [LSS] said... % % On 14 October 2003 11:26, David T-G wrote: % % I ran a phpinfo() comparison and didn't see anything markedly % different (except for how the output is formatted, which made

Re: [PHP] where is my session data on my new server?

2003-10-16 Thread David T-G
Mike -- ...and then Ford, Mike [LSS] said... % % On 14 October 2003 14:45, David T-G wrote: % % ...and then Ford, Mike [LSS] said... % % % % On 14 October 2003 11:26, David T-G wrote: % % % % I ran a phpinfo() comparison and didn't see anything markedly ... %

Re: [PHP] where is my session data on my new server?

2003-10-15 Thread David T-G
Hi again, all -- ...and then David T-G said... % ... % % On the first server when you enter the password and hit the button the % page comes back up with $pw set and in you go. On the second server $pw % is always empty and we are endlessly prompted. ... % % Do you have any pointers to what I

RE: [PHP] where is my session data on my new server?

2003-10-14 Thread Ford, Mike [LSS]
On 14 October 2003 11:26, David T-G wrote: On the first server when you enter the password and hit the button the page comes back up with $pw set and in you go. On the second server $pw is always empty and we are endlessly prompted. I ran a phpinfo() comparison and didn't see anything

Re: [PHP] where is my session data on my new server?

2003-10-14 Thread zerof
You can bypass any configuration using: session_save_path ('path/to/session_folder'); -- zerof - -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] where is my session data on my new server?

2003-10-14 Thread David T-G
Mike, et al -- ...and then Ford, Mike [LSS] said... % % On 14 October 2003 11:26, David T-G wrote: % % I ran a phpinfo() comparison and didn't see anything markedly % different (except for how the output is formatted, which made things % delightfully more challenging), but I

Re: [PHP] where is my session data on my new server?

2003-10-14 Thread David T-G
zerof -- ...and then zerof said... % % You can bypass any configuration using: % session_save_path ('path/to/session_folder'); Well, it's the same on both servers, and /tmp is writable (there are session files in there, even), so that doesn't seem to be it. Thanks, though. % -- % zerof %