Check your rewrite_log file. It will have the information on what url internally the server is trying to redirect and what path it goes through. If you don't have the file then update your httpd.conf file and add following statements.
RewriteLogLevel 3 RewriteLog <WRITABLE_FILE_PATH> and restart the server and try again, you will see where the problem is coming from. Ketan bunyan wrote: > Hello! > > I've installed my cake app on remote server as it's described here - > http://www.ad7six.com/MiBlog/ProductionSetup. It worked with PHP 4, > but I needed PHP 5 for some reasons and it was available as cgi on > hosting company's servers. After I added > AddHandler php5-script .php > to .htaccess file, server started giving an "Internal Server Error" on > every request. The corresponding log record was: "Request exceeded the > limit of 20 internal redirects due to probable configuration error. > Use 'LimitInternalRecursion' to increase the limit if necessary. Use > 'LogLevel debug' to get a backtrace." > > I tried to modify htaccess file as some people advise here - added > RewriteBase / to htaccess and modified RewriteRule ^(.*)$ /index.php? > url=$1 [QSA,L] (added a slash before index.php), but it didn't help. > > What could be a solution? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
