Trabla: Install Tiki Wiki CMS Groupware 15.1 on Windows ( XAMPP 5.6.21 )
Tiki Wiki CMS Groupware or simply Tiki, originally known as TikiWiki, is a free and open source Wiki-based content management system and online office suite written primarily in PHP and distributed under the GNU Lesser General Public License (LGPL) license. In addition to enabling websites and portals on the internet and on intranets and extranets, Tiki contains a number of collaboration features allowing it to operate as a Geospatial Content Management System (GeoCMS) and Groupware web application.
Tiki includes all the basic features common to most CMSs such as the ability to register and maintain individual user accounts within a flexible and rich permission / privilege system, create and manage menus, RSS-feeds, customize page layout, perform logging, and administer the system. All administration tasks are accomplished through a browser-based user interface.
Tiki features an all-in-one design, as opposed to a core+extensions model followed by other CMSs. This allows for future-proof upgrades (since all features are released together), but has the drawback of an extremely large codebase (more than 1,000,000 lines).
Tiki can run on any computing platform that supports both a web server capable of running PHP 5 (including Apache HTTP Server, IIS, Lighttpd, Hiawatha, Cherokee, and nginx) and a MySQL database to store content and settings.
https://en.wikipedia.org/wiki/Tiki_Wiki_CMS_Groupware
Solving:
1. Download and install XAMPP 5.6.21 from official site:
https://www.apachefriends.org/download.html
2. Download Tiki Wiki CMS Groupware 15.1 source files from :
https://tiki.org/Download
3. Create folder \tiki XAMPP htdocs folder
C:\xampp\htdocs\tiki
and copy all files from downloaded Tiki Wiki CMS Groupware 15.1 .zip source
4. Run XAMPP Control Panel
- start Apache
- start Database
5. Open in browser following url to start Tiki Wiki CMS Groupware 15.1 web installation
http://localhost/tiki/tiki-install.php
Click "Continue" button.
6. "Read the license" page - click "Continue"
7. "Review the System Requirements" page - scroll down, click "Continue"
8. "Set the Database Connection" page
Now we need to create Database for Tiki Wiki CMS Groupware 15.1
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 - `tiki`
user(s) -
'tiki-owner'@'localhost'
'tiki-owner'@'127.0.0.1'
'tiki-owner'@'::1'
with password 'tiki123$%'
)
CREATE DATABASE `tiki`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'tiki-owner'@'localhost';
CREATE USER 'tiki-owner'@'127.0.0.1';
CREATE USER 'tiki-owner'@'::1';
SET PASSWORD
FOR 'tiki-owner'@'localhost' = PASSWORD('tiki123$%');
SET PASSWORD
FOR 'tiki-owner'@'127.0.0.1' = PASSWORD('tiki123$%');
SET PASSWORD
FOR 'tiki-owner'@'::1' = PASSWORD('tiki123$%');
GRANT ALL PRIVILEGES ON
`tiki`.* TO 'tiki-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`tiki`.* TO 'tiki-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`tiki`.* TO 'tiki-owner'@'::1' WITH GRANT OPTION;
Go back to Tiki Wiki CMS Groupware 15.1 installarion page - fill all fields
and click "Continue" link
9. "Install" page - click "Install" button
10. "Review the Installation" page - click "Continue" button
11. "Configure the General Settings" page
- scroll down
- set "Disabled" HTTPS login
- disable checkbox "Users can choose to stay .... "
- type admin email
- click "Continue" button
12. "Enter Your Tiki" page - click "Enter Tiki and lock installer"
13. Login as admin
Enjoy Tiki Wiki CMS Groupware 15.1
No comments:
Post a Comment