Wednesday, January 21, 2015

Xampp Apache is not running

Error:

 Problem is apache port is being blocked by some other application, most probably it is skype if you have installed one. Error comes when you first start skype and the apache.

We can check the problem if run the batch file apache_start.bat in C:\xampp.

Solution:

1. Goto C:\xampp\apache\conf  and change port no 80 to 81 in 'httpd.conf' file and save it.         Make sure to put a copy of the file to unexpected error.

2. Goto C:\xampp\apache\conf\extra and open 'httpd-ssl.conf' change Listen 444 to Listen          443  and <VirtualHost _default_:444> to <VirtualHost _default_:443>

3. Save and close.

Related Posts:

  • C# interview Questions and Answers What are the new features introduced in c# 4.0?This question is basically asked to check, if you are passionate about catching up with latest technological advancements. The list below shows a few of the new features introdu… Read More
  • Importent ASP.NET question and answers What are page directives?The first line of an ASP.NET page is the page directive; you will find it on all ASP.NET pages. These directives are instructions for the page. It begins with the @Page directive and continues with t… Read More
  • What's the difference between a primary key and a unique key? Primary key and Unique key enforces uniqueness of the column on which they are defined.The difference between primary key and unique are  below. Primary Key can't accept null values but where as unique key can accept nu… Read More
  • ASP.Net Interview Question and Answer 1.) What is asp.net life cycle ?  Life Cycle EventsPreInitThe properties like IsPostBack have been set at this time.This event will be used when we want to: Set master page dynamically. Set theme dynamically. Read o… Read More
  • How you can disable session? If we set session Mode="off" in web.config, session will be disabled in the application. For this, we need to configure web.config the following way: Code: <configuration>  <sessionstate  Mode… Read More

1 comment: