我已将CodeIgniter安装到/usr/share/pear/codeigniter
中。如果我在我的应用中设置index.php
$system_path = '/usr/share/pear/codeigniter/system';
它可以很好地运作。
但是,当我mount --bind
或复制到/pub/codeigniter
并将$system_path
设置为/pub/codeigniter/system
时,无法正常工作,CI会显示错误消息:
Your system folder path does not appear to be set correctly. Please open the following file and correct this: index.php
权限:
$ ls -ld /usr/share/pear/codeigniter/{,*}
drwxr-xr-x 4 root root 4096 febr 17 13.07 /usr/share/pear/codeigniter/
drwxr-xr-x 15 root root 4096 febr 17 13.07 /usr/share/pear/codeigniter/application
-rw-r--r-- 1 root root 6357 febr 17 13.07 /usr/share/pear/codeigniter/index.php
drwxr-xr-x 8 root root 4096 febr 17 13.07 /usr/share/pear/codeigniter/system
$ ls -ld /pub/codeigniter/{,*}
drwxr-xr-x 4 root root 4096 júl 15 13.20 /pub/codeigniter/
drwxr-xr-x 15 root root 4096 febr 17 13.07 /pub/codeigniter/application
-rw-r--r-- 1 root root 6357 febr 17 13.07 /pub/codeigniter/index.php
drwxr-xr-x 8 root root 4096 júl 15 13.20 /pub/codeigniter/system
我认为PHP的is_dir
函数失败但我不知道为什么。
有什么建议吗?
答案 0 :(得分:1)
我的错误:在/etc/php/php.ini
中应将/pub
添加到open_basedir
的列表中,重启网络服务器,一切都会好的。