在虚拟主机上部署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'
);