2011-12-02 58 views
0

當我試試這個:當Zend位於包含路徑中時,不能要求Zend/Config/Ini嗎?

require_once 'Zend/Config/Ini.php'; 

我得到我的Zend框架應用程序此錯誤:

Warning: require_once(Zend/Config/Ini.php) [function.require-once]: failed to open stream: No such file or directory in /path/to/functions.php on line 408 

當我打印我的包含路徑,它是:

string(101) "/path/to/www/app/modules/:/path/to/www/lib/:.:/usr/local/share/pear" 

我在/ path/to/www/lib /文件夾中有ZF庫,所以wtf?

回答

0

這解決了這個問題:

chmod -R 755 /path/to/www/lib 

天哪!