How to Install Sitemagic CMS 4.4 on ubuntu 18.10
- 00:43 lsb_release -a
- 01:00 wget https://github.com/Jemt/SitemagicCMS/archive/master.zip
- 01:14 unzip master.zip
- 01:30 mv SitemagicCMS-master /var/www/sitemagic
- 01:46 chown -R www-data.www-data /var/www/sitemagic
- 02:03 chmod -R 755 /var/www/sitemagic
- 02:18 vim /etc/apache2/sites-available/sitemagic.conf
- 03:20 a2dissite 000-default.conf
- 03:32 a2ensite sitemagic.conf
- 03:46 a2enmod rewrite
- 03:55 systemctl restart apache2
Installation of sitemagic cms 4.4 on Ubuntu 18.10
Requirements for sitemagic cms:
Apache
PHP and its modules
(php php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt php-xml php-)
Installation procedure
You need to configure the LAMP setup For the Installation of sitemagic 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
Download the sitemagic cms installation package using wget command
root@linuxhelp:~# wget https://github.com/Jemt/SitemagicCMS/archive/master.zip
--2019-04-22 18:45:49-- https://github.com/Jemt/SitemagicCMS/archive/master.zip
Resolving github.com (github.com)... 192.30.253.113, 192.30.253.112
Connecting to github.com (github.com)|192.30.253.113|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/Jemt/SitemagicCMS/zip/master [following]
--2019-04-22 18:45:51-- https://codeload.github.com/Jemt/SitemagicCMS/zip/master
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: ‘master.zip’
master.zip [ <=> ] 18.54M 599KB/s in 2m 20s
2019-04-22 18:48:12 (135 KB/s) - ‘master.zip’ saved [19436640]
Once the download is completed extract the downloaded package using unzip command
root@linuxhelp:~# unzip master.zip
Archive: master.zip
d6abe88b778384d92816e8c7ee7522d8f4c6fd8f
creating: SitemagicCMS-master/
extracting: SitemagicCMS-master/.gitignore
creating: SitemagicCMS-master/.vscode/
inflating: SitemagicCMS-master/.vscode/settings.json
inflating: SitemagicCMS-master/README.md
creating: SitemagicCMS-master/base/
.
.
.
inflating: SitemagicCMS-master/templates/_BaseTopNav/basic.css
inflating: SitemagicCMS-master/templates/_BaseTopNav/basic.html
creating: SitemagicCMS-master/templates/_BaseTopNav/images/
inflating: SitemagicCMS-master/templates/_BaseTopNav/images/blank.gif
inflating: SitemagicCMS-master/templates/_BaseTopNav/index.css
inflating: SitemagicCMS-master/templates/_BaseTopNav/index.html
inflating: SitemagicCMS-master/templates/_BaseTopNav/menu.js
inflating: SitemagicCMS-master/upgrade.php
Move the sitemagic cms directory to apache root directory
root@linuxhelp:~# mv SitemagicCMS-master /var/www/sitemagic
Set the ownership and permission for sitemagic cms directory by using the following command
root@linuxhelp:~# chown -R www-data.www-data /var/www/sitemagic
root@linuxhelp:~# chmod -R 755 /var/www/sitemagic
Configure the virtualhost for accessing the sitemagic cms
root@linuxhelp:~# vim /etc/apache2/sites-available/sitemagic.conf
<Virtualhost *:80>
Servername www.linuxhelp1.com
documentroot /var/www/sitemagic
</Virtualhost>
Disable the default site access for enabling the sitemagic cms
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 sitemagic cms
root@linuxhelp:~# a2ensite sitemagic.conf
Enabling site sitemagic.
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 all the step is completed Restart the apache service
root@linuxhelp:~# systemctl restart apache2
Switch to your browser and enter your domain name
Welcome page of sitemagic cms

Log in using the default admin credentials
This is the sitemagic cms dashboard

With this, the method to install Sitemagic CMS V4.4 on Ubuntu 18.10 comes to end.
Comments ( 0 )
No comments available