「Php/Symfony/Symfony2/開発環境に外部からアクセス」の版間の差分
提供: 初心者エンジニアの簡易メモ
行7: | 行7: | ||
- || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) | - || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) | ||
+ || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1', '192.168.xxx.xxx')) | + || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1', '192.168.xxx.xxx')) | ||
+ | |||
+ | ==以下cache権限エラーが出た時== | ||
+ | RuntimeException: Failed to write cache file "app/cache/dev/classes.php". | ||
+ | |||
+ | $ chmod -R 777 app/cache |
2017年1月17日 (火) 14:04時点における版
localhost以外からapp_devへアクセスすると以下エラーが出る
You are not allowed to access this file. Check app_dev.php for more information.
対応方法としては以下ファイルの配列に許可ipを加える
-app_dev.php
- || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) + || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1', '192.168.xxx.xxx'))
以下cache権限エラーが出た時
RuntimeException: Failed to write cache file "app/cache/dev/classes.php".
$ chmod -R 777 app/cache