How to turn of safe_mode in Plesk? There are 2 ways to turn off safe_mode for a domain in Plesk.
1) From the Plesk control panel. Login to Plesk >> click “Domains” >> click “domainname.tld” >> click “WebSite Settings” >> make sure PHP support is checked, but “safe_mode” is unchecked >> click Save.
2) The second way is to turn off sqfe_mode using vhost.conf file. Create a vhost.conf file under “/var/www/vhosts/domainname.tld/conf/” directory and place the following lines:
<Directory /home/httpd/vhosts/<domain.com>/httpdocs>
php_admin_flag safe_mode off
</Directory>
Now, in order for Plesk to read these changes, execute
/usr/local/psa/admin/bin/websrvmng -a
service httpd restart
You can enable “register_globals” for a domain the same way mentioned in the 2nd step but make sure to execute the 2 commands for the changes to take effect.
Comments are closed.