Latest News

Solved..!! Showing Error Message No Input File Specified

SOLVED..!! Showing Error Message "no input file specified" - - Jika anda mendapat error dimana website tidak dapat diakses dengan pesan error "No Input File Specified", yang perlu Anda curigari ialah .htaccess.


Hal ini pernah aku alami dikala aku memakai PHP-5.4.36-0+deb7u3 (cli), di salah satu server dengan Aplikasi Webbased, seluruh konfigurasi sudah benar, namun tidak berjalan kalau memakai .htaccess sbb.


 RewriteEngine on    RewriteCond $1 !^(index\.php|images|resource|robots\.txt)    RewriteCond %{REQUEST_FILENAME} !-f    RewriteCond %{REQUEST_FILENAME} !-d    RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]   

Namun script .htaccess diatas dapat berjalan baik di versi PHP-5.3.10-1ubuntu3 with Suhosin-Patch (cli).

Solusinya :

adalah, merubah script .htaccess menjadi sbb :

 RewriteEngine On    RewriteBase /    RewriteRule ^index\.php$ - [L]    RewriteCond %{REQUEST_FILENAME} !-f    RewriteCond %{REQUEST_FILENAME} !-d    RewriteRule . /index.php [L]    RewriteRule ^index.php/(.*)$ [L]   


0 Response to "Solved..!! Showing Error Message No Input File Specified"

Total Pageviews