• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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