• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to Install Bigtree CMS on Linuxmint 19

  • 00:41 lsb_release -a
  • 00:59 mysql -u root -p
  • 02:19 ls
  • 02:25 unzip BigTreeCMS-4.4.5.zip
  • 02:37 mv BigTree-CMS /var/www/bigtree
  • 02:53 chown -R www-data.www-data /var/www/bigtree
  • 03:09 chmod -R 755 /var/www/bigtree
  • 03:24 vim /etc/apache2/sites-available/bigtree.conf
  • 04:31 a2dissite 000-default.conf
  • 04:41 a2ensite bigtree.conf
  • 04:54 a2enmod rewrite
  • 05:03 systemctl restart apache2
  • 05:34 vim /etc/php/7.1/apache2/php.ini
  • 06:05 systemctl restart apache2
{{postValue.id}}

Installation Of Bigtree CMS On Linuxmint 19

Bigtree CMS is a free and open source Content Management System. It allows us to create your own website. It is built on PHP and MySQL and uses various PHP templates. It can be used to manage complex content like blog posts, formatted news releases, calendar events, frequently asked questions, and homepage features. This tutorial covers the installation of Bigtree CMS on Linuxmint 19

Requirements for Bigtree CMS:

Apache

Mysql

Php and Its modules

Installation procedure

Check the Linuxmint version by using the following command

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID:	LinuxMint
Description:	Linux Mint 19 Tara
Release:	19
Codename:	tara

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.26-0ubuntu0.18.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 bigdb;
Query OK, 1 row affected (0.00 sec)
mysql> create user 'biguser'@localhost identified by 'Linuxc#4';
Query OK, 0 rows affected (0.09 sec)
mysql> grant all privileges on bigdb.* to 'biguser'@localhost;
Query OK, 0 rows affected (0.02 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
mysql> exit
Bye

Previously downloaded the bigtree CMS installation package

root@linuxhelp:~# ls
BigTreeCMS-4.4.5.zip  Desktop

Once the installation package is downloaded, you shall extract by using unzip command.

root@linuxhelp:~# unzip BigTreeCMS-4.4.5.zip
Archive:  BigTreeCMS-4.4.5.zip
   creating: BigTree-CMS/
  inflating: BigTree-CMS/README.md   
  inflating: BigTree-CMS/composer.json  
  inflating: BigTree-CMS/composer.lock  
   creating: BigTree-CMS/core/
.
.
.
   creating: BigTree-CMS/vendor/psr/http-message/src/
  inflating: BigTree-CMS/vendor/psr/http-message/src/MessageInterface.php  
  inflating: BigTree-CMS/vendor/psr/http-message/src/RequestInterface.php  
  inflating: BigTree-CMS/vendor/psr/http-message/src/ResponseInterface.php  
  inflating: BigTree-CMS/vendor/psr/http-message/src/ServerRequestInterface.php  
  inflating: BigTree-CMS/vendor/psr/http-message/src/StreamInterface.php  
  inflating: BigTree-CMS/vendor/psr/http-message/src/UploadedFileInterface.php  
  inflating: BigTree-CMS/vendor/psr/http-message/src/UriInterface.php  

Once the above step is completed move bigtree directory to apache root directory.

root@linuxhelp:~# mv BigTree-CMS /var/www/bigtree

Change ownership and permission of the as BigTree CMS by using he following command

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

Create a new virtual host configuration for accessing the BigTree CMS

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

Disable default access for accessing the bigtree cms

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

Enable site access for bigtree cms by using the following command

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

Enable 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 to make the changes effect

root@linuxhelp:~# systemctl restart apache2

Once the above step is completed switch to browser and enter your domain name snap1 This is the Welcome Page of Bigtree CMS snap2 Change the value of the php.ini file.

root@linuxhelp:~# vim /etc/php/7.1/apache2/php.ini
Modify the following lines as shown here.
upload_max_filesize = 64M
post_max_size = 64M

Restart the apache service

root@linuxhelp:~# systemctl restart apache2

Here enter the database and Admin user detail click and continue. snap3 Next, create a user account for admin login. snap4 Once everything is set up click install now. snap5 After installation completes, it will show the status of the installation. Follow the admin URL to access as an admin user. snap6

Enter the Admin credentials to log in. snap7 This is the Dashboard of BigTree CMS. snap8 With this, the method to install Bigtree on Linuxmint 19comes to an end.

Tags:
christian
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What is the PHP module required for big tree cms?

A

The php modules required for php is (php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt )

Q

How to configure host entry for big tree cms?

A

To configure host entry for big tree cms

vim /etc/hosts

Q

What is the use of Bigtree CMS?

A

BigTree is an extremely extensible open-source CMS built on PHP and MySQL. It was created by the expert designers, strategists, and developers at Fastspot to help you make and maintain better websites.

Q

Is it possible to configure BigTree with an Nginx web server?

A

Yes, BigTree will work on an Nginx environment but does not come without the box support. You'll need to add directives to either your global nginx configuration file or your virtual host as laid out here.

Q

What are the Prerequisites in BigTree CMS?

A

The requirements are,

Install LAMP(Apache, MariaDB, php7)

In MariaDB (create database and user and give privileges to that user )

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 David Lopez Guillen ?
Ayuda urgente instale SSL para servidor Opensuse y ahora no funciona tengo servicio web

hola segui este tutorial para tener un certificado ssl y ahora no se ve mi app en la red, espero alguien pueda ayudarme, tengo M9oodle en3.5 en un servidor open suse y ahora no funciona por favor ayuda.

https://www.linuxhelp.com/how-to-create-ssl-certificate-in-opensuse

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.