indoglobal.com
Langsung ke: navigasi, cari

CakePHP

Revisi per 9 September 2013 04.59; Docs (bicara | kontrib)

(beda) ←Revisi sebelumnya | Revisi terkini (beda) | Revisi selanjutnya→ (beda)

CakePHP adalah framework populer untuk PHP. Berikut adalah masalah-masalah dan solusinya yang berhubungan dengan penggunaan CakePHP di sistem kami.

Internal Server Error (Too Many Redirects)

Gejalanya adalah aplikasi memberi output Internal Server Error, dan pada log file terdapat pesan error "Request exceeded the limit of 20 internal redirects due to probable configuration error. Use 'Limit InternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace."

Solusinya, gunakan .htaccess dengan isi seperti berikut ini:

RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]