1

Iam running Zend with Apache and got to see a strange behaviour....

If i type http://127.0.0.1 in my browser url, it works fine, but after typing: http://localhost, i will get a file download window, saying file type as: application/x-httpd-php

And in my httpd.conf file, i have the following under VirtualHost *:80 definition:

ServerName localhost

DocumentRoot E:\zend\Apache2\htdocs\my_project\public

Directory E:\zend\Apache2\htdocs\my_project\public

Perhaps some configuration problem... can anyone guide me..

Mark Henderson
  • 68,316
  • 31
  • 175
  • 255
shasi kanth
  • 179
  • 1
  • 3
  • 11

2 Answers2

3

from the httpd.conf file:

NOTE: Where filenames are specified, you must use forward slashes instead of backslashes (e.g., "c:/apache" instead of "c:\apache"). If a drive letter is omitted, the drive on which Apache.exe is located will be used by default. It is recommended that you always supply an explicit drive letter in absolute paths to avoid confusion.

so change the

DocumentRoot E:\zend\Apache2\htdocs\my_project\public

to

DocumentRoot "e:/zend/Apache2/htdocs/my_project/public"

the Directory E:\zend\Apache2\htdocs\my_project\public is the part of the config file in which services and features are allowed and/or disabled in that directory, so it has to go like this:

<Directory "e:/zend/Apache2/htdocs/my_project/public"> some options </Directory>

it would be easier to point out what's wrong if you would post the httpd.conf here, or upload it somewhere and post a link to that file

addam
  • 430
  • 2
  • 6
  • This doesn't explain why `localhost` doesn't work though – Mark Henderson Feb 05 '11 at 19:48
  • getting an application/x-httpd-php file download window is a weird error, I'm doing my best here with the things dskanth submitted – addam Feb 05 '11 at 19:53
  • Thanks for the answers... i got my problem solved now... i have restarted the zend server after making the change in DocumentRoot statement, as addam pointed, and http://localhost works now :) – shasi kanth Feb 08 '11 at 05:29
3

Check your hosts file, typically in someplace like:

C:\windows\system32\drivers\etc

Make sure that there is an entry for localhost like this:

127.0.0.1 localhost

Frankly, I can't immediately see why the absence of such an entry would produce the result you report - a download of type application/x-httpd-php - but when something's not working, always best to dot all the i's and cross all the t's. ;-)

DavidW
  • 166
  • 3
  • 9