
June 26th, 2007, 07:01 PM
|
|
Registered User
|
|
Join Date: Jun 2007
Posts: 2
Time spent in forums: 2 h 5 m 20 sec
Reputation Power: 0
|
|
|
WAMP - Localhost:8080 = page can not be displayed in IE7
Okay, this is my first time around the block when it comes to setting up a web server on my home computer. I’m working towards a WAMP setup and am running into a rather odd issue. I’ve installed Apache 2.2.4 and PHP 5.2.3. I did not setup Apache to run as a service because I am only using it to help with developing a site I am going to begin working on and as such it is listening on port 8080. The problem is this if I go to localhost:8080 or 127.0.0.1:8080 in Firefox I see the page I am supposed to. If I go to localhost:8080 or 127.0.0.1:8080 in IE 7 I get “page can not be displayed”. I not exactly why this is happening with one browser and not the other but it is a little frustrating. I believe these are the pertinent lines from my httpd.conf file:
Code:
ServerRoot "C:/Program Files/Apache Software Foundation/Apache2.2"
Listen: 8080
ServerName 127.0.0.1
DocumentRoot C:/www
<Directory C:/www>
Any insight would be appreciated.
|