Trabla: Install Habari 0.9.2 blog engine on windows ( XAMPP 5.6.21 )
Habari /həˈbɑːri/ is a free and open source blog engine written in PHP and currently supports MySQL, SQLite and PostgreSQL for the database backend. It gets its name from the Swahili greeting habari, which means "(what's the) news".
https://en.m.wikipedia.org/wiki/Habari
Watch on YouTube
1. Download and install XAMPP 5.6.21 from official site:
https://www.apachefriends.org/download.html
2. Download Habari 0.9.2 blog engine installer from official site:
http://habariproject.org/en/
3. Create folder \habari XAMPP htdocs folder
C:\xampp\htdocs\habari
and copy all files from downloaded Habari 0.9.2 blog engine .zip source
4. Run XAMPP Control Panel
- start Apache
- start Database
5. Open in browser following url to start Habari 0.9.2 blog engine web installation
http://localhost/habari/
Now we need to create Database for Habari 0.9.2 blog engine
1) Open phpMyAdmin in new browser tab (or window :) ) - http://localhost/phpmyadmin
2) Open SQL tab
3) Execute following query
CREATE DATABASE `habari`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'habari-owner'@'localhost';
CREATE USER 'habari-owner'@'127.0.0.1';
CREATE USER 'habari-owner'@'::1';
SET PASSWORD
FOR 'habari-owner'@'localhost' = PASSWORD('habari123$%');
SET PASSWORD
FOR 'habari-owner'@'127.0.0.1' = PASSWORD('habari123$%');
SET PASSWORD
FOR 'habari-owner'@'::1' = PASSWORD('habari123$%');
GRANT ALL PRIVILEGES ON
`habari`.* TO 'habari-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`habari`.* TO 'habari-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`habari`.* TO 'habari-owner'@'::1' WITH GRANT OPTION;
Go back to Habari 0.9.2 blog engine installation page - fill all fields
( use
database name - habari
user - habari-owner
password ( for user ) -habari123$%
)
click "Check Database Connection"
6. "Site configuration" - type your data and scroll down page - next step will be unlocked.
7. "Theme Selection" - select theme and scroll down - next step will be unlocked.
8. "Plugin Activation" - select plugins - next step will be unlocked.
Click "Install Habari" button.
9. Hooray!!! Installation ready!!!
Enjoy Habari 0.9.2 blog engine.
No comments:
Post a Comment