I have a LAMP problem with PHP or rewrite rules in an application I've inherited. I would appreciate some suggestions about how to diagnose the problem. I'm getting:
Code: Select all
Redirect Loop
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
The browser has stopped trying to retrieve the requested item. The site is redirecting the request in a way that will never complete.
* Have you disabled or blocked cookies required by this site?
* NOTE: If accepting the site's cookies does not resolve the problem, it is likely a server configuration issue and not your computer.
Code: Select all
$fh = fopen("logFile.txt", 'a') or die("can't open file");
fwrite($fh, date("Y-m-d H:i:s")." core.php running\n");
Code: Select all
$Application = & $site->Process(); // Process data and initialise Requested Application
I would appreciate any thoughts you care to express,
Dale E. Moore