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