Install Chyrp 2017.1 on Windows 7 localhost via XAMPP 5.6.30 - opensource PHP tumbleblog CMS

Trabla: Install Chyrp 2017.1 on Windows 7 localhost via XAMPP 5.6.30 - opensource PHP tumbleblog CMS

Install Chyrp 2017.1 on Windows 7 localhost via XAMPP 5.6.30 - opensource PHP tumbleblog CMS


Chyrp Lite makes it possible to host a blog on your own web server with minimal fuss. You can have a traditional blog, a tumbleblog, or you can add oodles of customisation and build a web publishing platform with blogging features on the side.
With a flexible system of Feathers and Pages, you can make your website whatever you want it to be. Feathers enable different types of blog content – you can restrict yourself to absolute textual purity, or you can create a multimedia rainbow. Pages let you publish articles separate from your blog content – be it a simple colophon or a hierarchy of multiple pages, optionally including a homepage that your visitors will see when they first arrive at your website.
You get four beautiful blog themes and a friendly administration console, all fully navigable on a broad range of devices, thanks to the power of responsive HTML5. Semantic markup and comprehensive ARIA labelling ensure your blog will be accessible to visitors who use assistive technologies.

Chyrp Blog Engine Official Page  - http://chyrplite.net/


Solving:



Watch on YouTube

SQL script to create database  for Chyrp 2017.1 blog cms , used in tutorial:


CREATE DATABASE `chyrp` 
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'chyrp-owner'@'localhost'; 
CREATE USER 'chyrp-owner'@'127.0.0.1';
CREATE USER 'chyrp-owner'@'::1';

SET PASSWORD 
FOR 'chyrp-owner'@'localhost' = PASSWORD('chyrp123');
SET PASSWORD 
FOR 'chyrp-owner'@'127.0.0.1' = PASSWORD('chyrp123');
SET PASSWORD 
FOR 'chyrp-owner'@'::1' = PASSWORD('chyrp123');


GRANT ALL PRIVILEGES ON 
`chyrp`.* TO 'chyrp-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`chyrp`.* TO 'chyrp-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`chyrp`.* TO 'chyrp-owner'@'::1' WITH GRANT OPTION;




No comments:

Post a Comment