Trabla: Install CMS Made Simple 2.1.4 on Windows ( XAMPP 5.6.21 )
CMS Made Simple (CMSMS) is a free, open source (GPL) content management system (CMS) to provide developers, programmers and site owners a web-based development and administration area. CMS Made Simple is an open source package, built using PHP with support for MySQL. The template system is driven using the Smarty Template Engine. CMS Made Simple aims to provide easy development and customization with themes, add-on modules, dynamic menus, tags and translations.
https://en.wikipedia.org/wiki/CMS_Made_Simple
Solving:
1. Download and install XAMPP 5.6.21 from official site:
https://www.apachefriends.org/download.html
2. Download CMS Made Simple (CMSMS ) 2.1.4 installer from official site:
http://www.cmsmadesimple.org/downloads/
( e. g. cmsms-2.1.4-install.expanded.zip )
3. Create 2 folders - \cmsms and \cmsms_installer in XAMPP htdocs folder
C:\xampp\htdocs\cmsms
C:\xampp\htdocs\cmsms_installer
Copy all files from downloaded CMS Made Simple (CMSMS ) 2.1.14 installer
into \cmsms_installer folder
4. Run XAMPP Control Panel
- start Apache
- start Database
5. Open in browser following url to start CMS Made Simple (CMSMS ) 2.1.4 installation
http://localhost/cmsms_installer
- Select destination directory "C:\xampp\htdocs\cmsms"
- Click "Next" button
6. "Step 2 - Detect existing software" page - click "Next" button
7. "Step 3 - Tests" - click "Next" button
8. "Step 4 - Basic Configuration Information" page
Lets create new user and database for CMS Made Simple (CMSMS ) 2.1.4:
1) Open phpMyAdmin in new browser tab (or window :) ) - http://localhost/phpmyadmin
2) Open SQL tab
3) Execute following query
( our database name will be - `cmsms-db`
user(s) -
'cmsms-db-owner'@'localhost'
'cmsms-db-owner'@'127.0.0.1'
'cmsms-db-owner'@'::1'
with password 'CMSMdSmpl123$%'
)
CREATE DATABASE `cmsms-db`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'cmsms-db-owner'@'localhost';
CREATE USER 'cmsms-db-owner'@'127.0.0.1';
CREATE USER 'cmsms-db-owner'@'::1';
SET PASSWORD
FOR 'cmsms-db-owner'@'localhost' = PASSWORD('CMSMdSmpl123$%');
SET PASSWORD
FOR 'cmsms-db-owner'@'127.0.0.1' = PASSWORD('CMSMdSmpl123$%');
SET PASSWORD
FOR 'cmsms-db-owner'@'::1' = PASSWORD('CMSMdSmpl123$%');
GRANT ALL PRIVILEGES ON
`cmsms-db`.* TO 'cmsms-db-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`cmsms-db`.* TO 'cmsms-db-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`cmsms-db`.* TO 'cmsms-db-owner'@'::1' WITH GRANT OPTION;
Go back to CMS Made Simple (CMSMS ) 2.1.4 installarion page - fill all fields
( use
database name - cmsms-db
user - cmsms-db-owner
password ( for user ) - CMSMdSmpl123$%
)
and click "Next"
9. "Step 5 - Admin Account Info" page - enter data ans click "Next" button
10. "Step 6 - Site Settings" page - enter site name, select additional lang ( if needed ) and
press "Next"
11. "Step 7 - Install Application files " page - press "Next"
12. "Step 8 - Database Work " page - press "Next"
13. Hooray!!! Installation done!!!
14. Delete installer folder http://localhost/cmsms_installer
Enjoy CMS Made Simple (CMSMS ) 2.1.4 !!!
No comments:
Post a Comment