Hi!
I suddenly have this error on my site, without having made any changes to the code:
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
I first contacted my web host, but they gave no help.
In my error log, it tell me it’s an “out of memory” error in Common.php. The line # it gives contains:
[php]$tr.=substr($str,$nr2+1);[/php]
which is part of this function:
[php]function ReplacePA($str,$art)
{
if($nr1=strpos($str,’[’))
{
$tr=substr($str,0,$nr1);
$nr2=strpos($str,’]’,$nr1);
$tr.=$art[substr($str,$nr1+1,$nr2-$nr1-1)];
$tr.=substr($str,$nr2+1);
return ReplacePA($tr,$art);
}
else
{
$OUT = explode(“76PULL*PULL76”, $str);
return $OUT[1];
}
}[/php]
I have some php knowledge, but not enough to figure this out. Any ideas appreciated!