Trabla: Install AnchorCMS 0.12.1 on Windows 7 x64 localhost XAMPP 5.6.28 - opensource PHP blog system
Anchor - is a super-simple, lightweight blog system, made to let you just write. Anchor gives you full freedom over your words. Just write in Markdown or HTML, whatever you prefer.To keep Anchor small, Anchor only support the latest browsers — no more IE6/7/8.
Official Site - https://anchorcms.com/
Solving:
Watch on YouTube
SQL script to create database and user for AnchorCMS 0.12.1, used in tutorial:
CREATE DATABASE `anchor`
DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
CREATE USER 'anchor-owner'@'localhost';
CREATE USER 'anchor-owner'@'127.0.0.1';
CREATE USER 'anchor-owner'@'::1';
SET PASSWORD
FOR 'anchor-owner'@'localhost' = PASSWORD('anchor123$%');
SET PASSWORD
FOR 'anchor-owner'@'127.0.0.1' = PASSWORD('anchor123$%');
SET PASSWORD
FOR 'anchor-owner'@'::1' = PASSWORD('anchor123$%');
GRANT ALL PRIVILEGES ON
`anchor`.* TO 'anchor-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`anchor`.* TO 'anchor-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`anchor`.* TO 'anchor-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment