Warning: is_readable() [function.is-readable]: open_basedir restriction in effect

在虚拟主机上部署Zend项目时,报如下Warning:

Warning: is_readable() [function.is-readable]: open_basedir restriction in effect

解决方法:修改public目录下的index.php中的set_include_path部分为以下内容即可。

set_include_path(
APPLICATION_PATH.'/../library'.PATH_SEPARATOR.
APPLICATION_PATH.'/../library/Zend'
);


发表评论

邮箱地址不会被公开。