• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

How do I install Zend on Plesk 10

S

SilvioR

Guest
Hello,

to let work a website using Zend I've to change the include_path on php.ini. Seems that doesn't see the Zend directory on require("Zend/..."). In my local pc works. I triple checked the folder and it's in the correct location (/var/ZendFramework/library)
Is it disabled somewhere?

Thanks
 
Solved.
By creating vhost.conf in /var/www/vhosts/DOMAIN/conf/
<Directory /var/www/vhosts/DOMAIN/public>
php_admin_value open_basedir none
</Directory>

Plesk for security reasons set the open_basedir to don't allow access to external folders
 
Back
Top