Internal Server Errorで困ったときのメモ

ひさびさに「Internal Server Error」エラーが発生しました。

大まか、パーミッション権限が間違っている、.htaccessファイルの記述ミスですが中には???とわからないときもあります。

 

Internal Server Error

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

 

じゃあ、どうするの?

 

ということで下記のコードを記述して、サーバー再起動。(再起動しなくてもよいのかな?)

 

PHPの先頭へ追記コード

ini_set("display_errors", On);
error_reporting(E_ALL);

 

 

ふむふむ。エラーを出力してくれる。

サーバーエラー

 

セッション回りのフォルダに書き込みできんということ・・・。

権限が不足していました・・・?

 

この「Internal Server Error」エラーは、正直ドツボにハマると他のエラー対処より面倒と経験上思いますよ