Install SilverStripe 3.5.0 CMS Framework on windows 7 localhost XAMPP 5.6.28

Trabla:  Install SilverStripe 3.5.0 CMS Framework on windows 7 x64 localhost XAMPP 5.6.28 - opensource PHP CMS / CMF


Install SilverStripe 3.5.0 CMS Framework on windows 7 localhost XAMPP 5.6.28
SilverStripe is a free and open source Content Management System (CMS) and Framework for creating and maintaining websites and web applications. It provides an out of the box web-based administration panel that enables users to make modifications to parts of the website, which includes a WYSIWYG website editor. The core of the software is SilverStripe Framework, a PHP Web application framework. SilverStripe is released under the terms of the BSD License.

Solving:



Watch on YouTube

1. php.ini changes:
- max_execution_time = 600
- display_errors = Off
-  uncomment extension=php_tidy.dll
( remove ; )
- Save + close php.ini

2. Apache config httpd.conf changes:
- Add to the end of file 

<IfModule mpm_winnt_module>
   ThreadStackSize 8388608
</IfModule>

- Save + close

3. SQL script to create database for SilverStripe 3.5.0 used in tutorial:

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

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

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


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

No comments:

Post a Comment