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

register globals

D

diegonoe06

Guest
Hello all,

I have register_globals disable on the server for well known security reasons.

Anywhere, I have to enable it for some customers who need it.

I enable it by adding the registry key:

MyComputer >> HKEY_LOCAL_MACHINE >> SOFTWARE >> Wow6432Node >> PHP >> PER DIRECTORY VALUES >> C >> INETPUB >> VHOSTS >> DOMAIN.TLD

Then, analizing phpinfo reports, I see register_globals "on" (Local Value) and register_globals "off" (master value). It is ok, as I desire.

But, php scripts still does not take variable values. It is very strange, because phpinfo reports that register_globals is on.

### Here is my script test.php

<?php
echo $parameter;
?>



### Here is my script prueba.php

http://domain.com/test.php?parameter=1


### The output should be "1", but none value returned.


Any ideas?
Thanks.
 
Hi,

Open up %systemroot%/php.ini, search for register_globals, set it to 1 ; thats all
 
I have the same problem, although the accused php_info():

Directive / Local Value / Master Value
register_globals / On / Off

and input to registry:
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PHP\Per Directory Values\C\Inetpub\vhosts\mydomain.com]
"register_globals"="1"
(not on, does not turn on with the local value)

register_globals does not work within the site.

System Plesk 9.0 and Win 2008 Server x64 Sp2

Help, Thanks.
 
Back
Top