What is the difference between XAMPP or WAMP Server & IIS?

前端 未结 7 2034
离开以前
离开以前 2021-01-30 12:42

I want to know what\'s the main difference between XAMPP or WAMP Server & IIS Server?

相关标签:
7条回答
  • 2021-01-30 13:13

    WAMP: acronym for Windows Operating System, Apache(Web server), MySQL Database and PHP Language.

    XAMPP: acronym for X (any Operating System), Apache (Web server), MySQL Database, PHP Language and PERL.


    XAMPP and WampServer are both free packages of WAMP, with additional applications/tools, put together by different people.

    Their differences are in the format/structure of the package, the configurations, and the included management applications.

    In short: XAMPP supports more OSes and includes more features

    0 讨论(0)
  • 2021-01-30 13:19

    XAMPP is more powerful and resource taking than WAMP.
    WAMP provides support for MySQL and PHP.
    XAMPP provides support for MYSQL, PHP and PERL

    XAMPP also has SSL feature while WAMP doesnt.
    If your applications need to deal with native web apps only, Go for WAMP. If you need advanced features as stated above, go for XAMPP.

    As of priority, you cant run both together with default installation as XAMPP gets a higher priority and it takes up ports. So WAMP cant be run in parallel with XAMPP.

    0 讨论(0)
  • 2021-01-30 13:20

    WAMP [ Windows, Apache, Mysql, Php]

    XAMPP [X-os, Apache, Mysql, Php , Perl ] (x-os : it can be used on any OS )

    Both can be used to easily run and test websites and web applications locally. WAMP cannot be run parallel with XAMPP because with default installation XAMPP gets priority and it takes up ports.

    WAMP easy to setup configuration in. WAMPServer has a graphical user interface to switch on or off individual component softwares while it is running. WAMPServer provide an option to switch among many versions of Apache, many versions of PHP and many versions of MySQL all installed which provide more flexibility towards developing while XAMPPServer doesn't have such an option. If you want to use Perl with WAMP you can configure Perl with WAMPServer http://phpflow.com/perl/how-to-configure-perl-on-wamp/ but it is better to go with XAMPP.

    XAMPP is easy to use than WAMP. XAMPP is more powerful. XAMPP has a control panel from that you can start and stop individual components (such as MySQL,Apache etc.). XAMPP is more resource consuming than WAMP because of heavy amount of internal component softwares like Tomcat , FileZilla FTP server, Webalizer, Mercury Mail etc.So if you donot need high features better to go with WAMP. XAMPP also has SSL feature which WAMP doesn't.(Secure Sockets Layer (SSL) is a networking protocol that manages server authentication, client authentication and encrypted communication between servers and clients. )

    IIS acronym for Internet Information Server also an extensible web server initiated as a research project for for Microsoft NT.IIS can be used for making Web applications, search engines, and Web-based applications that access databases such as SQL Server within Microsoft OSs. . IIS supports HTTP, HTTPS, FTP, FTPS, SMTP and NNTP.

    0 讨论(0)
  • 2021-01-30 13:20

    XAMPP and WAMP are both web server applications for PHP and MYSQL with the apache server. When we consider IIS, it also a web-server like apache runs on windows only.

    XWAMPP/WAMP - Windows,Apache,Mysql,PHP

    IIS - Apache,SQL Server, ASP.NET

    If you like to read more about XWAMPP vs WAMP

    0 讨论(0)
  • 2021-01-30 13:26

    In addition to the above, WAMP supports 64 bit PHP on Windows systems while XAMPP only offers 32 bit versions. This actually made me switch to WAMP on my Windows machine since you need 64 bit PHP 7 to get bigint numbers correctly from MySQL

    0 讨论(0)
  • 2021-01-30 13:32

    WAMP is an acronym for Windows (OS), Apache (web-server), MySQL (database), PHP (language).

    XAMPP and WampServer are both free packages of WAMP, with additional applications/tools, put together by different people. There are also other WAMPs such as UniformServer. And there are commercial WAMPs such as WampDeveloper (what I use).

    Their differences are in the format/structure of the package, the configurations, and the included management applications.

    IIS is a web-server application just like Apache is, except it's made by Microsoft and is Windows only (Apache runs on both Windows and Linux). IIS is also more geared towards using ASP.NET (vs. PHP) and "SQL Server" (vs. MySQL), though it can use PHP and MySQL too.

    0 讨论(0)
提交回复
热议问题