Trabla: Install Drupal 8.1.10 opensource PHP CMS on Windows 7 x64 localhost ( XAMPP 7.0.9 ) - Part 2/2
Drupal /ˈdruːpəl/ is a free and open-source content-management framework ( CMS / CMF ) written in PHP and distributed under the GNU General Public License. It is used as a back-end framework for at least 2.1% of all Web sites worldwide ranging from personal blogs to corporate, political, and government sites. It is also used for knowledge management and business collaboration.
The standard release of Drupal, known as Drupal core, contains basic features common to content management systems. These include user account registration and maintenance, menu management, RSS feeds, taxonomy, page layout customization, and system administration. The Drupal core installation can serve as a simple Web site, a single- or multi-user blog, an Internet forum, or a community Web site providing for user-generated content.
Solving - Part 2 ( Part 1):
Watch on YouTube
7. "Database configuration" page of Drupal 8.1.10 opensource PHP CMS / CMF web installation
Now we need to create Database for Drupal 8.1.10 opensource PHP CMS / CMF
1) Open phpMyAdmin in new browser tab (or window :) ) -
http://localhost/phpmyadmin
2) Open SQL tab
3) Execute following query
CREATE DATABASE `drupal`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'drupal-owner'@'localhost';
CREATE USER 'drupal-owner'@'127.0.0.1';
CREATE USER 'drupal-owner'@'::1';
SET PASSWORD
FOR 'drupal-owner'@'localhost' = PASSWORD('drupal123$%');
SET PASSWORD
FOR 'drupal-owner'@'127.0.0.1' = PASSWORD('drupal123$%');
SET PASSWORD
FOR 'drupal-owner'@'::1' = PASSWORD('drupal123$%');
GRANT ALL PRIVILEGES ON
`drupal`.* TO 'drupal-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`drupal`.* TO 'drupal-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`drupal`.* TO 'drupal-owner'@'::1' WITH GRANT OPTION;
Go back to Drupal 8.1.10 opensource PHP CMS / CMF installation page
- select Database type - "MySQL, MariaDB ... "
- type Database Name - drupal
- type Database Username - drupal-owner
- type Database Password - drupal123$%
- click "Save and continue" button
8. Installing ...
9. "Configure site" page of Drupal 8.1.10 opensource PHP CMS / CMF web installation
- type your data
- scroll down
- click "Save and continue"
Hooray !!! Enjoy Drupal 8.1.10 opensource PHP CMS / CMF !!!
No comments:
Post a Comment