• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

vhost.conf

kingsquare

New Pleskian
I've tried to setup extra php_admin flags via a vhost.conf file for just one domain... but the file doesnt seem to be included? Am i doing something wrong?
Code:
<IfModule sapi_apache2.c>
        php_admin_value safe_mode Off
        php_admin_value open_basedir  "/usr/share/pear:/var/lib/php/session:/var/www/vhosts/example.com/httpdocs:/tmp"
        php_admin_value upload_tmp_dir /tmp
</IfModule>

And in http.include i see the extra line:
Code:
Include /var/www/vhosts/example.com/conf/vhost.conf

So that seems to go ok, but with a phpinfo(); command i dont see the extra open_basedir parameters nor the change in safe_mode... ?

As you might be wondering why: egroupware... (CentOs 4.3)

[edit]

Sigh... got it fixed now...
Code:
<Directory /var/www/vhosts/example.com/httpdocs>
        <IfModule sapi_apache2.c>
                php_admin_value mbstring.func_overload 7
                php_admin_value open_basedir  "/usr/share/pear:/var/lib/php/session:/var/www/vhosts/example.com/:/tmp"
                php_admin_value upload_tmp_dir /tmp
        </IfModule>
</Directory>
is the _entire_ contents of vhost.conf

and thát works!
 
Back
Top