Trabla: Install Bolt CMS v3.2.3 on Windows 7 x64 localhost XAMPP 5.6.28 - opensource PHP content management system ( CMS )
Bolt is an open source Content Management Tool, which strives to be as simple and straightforward as possible. It is quick to set up, easy to configure, uses elegant templates, and above all: It’s a joy to use.
Official Site - https://bolt.cm/
Solving:
Watch on YouTube
max_execution_time = 600
2. XAMPP Apache httpd.conf changes, used in tutorial:
- set DocumentRoot
DocumentRoot "C:\xampp\bolt\public"
- add following text, after DocumentRoot
<Directory "C:\xampp\bolt\public">
AllowOverride All
Require all granted
</Directory>
3. SQL script to create database and user for Bolt CMS, used in tutorial:
CREATE DATABASE `bolt`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'bolt-owner'@'localhost';
CREATE USER 'bolt-owner'@'127.0.0.1';
CREATE USER 'bolt-owner'@'::1';
SET PASSWORD
FOR 'bolt-owner'@'localhost' = PASSWORD('bolt123');
SET PASSWORD
FOR 'bolt-owner'@'127.0.0.1' = PASSWORD('bolt123');
SET PASSWORD
FOR 'bolt-owner'@'::1' = PASSWORD('bolt123');
GRANT ALL PRIVILEGES ON
`bolt`.* TO 'bolt-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`bolt`.* TO 'bolt-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`bolt`.* TO 'bolt-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment