Trabla: Install Pagekit 1.0.9 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP content management system ( CMS )
Pagekit - a modern Open Source CMS Intuitive. Modular. Flexible. With Pagekit you can create powerful content for the web that works perfectly on every device. Pagekit's clean and intuitive interface allows you to focus on what matters most, managing your content. Pagekit's modular and extendable architecture is built on top of Symfony components. The de facto standard for modern PHP applications. User interface is powered by Vue.js JavaScript framework.
Official Site - https://pagekit.com/
Solving:
Watch on YouTube
SQL script to create database and user for Pagekit 1.0.9, used in tutorial:
CREATE DATABASE `pagekit`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'pagekit-owner'@'localhost';
CREATE USER 'pagekit-owner'@'127.0.0.1';
CREATE USER 'pagekit-owner'@'::1';
SET PASSWORD
FOR 'pagekit-owner'@'localhost' = PASSWORD('pagekit123$%');
SET PASSWORD
FOR 'pagekit-owner'@'127.0.0.1' = PASSWORD('pagekit123$%');
SET PASSWORD
FOR 'pagekit-owner'@'::1' = PASSWORD('pagekit123$%');
GRANT ALL PRIVILEGES ON
`pagekit`.* TO 'pagekit-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`pagekit`.* TO 'pagekit-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`pagekit`.* TO 'pagekit-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment