Forum Moderators: phranque

Message Too Old, No Replies

apache download and installation with php 4.4

apache download configuration and installation with php 4.4 on windows

         

dizyn

11:00 am on Jul 5, 2006 (gmt 0)

10+ Year Member



Hay i am new here...

I have problem with apache and php installation, download and configuration.

Please help me.
form where i can get apache and php 4.4 (installer) for windows?

thanks.

dizyn

3:42 pm on Jul 5, 2006 (gmt 0)

10+ Year Member



this problem has been solved, but now there is a small problem, my apache 2.0.58 server picks .html file its self with writing it in the browser bar but but it don't pick the index.php file and i have to write it in my browser window.

i think for this i have to change my httpd.conf file but i don't know where to do the change.

please help me
thanks.

jdMorgan

3:53 pm on Jul 5, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you mean that when you type http://example.com/ into the address bar, the server is showing index.html instead of index.php, then the most likely cause is your DirectoryIndex [httpd.apache.org] directive.

DirectoryIndex specifies the file to be served when a directory index is requested; The order of the specified filenames determines their priority. So, something like


DirectoryIndex index.php index.shtml index.html index.htm

Would preferentially serve index.php. If that file does not exist, it would then attempt to serve index.shtml, index.html, or index.htm, in that order.

Jim