>From the looks of it, you have Zend Framework in the path, but view files are not. The allowed paths are: /tmp /var/www/sites/administrator/xxxx.pl/subdomains/zendtest /var/www/sites/administrator/xxxx.pl/subdomains/zendtest/ZendStuff/library/Zend
I have no idea what your sever setup is like and whether you're using symlinks or not. If I remember correctly, open_basedir won't allow files to be opened via symlinks. Also note that the paths you have are prefixes. This means that open_basedir would allow you to open files in a folder called for instance /tmps. This also means that the second path you have is redundant, as it should allow anything in zendtest and below to be opened. So the question is, are your view scripts under any of the above folders. Remember, if you have any symbolic links, that they cannot resolve to a path outside the open_basedir. http://www.php.net/manual/en/ini.core.php#ini.open-basedir Cheers, David -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/PHP-version-not-ok-tp2307285p2308689.html Sent from the Zend Framework mailing list archive at Nabble.com.
