Reputation: 63
I have a problem when I'm trying to start the Apache module in XAMPP localhost. When I click start, I get this:
3:26:33 PM [Apache] Problem detected!
3:26:33 PM [Apache] Port 80 in use by "C:\Program Files (x86)\Skype\Phone\Skype.exe" with PID 1680!
3:26:33 PM [Apache] Apache WILL NOT start without the configured ports free!
3:26:33 PM [Apache] You need to uninstall/disable/reconfigure the blocking application
3:26:33 PM [Apache] or reconfigure Apache and the Control Panel to listen on a different port
3:26:33 PM [Apache] Problem detected!
3:26:33 PM [Apache] Port 443 in use by "C:\Program Files (x86)\Skype\Phone\Skype.exe" with PID 1680!
3:26:33 PM [Apache] Apache WILL NOT start without the configured ports free!
3:26:33 PM [Apache] You need to uninstall/disable/reconfigure the blocking application
3:26:33 PM [Apache] or reconfigure Apache and the Control Panel to listen on a
different port 3:26:33 PM [Apache] Attempting to start Apache app...
3:26:33 PM [Apache] Status change detected: running
Upvotes: 4
Views: 33265
Reputation: 15
On Windows, you must stop all running processes referring to Skype in Task Manager or by cmd:
tasklist
then
Taskkill /PID 1680 /F
After that, go to the xampp
folder, run apache-stop.exe and then run apache-start.exe
.
That executed cmd command and its result are helpful to get what error you actually have.
Upvotes: 0
Reputation: 1
First open:
Xamp → Config → apache (httpd.config) → change port: 8080
Then
ServerName localhost:8080
Then save. Again click
Config → httpd-ssl.config* → Listen 4433 → <VirtualHost _default_:4433>
Then save and now press start
Upvotes: 0
Reputation: 2464
According to this question, your question may be solved as follows.
Here is the solution step-by-step:
Open up file httpd-ssl.conf in path2xampp\apache\conf\extra
Look for the line "Listen 443"
Change the port number to anything you want. I use 4430. For example, "Listen 4430".
Replace every "443" string in that file with "4430".
Save the file.
Upvotes: 3
Reputation: 26699
You have to disable port 80 in Skype's connection settings, restart Skype, and then you can use your Apache server.
Upvotes: 1