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

How to install Vanilla Forums on Linux mint 18.03

4488

How to install Vanilla Forums on Linux mint 18.03

Vanilla Forums are open-source, standards-compliant, customizable discussion forums. It is specially made to help small communities, totally customizable social tools, and great user experience. In this tutorial, we will cover the installation of Vanilla Forums on Linux mint-18.03.

Prerequisites

Install LAMP (Apache, MariaDB, php7.2) In MariaDB (create database and user and give privileges to that user)

Php installation with required following modules

add-apt-repository ppa:ondrej/php 
apt-get update 
apt-get install php7.2 php7.2-mysql php7.2-curl php7.2-json php7.2-cgi libapache2-mod-php7.2 php7.2-mcrypt php7.2-xmlrpc php7.2-gd php7.2-mbstring php7.2  php7.2-common  php7.2-xmlrpc php7.2-soap  php7.2-xml php7.2-intl  php7.2-cli  php7.2-ldap php7.2-zip php7.2-readline php7.2-imap php7.2-tidy php7.2-recode php7.2-sq php7.2-intl

Download a Vanilla Forums package by using wget command.

linuxhelp ~ # wget https://open.vanillaforums.com/get/vanilla-core-2.6.1.zip
--2018-09-08 02:02:20--  https://open.vanillaforums.com/get/vanilla-core-2.6.1.zip
Resolving open.vanillaforums.com (open.vanillaforums.com)... 104.18.181.20, 104.18.184.20, 104.18.183.20, ...
Connecting to open.vanillaforums.com (open.vanillaforums.com)|104.18.181.20|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘vanilla-core-2.6.1.zip’

vanilla-core-2.6.1.zip                [                                                <=>        ]   9.77M  1.08MB/s    in 10s     

2018-09-08 02:02:31 (985 KB/s) - ‘vanilla-core-2.6.1.zip’ saved [10242613]

After Downloading extract the downloaded package

linuxhelp ~ # unzip vanilla-core-2.6.1.zip -d vanilla
Archive:  vanilla-core-2.6.1.zip
  inflating: vanilla/.htaccess.dist  
  inflating: vanilla/LICENSE.md      
  inflating: vanilla/README.md       
   creating: vanilla/applications/
   creating: vanilla/applications/conversations/
  inflating: vanilla/applications/conversations/addon.json  
.
.
.
inflating: vanilla/vendor/vanilla/nbbc/tests/CompatibilityTest.php  
  inflating: vanilla/vendor/vanilla/nbbc/tests/ConformanceTest.php  
  inflating: vanilla/vendor/vanilla/nbbc/tests/UtilityMethodTest.php  
   creating: vanilla/vendor/vanilla/nbbc/tools/
  inflating: vanilla/vendor/vanilla/nbbc/tools/Makefile  
  inflating: vanilla/vendor/vanilla/nbbc/tools/collect_smileys.php  
  inflating: vanilla/vendor/vanilla/nbbc/tools/merge.pl

Change ownership and permission of the as Vanilla Forums follows

linuxhelp ~ # chown -R www-data:www-data vanilla
linuxhelp ~ # chmod -R 775 vanilla

Move the extracted file into the HTML directory

linuxhelp ~ # mv vanilla /var/www/html/

Create a new virtual host configuration for accessing the Vanilla Forums

linuxhelp ~ # cd /etc/apache2/sites-available/linuxhelp sites-available 
# vim vanilla.conf
 <VirtualHost *:80>
ServerName www.linuxhelp1.com
DocumentRoot /var/www/html/vanilla/
<Directory /var/www/html/vanilla/>
AllowOverride All
Allow from all
</Directory>
</VirtualHost>

Enable site access

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

Entry to the host file.

linuxhelp sites-available #vim /etc/hosts
<Give your ip>   <Give your domain name>

Restart the apache service to make the changes effect

linuxhelp sites-available # 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 ) ! 1

Configure the Database setup as follows 2

Configure the Admin user setup as follow 3

After the Successful login, you will see the Admin dashboard of vanilla forums as shown below 4

With this, the method to install vanilla forums on Linux mint 18.03 comes to an end.

Tags:
noah
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is Vanilla Forums?

A

Vanilla is cloud based software (SaaS) that lets you create a customer community forum.

Q

What makes Vanilla better than other community platforms?

A

Vanilla has been chosen by many of the world’s leading companies because:

Easy to use software that is quick to implement and quick to deliver value
Best in class functionality
A seamless integration to your website. Integration includes branding, single-sign-on and connections to backend and CRM systems.

Q

How do I setup a custom domain or subdomain?

A

Instead of having your community url look like this: joescommunity.vanillaforums.com, it can be setup to look like this: * joescommunity.com; or * community.joeswebsite.com.

Q

Can my existing forum be migrated to Vanilla?

A

Yes, we can migrate almost every legacy or home grown forum to Vanilla. We can usually import all data including passwords, uploaded media, private conversations, permissions. etc.

Q

Does Vanilla support SSL (HTTPS)?

A

Yes, to setup SSL, you must contact support and provide us with an SSL certificate.

Related Tutorials in How to install Vanilla Forums on Linux mint 18.03

Related Tutorials in How to install Vanilla Forums on Linux mint 18.03

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 Vanilla Forums on Linux mint 18.03

Related Forums in How to install Vanilla Forums on Linux mint 18.03

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 Vanilla Forums on Linux mint 18.03

Related News in How to install Vanilla Forums on Linux mint 18.03

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 Isaiah ?
What is the use of SUID & SGID commands

How to set the special permissions to the files and folders using SUID and SGID commands...

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.