defaults httpd.conf

I have found in the httpd.conf where it it states the default parse pages like index.htm, index.html, index.php and etc....However, my computer box does not seem to want to automatically load the index.php files. Anyone have any ideas?

correct me if i am wrong but isnt php a module you have to add in and or compile into the httpd? im speaking about apache which is what i assume u are running. If it is already in the httpd you might need to add the php extention to the hpptd.conf file so it knows to look for those pages also.

I have that part working i can use the php and i have the extentions in the httpd.conf file. I hade to complile php with appache yes.

what do you have for this:

#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index.  Separate multiple entries with spaces.
#

DirectoryIndex index.html

DirectoryIndex index.php index.html index.htm index.shtml
ServerSignature email
SSLEngine on

this what i have , but it still dows not auto parse and display any index.* file eccept index.html

what do you have for this:

#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index.  Separate multiple entries with spaces.
#

DirectoryIndex index.html

[/quote]

DirectoryIndex index.php index.html default.html index.htm ...... (add more here)

Don't forget to restart apache (httpd) after making changes.