OVERVIEW
XAMPP is a free and open-source cross-platform web server solution stack package developed by Apache Friends, consisting mainly of the Apache HTTP Server, MariaDB database, and interpreters for scripts written in the PHP and Perl programming languages. Since most actual web server deployments use the same components as XAMPP, it makes transitioning from a local test server to a live server possible.
XAMPP's ease of deployment means a WAMP or LAMP stack can be installed quickly and simply on an operating system by a developer, with the advantage that common add-in applications such as WordPress and Joomla! can also be installed
GOALS
One-click launch
Easy configurable AMI with pre-installed XAMPP Server
INSTALLATION VIA AWS MARKETPLACE
Kindly click on the below link to install the server via AWS Marketplace:
Pending ..
GET STARTED
XAMPP is a AMP stack which stands for Cross platform, Apache, MySQL, PHP, perl with some additional administrative software tools such as PHPMyAdmin (for database access), FileZilla FTP server, Mercury mail server and JSP Tomcat server.
To verify the installation, follow the below instructions
After installation XAMPP icon is clearly visible on the right side of start menu. Show or Hide can be set by using the control panel by clicking on the icon.
To start Apache and MySql, just click on the Start button on the control panel.
Step 2. Test your PHP Installation
Go to C:/xampp/htdocs/ folder
Create a file with .php extension (test.php) and type or copy the below code and save it.
<?php
phpinfo();
?>
3. Open browser and go to “http://localhost/test.php”
4. Type You should see the following php information page:
Comentarios