RE: [PHP] Redirects Safari vs Others

2005-12-06 Thread Mark Steudel
From: Dan Lowe [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 06, 2005 12:17 PM To: Mark Steudel Cc: PHP General List Subject: Re: [PHP] Redirects Safari vs Others On Dec 6, 2005, at 2:55 PM, Mark Steudel wrote: > Sorry it took me so long, I wasn't sure where the problem lay and >

RE: [PHP] Redirects Safari vs Others

2005-12-06 Thread Jay Blanchard
[snip] // Causes only Safiri to bomb header("location: ".$_SERVER['PHP_SELF']."?action=listentries&categoryid=".$id."&page=".$pagei d); exit; [/snip] Since PHP is processed server-side it has to be the URL causing Safari to bail. Have you echo'd out the URL to see what it is composed of? $foo = $

Re: [PHP] Redirects Safari vs Others

2005-12-06 Thread Dan Lowe
On Dec 6, 2005, at 2:55 PM, Mark Steudel wrote: Sorry it took me so long, I wasn't sure where the problem lay and couldn't get you the exact code, but I figured out why (sorta) this was happening. // Causes only Safiri to bomb header("location: ".$_SERVER['PHP_SELF']."?action=listentries&c

RE: [PHP] Redirects Safari vs Others

2005-12-06 Thread Mark Steudel
what PHPSELF is untill the script finishes executing... Input would be welcome. -Original Message- From: Brent Baisley [mailto:[EMAIL PROTECTED] Sent: Monday, December 05, 2005 12:15 PM To: Mark Steudel Cc: php-general@lists.php.net Subject: Re: [PHP] Redirects Safari vs Others Probably not a P

Re: [PHP] Redirects Safari vs Others

2005-12-05 Thread Brent Baisley
Probably not a PHP problem. And probably can't help without seeing your redirect code. I've never had a problem with redirects in any browser Safari or otherwise, but I always make sure I redirect with a full URL rather than a relative URL. On Dec 5, 2005, at 1:29 PM, Mark Steudel wrote: I