Showing posts with label OctoberCMS. Show all posts
Showing posts with label OctoberCMS. Show all posts

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

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


Watch on YouTube

7. "Administrator" page of OctoberCMS  opensource PHP CMS   web installation

- type your data
- click "Continue" button

Install OctoberCMS php7 CMS on Windows 7 tutorial 1


8. "Getting started" page of OctoberCMS  opensource PHP CMS   web installation

- click "Start from a theme" button

Install OctoberCMS php7 CMS on Windows 7 tutorial 2



9. "Start from a theme" page of OctoberCMS  opensource PHP CMS   web installation

- choose theme you want
- click "Install" button
- click "Continue" button

Install OctoberCMS php7 CMS on Windows 7 tutorial 3

Install OctoberCMS php7 CMS on Windows 7 tutorial 4

Install OctoberCMS php7 CMS on Windows 7 tutorial 5


10. Installation ... 

Install OctoberCMS php7 CMS on Windows 7 tutorial 6

Install OctoberCMS php7 CMS on Windows 7 tutorial 7

Install OctoberCMS php7 CMS on Windows 7 tutorial 8


11. "Congratulations! " page of OctoberCMS  opensource PHP CMS   web installation

Install OctoberCMS php7 CMS on Windows 7 tutorial 9

- open website, address
http://localhost/octobercms

- open Administration area
http://localhost/octobercms/backend

12. Delete installation folder -

C:\xampp\htdocs\octobercms\install_files\

and file
C:\xampp\htdocs\octobercms\install.php

Install OctoberCMS php7 CMS on Windows 7 tutorial 10


Hooray !!! Enjoy OctoberCMS  opensource PHP CMS  !!!


Install OctoberCMS php7 CMS on Windows 7 tutorial 11

Install OctoberCMS php7 CMS on Windows 7 tutorial 12

Install OctoberCMS php7 CMS on Windows 7 tutorial 13

Install OctoberCMS php7 CMS on Windows 7 tutorial 14

Install OctoberCMS php7 CMS on Windows 7 tutorial 15

Install OctoberCMS php7 CMS on Windows 7 tutorial 16

Install OctoberCMS php7 CMS on Windows 7 tutorial 17

Install OctoberCMS php7 CMS on Windows 7 tutorial 18

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 

Install October CMS on windows

Trabla: Install October CMS on windows ( XAMPP 5.6.21 )


Install October PHP CMS on windows XAMPP 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.

Latest tutorial - Install OctoberCMS on Windows 7 x64 ( XAMPP 7.0.9 + php7 )
https://codingtrabla.blogspot.com/2016/10/install-octobercms-on-windows-7-x64.html



Solving:

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

Install October PHP CMS on windows XAMPP tutorial 1


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

Install October PHP CMS on windows XAMPP tutorial 2

Install October PHP CMS on windows XAMPP tutorial 3


3. Create folder \octobercms XAMPP htdocs folder
C:\xampp\htdocs\octobercms
and copy all files from downloaded October CMS   .zip source

Install October PHP CMS on windows XAMPP tutorial 4


4. Run XAMPP Control Panel 
open php.ini file ( Apache ->  Config-> PHP(php.ini) )
and change value
from
max_execution_time=30
to
max_execution_time=120
+ save file.

Install October PHP CMS on windows XAMPP tutorial 5

Install October PHP CMS on windows XAMPP tutorial 6

Install October PHP CMS on windows XAMPP tutorial 7

- start Apache
- start Database

Install October PHP CMS on windows XAMPP tutorial 8


5. Open in browser following url to start  October CMS   web installation
http://localhost/octobercms/

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

Install October PHP CMS on windows XAMPP tutorial 9

Install October PHP CMS on windows XAMPP tutorial 10


6. "Database" page

Install October PHP CMS on windows XAMPP tutorial 11

Now we need to create Database for    October CMS

1) Open phpMyAdmin in new browser tab (or window :) ) - http://localhost/phpmyadmin
2) Open SQL tab
3) Execute following query

Install October PHP CMS on windows XAMPP tutorial 12

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 October PHP CMS on windows XAMPP tutorial 13


Install October PHP CMS on windows XAMPP tutorial 14


Go back  to October CMS installation page

- type Database Name - octobercms
- type MySQL Login - octobercms-owner
- type MySQL Password- octobercms123$%
- click "Continue" button

Install October PHP CMS on windows XAMPP tutorial 15


7. "Administrator" page

- type your admin credentials
- click "Continue" button

Install October PHP CMS on windows XAMPP tutorial 16


8. "Getting started" page

- select option you need. "Start from the theme" is used in this tutorial.
- select theme
- confirm selection

Install October PHP CMS on windows XAMPP tutorial 17

Install October PHP CMS on windows XAMPP tutorial 18

Install October PHP CMS on windows XAMPP tutorial 19


9. Installation ...

Install October PHP CMS on windows XAMPP tutorial 20


10. Installation completed.

Install October PHP CMS on windows XAMPP tutorial 21


11. Post-installation steps

- delete file install.php , full path C:\xampp\htdocs\octobercms\install.php
- delete folder \install_files full path C:\xampp\htdocs\octobercms\install_files

Install October PHP CMS on windows XAMPP tutorial 22

Install October PHP CMS on windows XAMPP tutorial 23

Enjoy  October CMS  !!!

Site Url: http://localhost/octobercms

Install October PHP CMS on windows XAMPP tutorial 24

Install October PHP CMS on windows XAMPP tutorial 25


Administrator Url: http://localhost/octobercms/backend

Install October PHP CMS on windows XAMPP tutorial 26


Install October PHP CMS on windows XAMPP tutorial 27

Install October PHP CMS on windows XAMPP tutorial 28

Install October PHP CMS on windows XAMPP tutorial 29

Install October PHP CMS on windows XAMPP tutorial 30