Install OctoberCMS on Windows 7 x64 ( XAMPP 7.0.9 + php7 ) - Part 1/2

Trabla: Install OctoberCMS on Windows 7 x64 ( XAMPP 7.0.9 + php7 ) - opensource PHP content management system - Part 1/2

Install OctoberCMS php7 CMS on Windows 7 tutorial


 OctoberCMS - is a free, open-source, self-hosted CMS platform based on the Laravel PHP Framework. A simple and modular CMS that grows with you, with a precise and beautiful interface that comes as second nature.

This tutorial explains how to install OctoberCMS on Windows 7 x64 operating system using XAMPP 7.0.9 with apache, php7 and MariaDB ( MySQL clone ).

Solving - Part 1 ( Part 2 ):


Watch on YouTube

1.  Download and install XAMPP 7.0.9 from official site:
https://www.apachefriends.org/download.html

Install OctoberCMS php7 CMS on Windows 7 tutorial 1


2.  Download October CMS   installer from official site:
https://octobercms.com/

Install OctoberCMS php7 CMS on Windows 7 tutorial 2

Install OctoberCMS php7 CMS on Windows 7 tutorial 3



3. Create folder \octobercms XAMPP htdocs folder

C:\xampp\htdocs\octobercms

and copy all files from downloaded October CMS   .zip source

Install OctoberCMS php7 CMS on Windows 7 tutorial 4


4. Run XAMPP Control Panel 

open php.ini file ( Apache ->  Config-> PHP(php.ini) )

Install OctoberCMS php7 CMS on Windows 7 tutorial 5

- change max_execution_time value
from max_execution_time=30 to max_execution_time=600

Install OctoberCMS php7 CMS on Windows 7 tutorial 6

- save  & close php.ini
- start Apache
- start Database

Install OctoberCMS php7 CMS on Windows 7 tutorial 7


5. Open in browser following url to start  OctoberCMS   web installation

http://localhost/octobercms/

"System Check & License Agreement" page
- scroll down
- click "Agree & Continue"

Install OctoberCMS php7 CMS on Windows 7 tutorial 8

Install OctoberCMS php7 CMS on Windows 7 tutorial 9

Install OctoberCMS php7 CMS on Windows 7 tutorial 10


6.  "Database" page of OctoberCMS   web installation

Install OctoberCMS php7 CMS on Windows 7 tutorial 11

Install OctoberCMS php7 CMS on Windows 7 tutorial 12

Now we need to create Database for OctoberCMS  opensource PHP CMS

1) Open phpMyAdmin in new browser tab (or window :) ) -

 http://localhost/phpmyadmin

2) Open SQL tab
3) Execute following query

Install OctoberCMS php7 CMS on Windows 7 tutorial 13


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

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

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


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

Install OctoberCMS php7 CMS on Windows 7 tutorial 14

Install OctoberCMS php7 CMS on Windows 7 tutorial 15

Go back  to OctoberCMS  opensource PHP CMS installation page

- type Database Name -  octobercms
- type MySQL Login -  octobercms-owner
- type MySQL Password octobercms123$%

- click "Administator>" button

Install OctoberCMS php7 CMS on Windows 7 tutorial 16


NEXT - Part 2 

No comments:

Post a Comment