Codeigniter坏系统文件夹路径

时间:2013-07-15 11:24:18

标签: php linux codeigniter codeigniter-2

我已将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函数失败但我不知道为什么。

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

我的错误:在/etc/php/php.ini中应将/pub添加到open_basedir的列表中,重启网络服务器,一切都会好的。