faqts : Computers : Programming : Languages : PHP : Installation and Setup : Web Servers : Apache

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

10 of 13 people (77%) answered Yes
Recently 3 of 6 people (50%) answered Yes

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()