Set PHP settings in Apache configuration
Answer:
It is possible to set PHP (PHP5) settings in the Apache configuration.
E.g. Turn on register_globals
Add the following lines to the Apache configuration (httpd.conf)
<IfModule mod_php5.c>
php_value register_globals 1
</IfModule>
Restart Apache to take effect
# apachectl -k graceful