• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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