wamp server localhost:8080 page shows errors

This was the problem: I had the problem that wamp server's localhost page displayed blank and I found the following stackoverflow link (Tharick's answer did the trick for me). When I opened the localhost page as: localhost:8080 then the localhost page opened with errors as you can see in the attached image (I added some arrows for illustration purposee). As suggested in the localhost page I opened the file:

c:/wamp64/bin/apache/apache2.4.51/conf/extra/httpd-vhosts.conf and found this:

# Virtual Hosts
#
<VirtualHost *:8080>
  ServerAdmin [email protected]
  DocumentRoot "c:/wamp64/www"
  ServerName  localhost
  <Directory "/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews

  </Directory>
</VirtualHost>
#
<VirtualHost *:8080>
    ServerAdmin [email protected]
    DocumentRoot "c:/wamp64/www"
    ServerName  "localhost"
  <Directory "/">
    order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
    Allow from localhost
    Allow from 192.168.0
    Allow from ::1
  </Directory>
</VirtualHost>

192.168.0 is the login address for my router. [email protected] is a placeholder for my email address

I believe this error means that I have to enter localhost:8080 rather than localhost, only in order to see the wamp server page and I hope somebody has the answer, what the error message means.

This shows the localhost page after entering localhost:8080 in my browser

Additional: This is a screen shot from the wamp server menu, which illustrates the error!

Upvotes: 0

Views: 258

Answers (0)

Related Questions