Trabla: Install Backdrop CMS 1.4.3 ( Drupal CMS fork ) on windows ( XAMPP 5.6.21 )
Backdrop CMS is a free and open-source content management system written in PHP and distributed under the GNU General Public License. Backdrop CMS is a fork of the Drupal project. Drupal is used as a back-end framework for a large number of Web sites ranging from personal blogs to corporate and government sites.
Because Backdrop CMS is very similar to Drupal 7 a module that was written for Drupal 7 can be ported to Backdrop CMS far more quickly than to Drupal 8.
https://en.m.wikipedia.org/wiki/Backdrop_CMS
Solving:
1. Download and install XAMPP 5.6.21 from official site:
https://www.apachefriends.org/download.html
2. Download Backdrop CMS 1.4.3 installer from official site:
https://backdropcms.org/
3. Create folder \backdropin XAMPP htdocs folder
C:\xampp\htdocs\backdrop
and copy all files from downloaded Backdrop CMS 1.4.3 .zip source
4. Run XAMPP Control Panel
- open Apache Config->php.ini
- Find in php.ini
max_execution_time=30
change to
max_execution_time=300
and save&close file
- start Apache
- start Database
5. Open in browser following url to start Backdrop CMS 1.4.3 web installation
http://localhost/backdrop
- Click "Save and Continue"
6. "Database Configuration" page
Now we need to create Database for Backdrop CMS 1.4.3
1) Open phpMyAdmin in new browser tab (or window :) ) - http://localhost/phpmyadmin
2) Open SQL tab
3) Execute following query
CREATE DATABASE `backdrop`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'backdrop-owner'@'localhost';
CREATE USER 'backdrop-owner'@'127.0.0.1';
CREATE USER 'backdrop-owner'@'::1';
SET PASSWORD
FOR 'backdrop-owner'@'localhost' = PASSWORD('backdrop123$%');
SET PASSWORD
FOR 'backdrop-owner'@'127.0.0.1' = PASSWORD('backdrop123$%');
SET PASSWORD
FOR 'backdrop-owner'@'::1' = PASSWORD('backdrop123$%');
GRANT ALL PRIVILEGES ON
`backdrop`.* TO 'backdrop-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`backdrop`.* TO 'backdrop-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`backdrop`.* TO 'backdrop-owner'@'::1' WITH GRANT OPTION;
( use
database name - backdrop
user - backdrop-owner
password ( for user ) - backdrop123$%
)
and click "Save and Continue"
7. Installaing....
8. "Configure site" page - type site settings and press "Save and Continue"
Enjoy Backdrop CMS 1.4.3
No comments:
Post a Comment