Skip to main content

Using IIS and XAMPP together

I am ASP.NET developer as well as a PHP developer. I have my visual studio installed in my laptop to work on asp.net/.NET and now I need to install XAMPP to work on PHP, MySQL, Apache and Perl. By default IIS uses port 80 and 443 for HTTP and HTTPS, and Apache also uses the same ports as IIS. Now to solve the conflict of ports there is only two way:
  1. Change IIS config – the hardest way
  2. Change Apache config – the easiest way
I choose to go with second option, and which is lot more easier. I installed XAMPP in my drive D:

I need to configure Apache to listen to port 8080.
  1. Edit file D:/xampp/apache/conf/httpd.config
  2. Find "Listen 80" and change it to "Listen 8080"
  3. Find "ServerName localhost:80" and change it to "ServerName localhost:8080"
Now I need to configure for SSL/HTTPS.
  1. Edit file D:/xampp/apache/conf/extra/httpd-ssl.conf
  2. Find "Listen 443" and change it to "Listen 4499"
  3. Find "VirtualHost _default_:443" and change it to "VirtualHost _default_:4499"
  4. Find "ServerName localhost:443" and change it to "ServerName localhost:4499"
Well that’s it, now apache is listening to port number 8080 and HTTPS/SSL is listening to port number 4499. You can assign any port number for respective apache HTTP and apache HTTPS/SSL.

Lastly make sure that you request XAMPP apache by specifying the port number i.e. http://localhost:8080. If not the request will be redirected to IIS, since it is listening on default port.

Comments

Popular posts from this blog

Clear Zimbra Mail Queue

If you want to clear mail queue from specific email address run the following command in your terminal. Below will remove mail queues, by checking FROM sender. eg. remove all mail queues sent by info@example.com /opt/zimbra/postfix/sbin/mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { if ($7 == "info@example.comt") print $1 } ' | tr -d '*!' | xargs -rn1 /opt/zimbra/postfix/sbin/postsuper -d Below will remove mail queues, by checking TO sender. eg. remove all mail queues sent to info@example.com /opt/zimbra/postfix/sbin/mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { if ($8 == "info@example.comt") print $1 } ' | tr -d '*!' | xargs -rn1 /opt/zimbra/postfix/sbin/postsuper -d

Zimbra Mail Error: not enough free space in mail queue

If you are using Zimbra Mail and you are not able to send any mails and also you see an Error Message " not enough free space in mail queue " under /var/log/message. Then you should try out this solution. 1. Login to the server, and then again login as zimbra as follows: #su - zimbra 2. Check the Postfix message_size_limit, by default it should be 10MB (i.e. '10240000' bytes) as follows: $postconf message_size_limit message_size_limit = 10240000 3. If the value is higher than that, set it as follows to 10MB $ zmprov modifyConfig zimbraMtaMaxMessageSize 10240000 $ postfix reload Now try sending Mail, It should work. You could try out this solution for Error: " SMTP Server Reported: 452 4.3.1 Insufficient System Storage "