This document provides instructions for changing the default port of 80 to port 81 for a WAMP server. It involves editing the httpd.conf, wampmanager.tpl, testPort.php, and english.lang files to replace references to port 80 with port 81, such as changing "Listen 80" to "Listen 81" in httpd.conf and replacing "http://localhost/" with "http://localhost:81/" in wampmanager.tpl.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
48 views1 page
Changing The Port On WAMP
This document provides instructions for changing the default port of 80 to port 81 for a WAMP server. It involves editing the httpd.conf, wampmanager.tpl, testPort.php, and english.lang files to replace references to port 80 with port 81, such as changing "Listen 80" to "Listen 81" in httpd.conf and replacing "http://localhost/" with "http://localhost:81/" in wampmanager.tpl.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Changing the port on WAMP
1. Open the httpd.conf file for the Apache server.
Do a search for Listen 80and replace it with Listen 81.
2. Open the wampmanager.tpl file. On my machine, its located here:
C:\wamp\wampmanager.tpl Do a search for http://localhost/ and replace it with http://localhost:81/ (There are four instances). Do a search for ${w_testPort80} and replace it with ${w_testPort81}. Save and close the file.
3. Open the testPort.php file. On my machine, its located here: C:\wamp\scripts\testPort.php
Do a search for 80 and replace it with 81 (There are three instances). Save and close the file.
4. Open the english.lang file. On my machine, its located here: C:\wamp\lang\english.lang
Do a search for $w_testPort80 = Test Port 80; and replace it with $w_testPort81 = Test Port 81;. Save and close the file.