PHP register_globals disabled? Help!
Within our PHP configuration we have the register_globals
function disabled on all of our servers as it can pose an unnecessary
security risk having it enabled. While in our opinion all scripts
should be coded in a way that does not require require register_globals
to be enabled some scripts which do not take security as seriously
still require this function to be enabled.
When trying to run a script that requires register_globals it will likely throw up an error something like this -
Quote:
| Getting Error: FATAL ERROR: register_globals is disabled in php.ini, please enable it! |
Quote:
| <IfModule mod_php4.c> php_value register_globals 1 </IfModule> |
| < Prev | Next > |
|---|

