Ticker

6/recent/ticker-posts

How to fix a Blocked Port in XAMPP? by ShanTech

How to fix a Blocked Port in XAMPP
The error you’re getting probably reads something like this:
[Apache] Status change detected: running
[Apache] Status change detected: stopped
[Apache] Error: Apache shutdown unexpectedly.
[Apache] This may be due to a blocked port, missing dependencies,
[Apache] improper privileges, a crash, or a shutdown by another method.
[Apache] Press the Logs button to view error logs and check
[Apache] the Windows Event Viewer for more clues
[Apache] If you need more help, copy and post this
[Apache] entire log window on the forums


The chances are the error is due to a blocked port and that’s almost definitely port 80. One option would be to find the application that is using port 80 (probably Skype) and change it to use some other port. But you may not have control of that. In that case, you can change Apache to use a different port. Here’s how:

In the XAMPP Control panel, click on Config:

XAMPP Config
Change the editor to something better than Notepad. I use TextPad:
XAMPP Editor

Click on Config by Apache and select httpd.conf:
XAMPP Apache Config
Find “Listen 80” and change it to “Listen 8080”.
Find “ServerName localhost:80” and change it to “ServerName localhost:8080”.
If you’re also running SSL, you’ll need to change httpd-ssl.conf:
XAMPP Apache Config SSL
Find “Listen 443” and change it to “Listen 4433”.
Find “” and change it to “”.
Find “ServerName localhost:443”. It’s possible that this hasn’t been set up yet and it reads “ServerName www.example.com:443”. In any case, change it to “ServerName localhost:4443”.
In the Control Panel, click on the main Config button again.
Click on Service and Port Settings.
Change the Main Port to 8080 and the SSL Port 4433.
Close out of Configuration.
Stop and Start Apache.
Click the Admin button by Apache and it should open up the XAMPP home page in your browser.

I hope that helps if not
Video tutorial

Post a Comment

0 Comments