• 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 SilverStripe CMS on Ubuntu 19.04

  • 00:39 lsb_release -a
  • 00:53 mysql -u root -p
  • 02:04 unzip SilverStripe-cms-v4.3.3.zip -d silverstripe
  • 02:21 mv sliverstripe /var/www/
  • 02:35 chown -R www-data.www-data /var/www/silverstripe
  • 02:51 chmod -R 755 /var/www/silverstripe
  • 03:05 vim /etc/apache2/sites-available/silverstripe.conf
  • 04:11 a2dissite 000-default.conf
  • 04:23 a2ensite silverstripe.conf
  • 04:35 a2enmod rewrite
  • 04:46 systemctl restart apache2
  • 05:14 vim /etc/php/7.1/apache2/php.ini
{{postValue.id}}

Installation of Silverstripe Cms On Ubuntu 19.04

SilverStripe is a free and open source Content Management System (CMS) and Framework for creating and maintaining websites and web applications. It provides an out of the box web-based administration panel that enables users to make modifications to parts of the website, which includes a WYSIWYG website editor.This tutorial covers the installation of SilverStripe Cms On Ubuntu 19.04

Requirements for SilverStripe Cms

Apache

Mysql

Php and Its modules

(php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear)

Installation procedure

Check the Ubuntu version by using the following command

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

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 6
Server version: 5.7.26-0ubuntu0.19.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 ssdb;
Query OK, 1 row affected (0.33 sec)

mysql> create user 'ssuser'@localhost identified by 'Linuxc#4';
Query OK, 0 rows affected (1.15 sec)

mysql> grant all privileges on ssdb.* to 'ssuser'@localhost;
Query OK, 0 rows affected (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.17 sec)

mysql> exit
Bye

Previously download the SilverStripe installation package

root@linuxhelp:~# ls
SilverStripe-cms-v4.3.3.zip

Extract the downloaded package using unzip command

root@linuxhelp:~# unzip SilverStripe-cms-v4.3.3.zip -d SilverStripe
Archive:  SilverStripe-cms-v4.3.3.zip
  inflating: SilverStripe /composer.lock  
  inflating: SilverStripe /composer.phar  
   creating: SilverStripe /app/
  inflating: SilverStripe /app/_config.php  
   creating: SilverStripe /app/_config/
  inflating: SilverStripe /app/_config/theme.yml  
  inflating: SilverStripe /app/_config/mysite.yml  
  inflating: SilverStripe /app/.htaccess  
   creating: SilverStripe /app/src/
.
.
  inflating: SilverStripe /vendor/symfony/translation/.git/objects/pack/pack-858ba734a2e94002da4edc43902cddcc7dc56476.idx  
  inflating: SilverStripe /vendor/symfony/translation/.git/objects/pack/pack-858ba734a2e94002da4edc43902cddcc7dc56476.pack  
  inflating: SilverStripe /vendor/symfony/config/.git/objects/pack/pack-818008b85ec396cd1ff2b0bc92c53a41ec11cec0.idx  
  inflating: SilverStripe /vendor/symfony/config/.git/objects/pack/pack-818008b85ec396cd1ff2b0bc92c53a41ec11cec0.pack  

Move the SilverStripe directory to apache root directory

root@linuxhelp:~# mv SilverStripe  /var/www/

Set the ownership and permission for SilverStripe by using the following command

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

Configure the virtualhost for accessing the SilverStripe

root@linuxhelp:~# vim /etc/apache2/sites-available/SilverStripe .conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        documentroot /var/www/SilverStripe 
<directory /var/www/SilverStripe >
allowoverride all
allow from all
</directory>
</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 accessing the SilverStripe **

root@linuxhelp:~# a2ensite SilverStripe .conf
Enabling site SilverStripe .
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 the domain name snap1 snap2 Configure the php.ini file

root@linuxhelp:~# vim /etc/php/7.1/apache2/php.ini
date.timezone = Asia/Kolkata

Restart the apache service

root@linuxhelp:~# systemctl restart apache2

Check the requirements snap3 Configure the database details snap4 Create your admin credentials snap5

Click the installation button snap6 Installation is in process snap7 After the installation you will see the following page snap8 Enter your admin credentials to login SilverStripe cms snap9 Click to cms to login the admin page snap10 This is the dashboard of SilverStripe cms snap11 With this, the method to install silver stripe on Ubuntu 19.04 comes to an end.

Tags:
jacob
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What is a SilverStripe?`

A

SilverStripe is a free and open source Content Management System (CMS) and Framework for creating and maintaining websites and web applications. It provides an out of the box web-based administration panel that enables users to make modifications to parts of the website, which includes a WYSIWYG website editor

Q

What are the php modules required for SilverStripe?

A

These are the modules required for SilverStripe,
php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear

Q

What are their basic requirements for SilverStripe?

A

Requirements for this as below, LAMP Setup -Apache -Mysql -PHP 7

Q

How to configure the Host entry in SilverStripe?

A

Enter into #vim /etc/hosts

Q

How to get the source of the SilverStripe?

A

Get the source of the Silver Stripe, use the following link as given below "https://www.silverstripe.org/download/"

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.