Entry
Where can I get a list of all the php3_ settings for Apache?
What configuration settings can I make for PHP in Apache conf or .htaccess files?
Jul 14th, 1999 10:35
n, Nathan Wallace,
Just about every directive listed here has a corresponding Apache
httpd.conf directive. Simply prepend php3_ to the start of the directive
names listed here.
http://www.php.net/manual/configuration.php3
There are some that can't be set in the .conf file though. For the
definitive list, have a look at mod_php3.c in the source code.
...or, a shortcut would be server-info, if you compiled Apache with
mod_info.If yes, enable it (search httpd.conf for server-info handler)
and open http://your.server.name/server-info. Go to php3_module section
and there you'll see all the config. settings
available.
...or you can try this on the command line:
httpd -L
...you can see their current values using php_info()