我刚刚在我的 ubuntu 计算机上安装了 apache2 和 php5,我之前在 debian 上做过,但现在我遇到了一个奇怪的错误。
当我尝试在 CodeIgniter 中使用我的框架访问页面时,出现此错误
[error] [client 127.0.0.1] PHP Warning: require_once(/var/www/project/system/core/CodeIgniter.php): failed to open stream: Permission denied in /var/www/project/index.php on line 202, referer: localhost/
[error] [client 127.0.0.1] PHP Fatal error: require_once(): Failed opening required '/var/www/project/system/core/CodeIgniter.php' (include_path='.:/usr/share/php5-common') in /var/www/project/index.php on line 202, referer: localhost/
在此之前我的include_path上出现 not found 错误,所以,我在php.ini上将其更改为 :/usr/share/php5-common
仍然......我不知道错误是什么......
我更改了我的 /var/www 文件夹及其类似 user:user 的权限
在 index.php 行我有这个:
require_once BASEPATH.'core/CodeIgniter.php';