Comments on: How to Install Vanilla Forums on Ubuntu 18.04 https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/ Premium Linux Tutorials Since 2001 Wed, 06 Mar 2024 11:09:50 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: admin https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48743 Fri, 12 Nov 2021 07:08:55 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48743 In reply to Takumi.

Check your DocumentRoot if it is pointed to your vanilla forums directory and make sure to enable the virtual host you created using the a2ensite command.

]]>
By: Takumi https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48742 Thu, 11 Nov 2021 23:04:13 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48742 I’ve followed everything listed here, but when I opened the webpage, it got stuck in Apache2 Ubuntu Default Page. Do you have any idea how to solve this?

Thank you

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48317 Thu, 25 Jun 2020 06:59:16 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48317 In reply to Daniel.

The configuration file should be created at the following location:

nano /etc/apache2/sites-available/mydomain.conf

After this is done, you should enable it with:

a2ensite yourdomain.com

And reload your Apache web server:

sudo systemctl reload apache2

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48315 Thu, 25 Jun 2020 06:52:11 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48315 In reply to qwe.

Thanks for pointing that out. The article has been updated with the correct command:

apt-get install unzip

]]>
By: qwe https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48314 Wed, 24 Jun 2020 21:38:26 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48314 In reply to admin.

The problem is that the directory /etc/httpd – and /etc/httpd/conf.d — do not exist.
You cannot save a file in non-existent directories.

Either the author of this article made a big mistake on where things are supposed to go – or forgot to create these directories.

]]>
By: qwe https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48313 Wed, 24 Jun 2020 21:18:40 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48313 You mention “sudo yum install unzip” – this is ubuntu and yum doesnt exist.
Unless I’m mistaken, you should fix that.

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48152 Sat, 04 Apr 2020 11:05:59 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48152 In reply to Daniel.

Please, do not forget to wrap these lines into blocks.

]]>
By: Daniel https://www.rosehosting.com/blog/how-to-install-vanilla-forums-on-ubuntu-18-04/#comment-48151 Fri, 03 Apr 2020 14:31:26 +0000 https://www.rosehosting.com/blog/?p=31832#comment-48151 In reply to admin.

I followed along using exactly what you shown but it never saves out.
I swapped that last bit with the following:

sudo nano /etc/apache2/sites-available/forum.example.com.conf

Populate the file.

ServerName forum.example.com
DocumentRoot /var/www/vanilla

Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all

This saves out no problem.
Not sure if I have used the right method as nothing seems to work for me.

]]>