Install Subrion 4.0.5 on Windows 7 localhost XAMPP 5.6.28 - open source PHP CMS

Trabla: Install Subrion 4.0.5 on Windows 7 x64 localhost XAMPP 5.6.28 - open source PHP content management system ( CMS )


Install Subrion 4.0.5 on Windows 7 localhost XAMPP 5.6.28 - open source PHP CMS

Subrion is a free open source content management system that allows you to build websites for any purpose - from blog to corporate mega portal. Use Subrion framework API to add extra stuff using hooks, plugins, & packages. Plugins and templates are available straight from your admin dashboard with one click installation process.Bring your online presence to a whole new level with the extensive blog functionality that comes in the version by default. Use ready translation or translate the system into your language. Subrion provides all the functionality to become a multilingual solution.
Official Site - http://www.subrion.org/

Solving:



Watch on YouTube


SQL script to create database and user for Subrion CMS 4.0.5 , used in tutorial:

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

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

SET PASSWORD 
FOR 'subrion-owner'@'localhost' = PASSWORD('subrion123$%');
SET PASSWORD 
FOR 'subrion-owner'@'127.0.0.1' = PASSWORD('subrion123$%');
SET PASSWORD 
FOR 'subrion-owner'@'::1' = PASSWORD('subrion123$%');


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



No comments:

Post a Comment