Re: [PHP] IE Not Following Header(Location: /path/to/file.php);

2007-09-06 Thread Edward Kay
Scott Wilcox wrote: hey folks. I have a strange problem with IE sometimes. It doesn't seem to accept and follow a header sent to the browser. The action occurs when a user logs in, then is sent this header. Any hints/ideas appreciated. Scott. Get Microsoft's (free) Fiddler Tool and look at

Re: [PHP] IE Not Following Header(Location: /path/to/file.php);

2007-09-06 Thread Kevin Murphy
Also, turn on error reporting and see if an error is being generated before the header is sent. -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326 P.S. Please note that my e-mail and website address have changed from wncc.edu to

RE: [PHP] IE Not Following Header(Location: /path/to/file.php);

2007-09-06 Thread Sanjeev N
There may be some output before header() or may be IE browsing interface is not getting refresh properly Warm Regards, Sanjeev http://www.sanchanworld.com/ http://webdirectory.sanchanworld.com - Submit your website URL http://webhosting.sanchanworld.com - Choose your best web hosting plan

Re: [PHP] IE Not Following Header(Location: /path/to/file.php);

2007-09-06 Thread Andrew Brampton
That is not valid, the Location field must contain the full URL, so /path/to/file.php should be http://yourserver/path/to/file.php Read RFC rfc2616, section 14 Will help find it: http://www.google.com/search?hl=enq=HTTP+Header+FieldbtnG=Google+Search Andrew - Original Message -

Re: [PHP] IE Not Following Header(Location: /path/to/file.php);

2007-09-06 Thread brian
Edward Kay wrote: Get Microsoft's (free) Fiddler Tool and look at the exact info been sent and received: http://www.fiddlertool.com/fiddler/ Edward I'd just like to say thanks for posting that. This might be the sugar i need to face the bitter prospect of booting Windows for testing.