Hossam Ramadan
Hossam Ramadan

Reputation: 63

Can't start Apache in XAMPP

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

Answers (6)

Mahdi Shahpuri
Mahdi Shahpuri

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

nasim amjad
nasim amjad

Reputation: 1

First open:

Xamp → Configapache (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

hajir.roshani
hajir.roshani

Reputation: 1

Just disable VMware services.

It works for me.

Upvotes: -1

EniGma
EniGma

Reputation: 2464

According to this question, your question may be solved as follows.

Here is the solution step-by-step:

  1. Open up file httpd-ssl.conf in path2xampp\apache\conf\extra

  2. Look for the line "Listen 443"

  3. Change the port number to anything you want. I use 4430. For example, "Listen 4430".

  4. Replace every "443" string in that file with "4430".

  5. Save the file.

Upvotes: 3

donstack
donstack

Reputation: 2715

Change the port of Skype or disable Skype on startup.

Upvotes: 3

Maxim Krizhanovsky
Maxim Krizhanovsky

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

Related Questions