• 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 / safe_mode / gallery2

S

sullo

Guest
Trying to get gallery2 working, which sadly requires safe_mode = off.

I have safe_mode = on in /etc/php.ini

I have safe mode disabled in the site's plesk setting.

The /var/www/vhosts/<domain>/conf/httpd.conf shows "php_admin_flag safe_mode off"

The vhosts.conf is:

<Directory /var/www/vhosts/<domain>/httpdocs/gallery2>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/var/www/vhosts/<domain>/httpdocs:/tmp:/usr/bin"
php_admin_value safe_mode_include_dir "/var/www/vhosts:/usr/bin"
php_admin_value safe_mode_exec_dir "/usr/bin"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir "/var/www/vhosts/<domain>/httpdocs:/tmp:/usr/bin"
php_admin_value safe_mode_include_dir "/var/www/vhosts:/usr/bin"
php_admin_value safe_mode_exec_dir "/usr/bin"
</IfModule>
</Directory>

I've done several combinations of webservrmng command that I've seen around here. i've restarted apache manually.

However... no matter what I do, safe_mode is still enabled for this domain when i look at the output of phpinfo().

What gives??

I don't want to disable it for all domains...

thx
 
I guess parallels doesn't respond to posts and no one else knows. Anyone know how we actually get support from these guys?
 
Thanks Dan...but I guess if I don't cough up $ they don't support their product. Great.

All these years I haven't felt the frustrations expressed by others here about the serious lack of Parallels' support of Plesk...but I guess I do now.

Thanks again.
 
Try replacing
php_admin_flag safe_mode off
with
php_flag safe_mode off
or
php_value safe_mode off
 
Back
Top