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

How to install install Textpattern CMS on linux mint 18.3

2770

To install Textpattern CMS on Linux Mint 18.03

Textpattern is a free and open-source content management system (CMS) you can easily create, edit and published contents on your own site. It is so simple to install Textpattern CMS on Linux Mint and this tutorial covers the ground on the same process.


Features

  • content publishing
  • site designing
  • web developing
  • Secure and stable
  • Easy to manage
  • Excellent support
  • An extensible platform

Pre-Requisites

Before installing Textpattern you need to have LAMP stack installed on your system. I have to install php version 7.2.3.

Along with that, add the required PHP modules.

(php7.2 libapache2-mod-php7.2 php7.2-common php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-mysql php7.2-gd php7.2-xml php7.2-cli php7.2-zip)

First, download the Textpattern CMS package from the following link https://textpattern.com/start/

download_text_pattern

Go to the download directory.

linuxhelp ~ # cd /home/user/Downloads/
linuxhelp Downloads # ls
textpattern-4.6.2.zip

Extract this package by using unzip command.

linuxhelp ~ #unzip textpattern-4.6.2.zip
rchive:  textpattern-4.6.2.zip
   creating: textpattern-4.6.2/
  inflating: textpattern-4.6.2/.htaccess  
  inflating: textpattern-4.6.2/css.php  
   creating: textpattern-4.6.2/files/
  inflating: textpattern-4.6.2/files/.htaccess-dist  
  inflating: textpattern-4.6.2/HISTORY.txt  
   creating: textpattern-4.6.2/images/
  inflating: textpattern-4.6.2/index.php  
  inflating: textpattern-4.6.2/LICENSE-BSD-3.txt  
.
.
.
creating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/BlankConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/CategoryConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/ChoiceConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/Constraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/FalseConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/FormConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/SectionConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/TrueConstraint.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Textpattern/Validator/Validator.php  
  inflating: textpattern-4.6.2/textpattern/vendors/Txp.php  


Rename the extracted directory.

linuxhelp Downloads # mv textpattern-4.6.2 textpattern

Move the file in to the /var/www/html/ location.

linuxhelp Downloads # mv textpattern /var/www/html/

Go to HTML directory and change ownership and permission as follows.

linuxhelp html # chown -R www-data:www-data textpattern/

You have to configure the virtual host for Textpattern cms, so go to the site available location, then create an empty file named textpattern.conf.

linuxhelp html # cd /etc/apache2/sites-available/
linuxhelp sites-available # vim textpattern.conf
< VirtualHost *:80> 
servername www.linuxhelp1.com
DocumentRoot " /var/www/html/textpattern" 
< Directory " /var/www/html/" > 
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
< /Directory> 
ErrorLog /var/log/apache2/linuxhelp1-error_log
CustomLog /var/log/apache2/linuxhelp1-access_log common
< /VirtualHost> 

Enable the textpattern.conf file.

linuxhelp sites-available # a2ensite textpattern.conf 
Enabling site textpattern.
To activate the new configuration, you need to run:
service apache2 reload


Next, Make an entry in the host file as follows.

< give your ip address>   < give your domain name> 

Finally, restart the Apache web server.

linuxhelp ~ # systemctl restart apache2

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://< ipaddress or domain name.
web_output


You need to configure the Textpattern setup as follows.
visit_textpattern_setup


First, select the language for Textpattern CMS.
choose_language


Now you need to configure the database details and click Next.
setup_database_details


Check the database connection status and create config.php, make an entry to the configuration file as follows.
check_db_connection

vim /var/www/html/textpattern/textpattern/config.php
< ?php
$txpcfg[' db' ] = ' textpattern'  
$txpcfg[' user' ] = ' textuser'  
$txpcfg[' pass' ] = ' 123'  
$txpcfg[' host' ] = ' localhost'  
$txpcfg[' table_prefix' ] = ' '  
$txpcfg[' txpath' ] = ' /var/www/html/textpattern/textpattern'  
$txpcfg[' dbcharset' ] = ' utf8mb4'  
?> 

Now configure the database tables and click Next.
create_database_table


After all the setup configuration. you can login using the given option.
login_now


Log in using the admin user credential as follows.
textpattern_login


After successful login, you will see the CMS page of Textpattern as follows.
textpattern_admin_page


After publishing, you can access the site as follows.
sample_site

With this, the method to install Textpattern CMS on Linux Mint 18.3 comes to an end.

Tags:
mason
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

can I use mysql instead of mariadb?

A

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

Q

I have a ngnix webserver installed on my server. Can I use that document root path ?

A

you can use any kind of webserver if you have prior knowledge on that Web server.

Q

what PHP version should I use?

A

you can make use of the latest php version for the best output.

Q

why do we have to save the package at /tmp

A

You can save at any directory. We prefer saving the packages at /tmp

Q

How to configure Apache VirtualHost for the Textpattern CMS?

A

create a conf file as follows:
# vim /etc/apache2/conf.d/textpattren.conf

Related Tutorials in How to install install Textpattern CMS on linux mint 18.3

Related Tutorials in How to install install Textpattern CMS on linux mint 18.3

How to install WinRAR 5.11 on Linuxmint 18.03
How to install WinRAR 5.11 on Linuxmint 18.03
May 22, 2018
How to Setup VNC Server on Linux Mint 20
How to Setup VNC Server on Linux Mint 20
Dec 22, 2020
How to install and configure samba setup in Linux mint - 18.3
How to install and configure samba setup in Linux mint - 18.3
Mar 26, 2018
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Sep 19, 2018
How to Install and Configure Samba on Linux Mint 20
How to Install and Configure Samba on Linux Mint 20
Nov 9, 2020
How to Install NextCloud on Linux Mint 18.3
How to Install NextCloud on Linux Mint 18.3
Feb 27, 2018
How To Install And Update OpenSSL On Linuxmint 18.3
How To Install And Update OpenSSL On Linuxmint 18.3
Jun 8, 2018
How To Install AnyDesk on Linux Mint 18.3
How To Install AnyDesk on Linux Mint 18.3
Apr 11, 2018

Related Forums in How to install install Textpattern CMS on linux mint 18.3

Related Forums in How to install install Textpattern CMS on linux mint 18.3

Linux
isaac class=
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-8.0/mysql-client-core-8.0_8.0.21-0ubuntu0.20.04.4_amd64.deb 404 Not Found
Dec 4, 2020
Linux Mint
AlxH class=
Complete beginner, install bluegriffon
Jul 1, 2020
Linux
AadrikaAnshu class=
How to add timestamps to history On Any Linux Machine
Jun 18, 2019
Linux Mint
bz0 class=
How to change a function of a key
Jun 7, 2019
Linux Mint
who class=
How to compare multiple files
Nov 10, 2019
NFS (Network File System)
Mike class=
Linux Mint 18.3 - NFS Shares - Only Root Can Mount Share
Oct 4, 2019
Command Line Tools
wayne class=
Deleting windows files booting from mint(usb)
Sep 16, 2017
Ubuntu
Kirin class=
Videos Always Micro-Shutter
Mar 8, 2019

Related News in How to install install Textpattern CMS on linux mint 18.3

Related News in How to install install Textpattern CMS on linux mint 18.3

A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
Apr 9, 2019
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
May 2, 2017
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Mar 14, 2017
The Best Linux Operating System is in the house: Mint 18.2
The Best Linux Operating System is in the house: Mint 18.2
Aug 12, 2017
Linux Mint 18.1 released with smooth features and offers long-term support
Linux Mint 18.1 released with smooth features and offers long-term support
Apr 11, 2017
Linux Mint 18.2 Sonya Beta version now available for download
Linux Mint 18.2 Sonya Beta version now available for download
Jun 7, 2017
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.