Skip to main content

Posts

Showing posts with the label IIS7

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: Change IIS config – the hardest way 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. Edit file D:/xampp/apache/conf/httpd.config Find "Listen 80" and change it to "Listen 8080" Find "ServerName localhost:80" and change it to "ServerName localhost:8080" Now I need to configure for SSL/HTTPS. Edit file D:/xampp/apache/conf/extra/httpd-ssl.conf Find "Listen 443" and change it to "Listen 4499" Find "VirtualHost _default_:443...

Install IIS7 to work with MS SQL Server 2005 on Vista/Win7

You need to enable the following features to make your MS SQL Server 2005 work with Vista/Windows 7 before installing MS SQl Server 2005. Here is the list of IIS 7 role services that need to be installed: Start 1. Control Panel 2. Programs and Features 3. Turn Windows features on or off 4. Enable Enable various features of IIS 1. Web management tools 1.1. IIS 6 Management Compatibility 1.1.1. IIS 6 WMI Compatibility 1.1.2. IIS Metabase and IIS 6 configuration compatibility 2. World Wide Web Services 2.1. Application Development Features 2.1.1. .NET Extensibility 2.1.2. ASP.NET 2.1.3. ISAPI Extensions 2.1.4. ISAPI Filters 2.2 Common Http Features 2.2.1. Default Document 2.2.2. Directory Browsing 2.2. 3. HTTP Redirection ...