I'm currently experimenting with setting up a site on WAMP server to hold some personal information. Because my ISP blocks port 80, I've had to change apache's default port from 80 to 25565 (I believe that I've also left port 80 operable just in case, though). All of this has gone well, as I am completely able to access my server by typing in "localhost" or "localhost:25565" into google chrome.
However, when using my external IP address, I get a variety of errors, namely "connection timed out". In general my queries are made in the format "xxx.xx.xx.x:25565" or "xxx.xx.xx.x", substituting my own external IP. The port is completely forwarded (I've checked http://canyouseeme.org several times) and as I mentioned, the site is working correctly from the localhost.
I am running the latest version of wordpress on the site and using the wordpress homepage as my index.php (replacing the WAMP default). I am also attaching segments of httpd-vhosts.conf and httpd.conf which I modified from WAMP defaults in case those are a part of my issue. Thanks in advance.
Update: I was able to discover that this is actually still a problem with port 80. Apparently the server was still trying to send the final data over port 80 even though it was responding to the initial request on port 25565. If anyone knows a workaround for this, please let me know.
httpd-vhosts.conf:
<VirtualHost *:25565>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "c:/Apache24/docs/dummy-host.example.com"
ServerName dummy-host.example.com
ServerAlias www.dummy-host.example.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "c:/Apache24/docs/dummy-host2.example.com"
ServerName dummy-host2.example.com
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
httpd.conf
Listen 0.0.0.0:80
Listen [::0]:80
Listen 0.0.0.0:25565
Listen [::0]:25565