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

How to Install Textpattern CMS 4.7.3 on Ubuntu 18.10

  • 00:57 lsb_release -a
  • 01:11 mysql -u root -p
  • 02:35 wget https://github.com/textpattern/textpattern/archive/4.7.3.zip
  • 02:50 unzip 4.7.3.zip
  • 03:10 mv textpattern-4.7.3 /var/www/textpattern
  • 03:29 chown -R www-data.www-data /var/www/textpattern
  • 03:46 chmod -R 755 /var/www/textpattern
  • 04:04 vim /etc/apache2/sites-available/textpattern.conf
  • 04:57 a2dissite 000-default.conf
  • 05:14 a2ensite textpattern.conf
  • 05:27 a2enmod rewrite
  • 05:37 systemctl restart apache2
  • 06:30 cd /var/www/textpattern/textpattern/
  • 06:39 vim config.php
  • 06:56 systemctl restart apache2
5501

Installation of textpattern cms 4.7.3 on Ubuntu 18.10

Requirements for textpattern cms:

Apache
Mysql
Php and its modules

Installation procedure

You need to configure the LAMP setup For the Installation of textpattern CMS If you dont have the Lamp setup Refer Here

Check the Ubuntu version by using the following command

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

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 2
Server version: 5.7.25-0ubuntu0.18.10.2 (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 textpattern;
Query OK, 1 row affected (0.01 sec)
mysql> create user 'textuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.05 sec)
mysql> grant all privileges on textpattern.* to 'textuser'@localhost;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye

Once the database configuration is done,Download the Textpattern cms with the help of the following command.

root@linuxhelp:~# wget https://github.com/textpattern/textpattern/archive/4.7.3.zip
--2019-04-23 20:41:51--  https://github.com/textpattern/textpattern/archive/4.7.3.zip
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/textpattern/textpattern/zip/4.7.3 [following]
--2019-04-23 20:41:52--  https://codeload.github.com/textpattern/textpattern/zip/4.7.3
Resolving codeload.github.com (codeload.github.com)... 192.30.253.120, 192.30.253.121
Connecting to codeload.github.com (codeload.github.com)|192.30.253.120|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘4.7.3.zip’
4.7.3.zip                       [                              <=>         ]   1.75M   296KB/s    in 12s     
2019-04-23 20:42:06 (153 KB/s) - ‘4.7.3.zip’ saved [1830888]

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

root@linuxhelp:~# unzip 4.7.3.zip
Archive:  4.7.3.zip
f159fd60f5cc4410ed1a5ada708826f9d3bf3990
   creating: textpattern-4.7.3/
  inflating: textpattern-4.7.3/.htaccess  
  inflating: textpattern-4.7.3/HISTORY.txt  
  inflating: textpattern-4.7.3/LICENSE.txt  
  inflating: textpattern-4.7.3/README.txt  
  inflating: textpattern-4.7.3/css.php
.
.
.
  creating: textpattern-4.7.3/textpattern/vendors/jquery/jquery/
  inflating: textpattern-4.7.3/textpattern/vendors/jquery/jquery/LICENSE.txt  
  inflating: textpattern-4.7.3/textpattern/vendors/jquery/jquery/jquery.js  
   creating: textpattern-4.7.3/themes/
  inflating: textpattern-4.7.3/themes/.htaccess  
finishing deferred symbolic links:
  textpattern-4.7.3/sites/site1/admin/admin-themes -> ../../../textpattern/admin-themes
  textpattern-4.7.3/sites/site1/admin/textpattern.js -> ../../../textpattern/textpattern.js
  textpattern-4.7.3/sites/site1/admin/vendors -> ../../../textpattern/vendors

List out the details

root@linuxhelp:~# ls
4.7.3.zip  textpattern-4.7.3

Move the textpattern cms directory to apache root directory

root@linuxhelp:~# mv textpattern-4.7.3 /var/www/textpattern

Set the ownership and permission for textpattern cms by using the following command

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

Configure the virtualhost for accesing the textpattern cms

root@linuxhelp:~# vim /etc/apache2/sites-available/textpattern.conf
<Virtualhost *:80>
        servername www.linuxhelp1.com
        documentroot /var/www/textpattern
</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 textpattern cms

root@linuxhelp:~# a2ensite textpattern.conf
Enabling site textpattern.
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 your domain name snap1 Select the required language snap2 Enter the required database details and click next. snap3 A configuration file is prompted to the user to enter into the Textpattern directory. snap4

Go back to terminal.Enter into the directory by using the following command

root@linuxhelp:~# cd /var/www/textpattern/textpattern/

Create a new file and paste the certain content by following steps

root@linuxhelp:/var/www/textpattern/textpattern# vim config.php
?php
$txpcfg['db'] = 'textpattern';
$txpcfg['user'] = 'textuser';
$txpcfg['pass'] = '123456';
$txpcfg['host'] = 'localhost';
$txpcfg['table_prefix'] = '';
$txpcfg['txpath'] = '/var/www/textpattern/textpattern';
$txpcfg['dbcharset'] = 'utf8mb4';
?>

Restart the apache service

root@linuxhelp:/var/www/textpattern/textpattern# systemctl restart apache2

After adding the configuration file and click " I did it" option.

Create the admin credential and click next. snap5 The installation is complete. Click login now option. snap6 The login page appears on the screen. Enter the admin credentials and login. snap7 The admin page of Textpattern appears on the screen. snap8

The installation procedure of Textpattern CMS 4.7.3 on Ubuntu 18.10 comes to end

Tags:
jackson
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is Textpattern CMS?

A

Textpattern CMS is specially designed for web developers, designers, and bloggers. It allows the users to publish their content with the easy interface. The Textpattern tool is developed with advanced features to create, edit and publish content on the websites. It contains features like conversion of plain text to XHTML code, tag-based template system, built-in site statistics and separation of content from presentation.

Q

How to get the official documentation for the Textpattern?

A

For accessing the official documentation of the Textpattern, use the following link as given below

"https://docs.textpattern.com/"

Q

How to get the Github repository for the Textpattern?

A

For accessing the Github repository for the Textpattern, use the following link as given below

"https://github.com/textpattern/textpattern"

Q

How can I use MySQL instead of MariaDB in Textpattern CMS?

A

Yes. You can use any type of database as per your choice and preference.

Q

How to configure the host entry for Textpattern cms?

A

Enter into #vim /etc/hosts

Related Tutorials in How to Install Textpattern CMS 4.7.3 on Ubuntu 18.10

Related Tutorials in How to Install Textpattern CMS 4.7.3 on Ubuntu 18.10

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 Textpattern CMS 4.7.3 on Ubuntu 18.10

Related Forums in How to Install Textpattern CMS 4.7.3 on Ubuntu 18.10

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 Textpattern CMS 4.7.3 on Ubuntu 18.10

Related News in How to Install Textpattern CMS 4.7.3 on Ubuntu 18.10

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 keel johnston ?
Unhide the folders on windows Explorer

Give any solutions to unhide folder using command prompt?

forum3

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.