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

websrvmng register_globals

Y

Ysean

Guest
We have a customer that for reasons I don't want to go into requires register_globals on and safe_mode off.

This typically would be fine and dandy BUT, it seems after the most recent updates websrvmng -u --vhost-name=<sitename> does nothing but overwrite the changes in httpd.include. I've also put these changes in vhost.conf and ran websrvmng -u --vhost-name=<sitename>. Neither of these work.

Does ANYONE know what the deal is?

I've created the vhost.conf file as

<Directory <path to site>>
php_admin_flag register_globals on
php_admin_flag safe_mode off
</Directory>
 
You could create an ".htaccess" file in the php directory where the needed script runs.

create an .htaccess file and add:

php_flag safe_mode off
php_flag register_globals on

This has worked for me in the past.
 
Back
Top