

What is Drupal
Drupal is a free and open source Content Management System built on PHP, with a modular design allowing features to be added and removed by installing and uninstalling modules, and allowing the entire look and feel of the website to be changed by installing and uninstalling themes. That allows organizing, managing and publishing your content.
System Requirements
- MYSQL 5.1+
- Web Server -(LAMP, XAMPP, Nginx)
- PHP 5.2+
- PHP Composer (latest version)
Drupal Installation
Download the Drupal package (https://www.drupal.org/project/drupal) and copy it to your web server.
(Or)
Install through Composer -> Open command line ,Locate to the web server and run the below command
composer create-project drupal-composer/drupal-project:7.x-dev -n folderName
- Create a empty Database
- Run the drupal on your browser example: http://localhost/folderName/web/
- You can see the Drupal GUI installation step
- Select the profile as Standard and click Save and Continue.
- Choose your language and press Next.
- Setup the Database and click Save and continue
- Configure Site -> Create the Admin credentials and Save.
- Drupal will be installed successfully. Run -> http://localhost/folderName/web/
- You can see the default theme of your site.
- Add your content and publish it.