WAMP Wants to add /UI to whatever I try and view outside my network, returning 404
Hey everyone... I am having the worst luck trying to figure out what the heck is going on with my server set up. I have tried from my cell phone, as well as numerous other networks, and just can't get anything to work. Here is what I have, and here is what happens.
1 - Windows 7 Pro SP1 32 Bit
2 - WAMP 2.5 (even did a fresh install yesterday after uninstalling and cleaning registry of old install)'
3 - Apache 2.4.9
4 - PHP 5.5.12
5 - MySQL 5.6.17
6 - Green and states WAMPSERVER - Online
7 - 127.0.0.1 localhost (only line in hosts file on the wamp server)
8 - Yes.
9 - Yes
10 -
"Forbidden
You don't have permission to access /UI on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
11 - Windows Built-In Firewall, as well as Avast! Antivirus
12 - c:/wamp/
--------------------------------
Additional Info:
8 - If I # the line that calls the vhosts-conf, I get the main WAMP www page that comes when you first install WAMP. If I leave vhosts-conf, I get the 1st vhost listed when I type in "[
localhost"]; no matter what browser.
10 - I am *NOT* typing in "/UI" when trying to access any of my vhosts. For some reason, no matter what browser I use, something in WAMP is adding the /UI in return. If I try and access any of the vhosts listed below on a machine WITHIN my network, I get a "The connection has timed out" error (Firefox) or "This page can't be displayed" (IE) error. Also, there is NOTHING written to either the error-log or access-log file for ANY of the VHosts that I try and access, even though it is throwing a 404 error. If I do a ping to ANY of the 3 vhosts, from anywhere on the internet on any machine, I get the correct IP response of 73.35.131.61, so I know the DNS server(s) have the correct entry.
11 - I have COMPLETELY disabled both the windows firewall & the Avast A/V, and still get the same results.
12 - I have the vhosts in the c:/wamp/vhosts directory.
I have gone in to the router and forwarded port 80 to .200, which is the development machine I have and get the same result. Currently, the web server machine is set up as DMZ in the Comcast Router, so it is wide open to the outside world.
My 3 VHosts, all of which give me the same error are as follows:
[
prod.moparsunlimiited.org]
[
prod.westcoastfiero.com]
[
prod.fieroswest.org]
----------------------------------
Config Files:
httpd-conf (Stripped out everything commented or not being loaded)
ServerSignature On
ServerTokens Full
ServerRoot "c:/wamp/bin/apache/apache2.4.9"
Define APACHE24 Apache2.4
Listen 0.0.0.0:80
Listen [::0]:80
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule allowmethods_module modules/mod_allowmethods.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cache_module modules/mod_cache.so
LoadModule cache_disk_module modules/mod_cache_disk.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule file_cache_module modules/mod_file_cache.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule php5_module "c:/wamp/bin/php/php5.5.12/php5apache2_4.dll"
User daemon
Group daemon
ServerAdmin
webmaster@moparsunlimited.orgServerName localhost:80
HostnameLookups On
DocumentRoot "c:/wamp/www/"
<Directory />
AllowOverride none
Require all granted
</Directory>
<Directory "c:/wamp/www/">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
<IfModule dir_module>
DirectoryIndex index.php index.php3 index.html index.htm
</IfModule>
<Files ".ht*">
Require all denied
</Files>
ErrorLog "c:/wamp/logs/apache_error.log"
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "c:/wamp/logs/access.log" common
ScriptAlias /cgi-bin/ "c:/wamp/bin/apache/apache2.4.9/cgi-bin/"
<Directory "c:/wamp/bin/apache/apache2.4.9/cgi-bin">
AllowOverride None
Options None
Require all granted
</Directory>
TypesConfig conf/mime.types
AddEncoding x-compress .Z
AddEncoding x-gzip .gz .tgz
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php .php3 .html
EnableSendfile off
AcceptFilter http none
AcceptFilter https none
Include conf/extra/httpd-autoindex.conf
Include conf/extra/httpd-vhosts.conf
Include conf/extra/proxy-html.conf
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
Include "c:/wamp/alias/*"
vhosts-conf:
<VirtualHost *:80>
ServerAdmin
webmaster@moparsunlimited.orgDocumentRoot "c:/wamp/vhosts/moparsunlimited"
ServerName prod.moparsunlimited.org
ErrorLog "logs/moparsunlimited-error.log"
CustomLog "logs/moparsunlimited-access.log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin
webmaster@fieroswest.orgDocumentRoot "c:/wamp/vhosts/fieroswest"
ServerName prod.fieroswest.org
ErrorLog "logs/fieroswest-error.log"
CustomLog "logs/fieroswest-access.log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin
webmaster@westcoastfiero.comDocumentRoot "c:/wamp/vhosts/westcoastfiero"
ServerName prod.westcoastfiero.com
ErrorLog "logs/westcoastfiero-error.log"
CustomLog "logs/westcoastfiero-access.log" common
</VirtualHost>
I am REALLY at a loss, so any help from anyone would be gratefully appreciated!