Pada tutorial kali ini kita akan melakukan debug untuk mengetahui permission file PHP pada server cPanel.
- Misal kita membuat directory
#mkdir coba2014
#ls -al | grep coba2014
drwxrwxr-x 2 userweb userweb 4096 Apr 2 10:20 coba2014Kemudian kita coba mengakses dari browser maka akan muncul:
Index of /coba2014 - Kemudian kita masuk ke directory coba2014 dan membuat sebuah file php:
# cd coba2014
coba2014# echo “coba” > coba.php
coba2014# ls -al
total 12
drwxrwxr-x 2 userweb userweb 4096 Apr 2 10:22 ./
drwxr-xr-x 39 userweb userweb 4096 Apr 2 10:20 ../
-rw-rw-r– 1 userweb userweb 5 Apr 2 10:22 coba.phpJika kita mengakses ke browser maka tampilan akan seperti berikut ini:
Index of /coba2014
Parent Directory
coba.phpJika kita klik coba.php maka akan muncul error seperti berikut ini:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@prowebpro.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. - Setelah dipelajari ternyata masalah tersebut muncul karena directory coba2014 dan file coba.php ada permission write pada groupnya. Kita perlu menghilangkan permission write ini dengan perintah ‘chmod g-w ‘
#cd ..
#chmod g-w coba2014
#ls -al | grep coba2014
drwxr-xr-x 2 userweb userweb 4096 Apr 2 10:22 coba2014/
#cd coba2014
coba2014]# chmod g-w coba.php
prowebpr@prowebpro.com [~/public_html/coba2014]# ls -al
total 12
drwxr-xr-x 2 userweb userweb 4096 Apr 2 10:22 ./
drwxr-xr-x 39 userweb userweb 4096 Apr 2 10:20 ../
-rw-r–r– 1 userweb userweb 5 Apr 2 10:22 coba.phpJika kita mengakses dengan browser ke coba.php maka akan berhasil .
Kunjungi www.proweb.co.id untuk menambah wawasan anda.