• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install Tiki Wiki CMS on Ubuntu 19.04

  • 00:44 lsb_release -a
  • 01:00 mysql -u root -p
  • 02:17 wget https://excellmedia.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
  • 02:35 unzip tiki-18.2.zip
  • 02:46 mv tiki-18.2 /var/www/tiki
  • 02:58 chown -R www-data.www-data /var/www/tiki
  • 03:13 chmod -R 755 /var/www/tiki
  • 03:26 vim /etc/apache2/sites-available/tiki.conf
  • 04:41 a2dissite 000-default.conf
  • 04:53 a2ensite tiki.conf
  • 05:02 a2enmod rewrite
  • 05:11 systemctl restart apache2
5574

Installation of Tiki Wiki CMS on Ubuntu 19.04

Tiki Wiki is a free and open source Wiki-based Content Management System written in PHP. It contains a number of collaboration features and acts as a Geospatial Content Management System (GeoCMS). It also contains some basic features of a CMS and maintains individual user accounts within a flexible and rich privilege system, RSS feeds and customize page layout. In this tutorial, we will cover the installation of Tiki Wiki CMS Groupware on Ubuntu 19.04.

Requirements for Tiki Wiki CMS:

Apache

MySQL

PHP and its modules

(php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear)

Installation procedure

Before you begin the installation process, Check the Ubuntu version by using the following command.

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 19.04
Release:	19.04
Codename:	disco

Configure the MySQL database. Log into MySQL as a root user and make the necessary settings.

root@linuxhelp:~# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.26-0ubuntu0.19.04.1 (Ubuntu)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create database tiki;
Query OK, 1 row affected (0.03 sec)

mysql> create user 'tikiuser'@localhost identified by 'Linuxc#4';
Query OK, 0 rows affected (0.09 sec)

mysql> grant all privileges on tiki.* to 'tikiuser'@localhost;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.07 sec)

mysql> exit
Bye

Once the database configuration is done, Download the installation package of Tiki Wiki CMS by using the wget command. The link is given in the command.

root@linuxhelp:~# wget https://excellmedia.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
--2019-05-09 14:41:31--  https://excellmedia.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 53235353 (51M) [application/octet-stream]
Saving to: ‘tiki-18.2.zip’

tiki-18.2.zip               100%[==========================================>]  50.77M   342KB/s    in 2m 46s  

2019-05-09 14:44:20 (313 KB/s) - ‘tiki-18.2.zip’ saved [53235353/53235353]

Once the download is completed extract the downloaded package using unzip command.

root@linuxhelp:~# unzip tiki-18.2.zip 
Archive:  tiki-18.2.zip
   creating: tiki-18.2/
  inflating: tiki-18.2/tiki-print_pages.php  
  inflating: tiki-18.2/tiki-list_trackers.php  
  inflating: tiki-18.2/tiki-file_archives.php  
  inflating: tiki-18.2/tiki-user_assigned_modules.php  
  inflating: tiki-18.2/tiki-assignuser.php  
.
.
.
  inflating: tiki-18.2/vendor_extra/anythingslider-themes/images/polished.png  
   creating: tiki-18.2/vendor_extra/webodf/
  inflating: tiki-18.2/vendor_extra/webodf/webodf.js  
  inflating: tiki-18.2/vendor_extra/index.php  
  inflating: tiki-18.2/tiki-minichat_ajax.php  

Move the Tiki Wiki cms directory to apache root directory

root@linuxhelp:~# mv tiki-18.2 /var/www/tiki

Set the ownership and permission for Tiki Wiki CMS by using the following command.

root@linuxhelp:~# chown -R www-data.www-data /var/www/tiki
root@linuxhelp:~# chmod -R 755 /var/www/tiki

Configure the virtualhost for accessing the Tiki Wiki CMS.

root@linuxhelp:~# vim /etc/apache2/sites-available/tiki.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/tiki
<directory /var/www/tiki>
allowoverride all
allow from all
</directory>
</Virtualhost>

Disable the default site access.

root@linuxhelp:~# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
  systemctl reload apache2

Enable the site access for accessing the Tiki Wiki CMS.

root@linuxhelp:~# a2ensite tiki.conf
Enabling site tiki.
To activate the new configuration, you need to run:
  systemctl reload apache2

Enable the rewrite module.

root@linuxhelp:~# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
  systemctl restart apache2

Restart the apache service by using the following command.

root@linuxhelp:~# systemctl restart apache2

Switch to your browser and enter the domain name. snap1 Welcome document of Tiki wiki CMS and select the required language. snap2 Accept the license agreement. snap3 Verify the requirements Lepton CMS. snap4 Configure the database detail snap5 And then choose the database type to proceed with the installation. snap6 After the installation is completed you will see the following page as shown below. snap7

Next, configure the site information and Admin user credential setup. snap8 snap9 You will see that last note of Tiki Wiki CMS. snap10 After all the configuration setup is done, you will see the following page, proceed further. snap11 Create your admin password after the installation complete and login into Tiki Wiki CMS. snap12 After verifying all the configuration setup you can start the Tiki Wiki CMS. snap13 This is the dashboard of Tiki Wiki CMS. snap14 With this, this tutorial on the method to install Tiki Wiki CMS on Ubuntu 19.04 comes to an end.

Tags:
jacob
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is the use of Tiki Wiki CMS?

A

Tiki Wiki is a free and open source Wiki-based Content Management System written in PHP. It contains a number of collaboration features and acts as a Geospatial Content Management System (GeoCMS). It also contains some basic features of a CMS and maintains individual user accounts within a flexible and rich privilege system, RSS feeds and customize page layout.

Q

How to entry to the hosts file for Tiki Wiki CMS?

A

use the following command to enter the host file # vim /etc/hosts.

Q

Where to download the package of Tiki wiki in ubuntu?

A

Download a Tiki wiki package using the following URL "wget https://excellmedia.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip".

Q

What are the requirements for Tiki Wiki CMS?

A

These are the requirements for Tiki Wiki CMS, Apache,MySQL and PHP and its modules.

Q

What are the php modules required for Tiki Wiki CMS?

A

These are the required modules for tiki wiki cms, php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear

Related Tutorials in How to Install Tiki Wiki CMS on Ubuntu 19.04

Related Tutorials in How to Install Tiki Wiki CMS on Ubuntu 19.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018

Related Forums in How to Install Tiki Wiki CMS on Ubuntu 19.04

Related Forums in How to Install Tiki Wiki CMS on Ubuntu 19.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to Install Tiki Wiki CMS on Ubuntu 19.04

Related News in How to Install Tiki Wiki CMS on Ubuntu 19.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Owen ?
How to add SSH key to my Gitlab account

I need to add the SSH key in my gitlab account. How to do so ????

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.