Re: [PHP] Re: Local version works - production breaks

2004-08-07 Thread Josh Acecool M
That might be something, with reg globals ON, on your server, and say you try to get $_GET['id'] and $SESSION['id'] will be the same, they might be overwriting themselves. Try setting register globals to OFF on your server, its also more secure. "Andre Dubuc" <[EMAIL PROTECTED]> wrote in message

Re: [PHP] Re: Local version works - production breaks

2004-08-07 Thread Andre Dubuc
Josh, Aside from the differences in php versions, the only difference is thta the local version has register_globals=off. I'm really stumped. Andre On Sunday 08 August 2004 06:07 am, Josh Acecool M wrote: > Did you check the phpinfo on each server, make sure your server settings > are same as

[PHP] Re: Local version works - production breaks

2004-08-07 Thread Josh Acecool M
Did you check the phpinfo on each server, make sure your server settings are same as local? "Andre Dubuc" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I have re-written a very basic website to use sessions (switching to https) > for login to special areas of a site. After