端くれプログラマの備忘録 EC-CUBE [EC-CUBE] デバッグモードで”You are not allowed to access this file”が表示される場合

[EC-CUBE] デバッグモードで”You are not allowed to access this file”が表示される場合

index_dev.phpにアクセスして以下メッセージが表示される場合

You are not allowed to access this file. Check index_dev.php for more information.

index_dev.phpにハードコードされている許可IPを追加すればアクセスできるようになる。

$allow = array(
    '127.0.0.1',
    'fe80::1',
    '::1',
    '192.168.10.1' //追加
);

参考サイト

開発の補助:デバッグ・Tips | EC-CUBE 開発ドキュメント
https://doc.ec-cube.net/guideline_tips