askeet 1日目の最後でデバッグモードを表示させると

Your are not allowed to access this file. Check frontend_dev.php for more information.

と表示されてしまう件ですが、解決しました。

原因は /home/askeet/web/frontend_dev.php の4行目?7行目で

if (!in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1')))
{
  die('Your are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
}

となっていて他の IP からのアクセスを拒否していました。
(続きを読む…)