• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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