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

How to install baun cms 1.3.2 on ubuntu 18.10

  • 00:50 lsb_release -a
  • 01:00 wget https://github.com/BaunCMS/Baun/archive/1.3.2.zip
  • 01:10 unzip 1.3.2.zip
  • 01:25 mv Baun-1.3.2 /var/www/baun
  • 01:44 chown -R www-data.www-data /var/www/baun
  • 01:59 chmod -R 775 /var/www/baun
  • 02:12 vim /etc/apache2/sites-available/baun.conf
  • 03:15 cd /var/www/baun
  • 03:29 apt install composer
  • 03:50 composer install
  • 04:08 a2dissite 000-default.conf
  • 04:26 a2ensite baun.conf
  • 04:36 a2enmod rewrite
  • 04:47 systemctl restart apache2
5463

Installation of baun cms 1.3.2 on Ubuntu 18.10

Installation procedure

You need to configure the LAMP setup For the Installation of baun 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

Downlaod the baun cms installation package using wget command

root@linuxhelp:~# wget https://github.com/BaunCMS/Baun/archive/1.3.2.zip
--2019-04-13 10:25:16--  https://github.com/BaunCMS/Baun/archive/1.3.2.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/BaunCMS/Baun/zip/1.3.2 [following]
--2019-04-13 10:25:17--  https://codeload.github.com/BaunCMS/Baun/zip/1.3.2
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: ‘1.3.2.zip’
1.3.2.zip                         [  <=>                                             ]  26.38K  87.5KB/s    in 0.3s    
2019-04-13 10:25:19 (87.5 KB/s) - ‘1.3.2.zip’ saved [27014]

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

root@linuxhelp:~# unzip 1.3.2.zip
Archive:  1.3.2.zip
a9e698e9e16e8a9785b95bdc89eeee0c487d78ee
   creating: Baun-1.3.2/
  inflating: Baun-1.3.2/.gitignore   
  inflating: Baun-1.3.2/CHANGELOG.md  
  inflating: Baun-1.3.2/LICENSE      
  inflating: Baun-1.3.2/README.md    
  inflating: Baun-1.3.2/auto-install.php  
.
.
.
extracting: Baun-1.3.2/public/themes/baun/bower_components/skeleton/images/favicon.png  
  inflating: Baun-1.3.2/public/themes/baun/bower_components/skeleton/index.html  
  inflating: Baun-1.3.2/public/themes/baun/layout.html  
  inflating: Baun-1.3.2/public/themes/baun/page.html  
  inflating: Baun-1.3.2/public/themes/baun/post.html  
  inflating: Baun-1.3.2/public/themes/baun/style.css  

Move the baun cms directory to apache root directory

root@linuxhelp:~# mv Baun-1.3.2 /var/www/baun

Set the ownership and permission for baun cms directory

root@linuxhelp:~# chown -R www-data.www-data /var/www/baun
root@linuxhelp:~# chmod -R 775 /var/www/baun

once the above step is completed configure the virtualhost for accessing baun cms

root@linuxhelp:~# vim /etc/apache2/sites-available/baun.conf

Enter into the baun cms directory

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

Install the composer package by using the following command

root@linuxhelp:/var/www/baun# apt install composer
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  git git-man jsonlint liberror-perl php-composer-ca-bundle php-composer-semver php-composer-spdx-licenses
  php-composer-xdebug-handler php-json-schema php-psr-log php-symfony-console php-symfony-debug php-symfony-filesystem
.
.
.
Processing triggers for man-db (2.8.4-2) ...
Setting up php-composer-spdx-licenses (1.4.0-1) ...
Setting up php-symfony-polyfill-ctype (1.9.0-1) ...
Setting up php-symfony-polyfill-mbstring (1.9.0-1) ...
Setting up jsonlint (1.7.1-1) ...
Setting up git (1:2.19.1-1ubuntu1.1) ...
Setting up php-symfony-process (3.4.15+dfsg-2ubuntu4) ...
Setting up php-symfony-debug (3.4.15+dfsg-2ubuntu4) ...
Setting up php-symfony-console (3.4.15+dfsg-2ubuntu4) ...
Setting up php-symfony-filesystem (3.4.15+dfsg-2ubuntu4) ...
Setting up composer (1.7.2-1) ...

Enter the composer install

root@linuxhelp:/var/www/baun# composer install
Do not run Composer as root/super user! See https://getcomposer.org/root for details
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 17 installs, 0 updates, 0 removals
  - Installing bauncms/baun-blog-rss (1.0.0): Downloading (100%)         
  .
	.
  - Installing symfony/polyfill-php55 (v1.11.0): Downloading (100%)         
  - Installing symfony/polyfill-php54 (v1.11.0): Downloading (100%)         
  - Installing symfony/http-foundation (v2.8.49): Downloading (100%)         
  - Installing bauncms/framework (1.4.5): Downloading (100%)         
symfony/console suggests installing symfony/event-dispatcher
symfony/console suggests installing symfony/process
symfony/console suggests installing psr/log-implementation (For using the console logger)
Writing lock file
Generating autoload files

Disable the default site access for enabling baun cms

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

Enabling site access for baun cms

root@linuxhelp:~# a2ensite baun.conf
Enabling site baun.
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

Once the all step is completed restart apache service

root@linuxhelp:~# systemctl restart apache2

Once the above step is completed switch to your browser and enter your domain name

snap1 This is the Baun CMS application snap2

snap3

The method to install Baun CMS 1.3.2 on Ubuntu 18.10 comes to an end.

Tags:
connor
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is Baun CMS?

A

Baun CMS is an open source, lightweight and extensible flat-file CMS for PHP. It doesn' t require a database and administration back-end and is a perfect solution for small websites. The main advantages of a flat-file CMS systems are simplicity, portability, security, speed and version control.

Q

What are the php modules required for Baun CMS installation?

A

These are the required modules

# yum install php-mysql php-curl php-json php-cgi php-mcrypt php-xmlrpc php-gd php-mbstring php php-curl php-zip

Q

How to get the latest version of Baun CMS from the official link?

A

To get the latest version of Baun CMS to go to the link as follow "https://github.com/BaunCMS/Baun/releases"

Q

What is the Alternative for Baun CMS?

A

Here I have to give some of the Alternative for Baun CMS

Wordpress,

Drupal,

Bootstrap CMS,

Readz,

OverBlog, etc.

Q

Is Baun CMS Opensource?

A

Yes, Baun CMS is free and Opensource.

Related Tutorials in How to install baun cms 1.3.2 on ubuntu 18.10

Related Tutorials in How to install baun cms 1.3.2 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 baun cms 1.3.2 on ubuntu 18.10

Related Forums in How to install baun cms 1.3.2 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
Pligg
aiden class=
CMS : Pligg install on opensuse
Oct 6, 2017

Related News in How to install baun cms 1.3.2 on ubuntu 18.10

Related News in How to install baun cms 1.3.2 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 Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

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.