How to Install Vanilla Forums on Windows 10
Vanilla Forums is an open-source forum software that is easy to use and customize. In this tutorial, we will guide you through the installation process of Vanilla Forums on Windows 10.
Prerequisites
Before we begin with the installation process, make sure that the following requirements are met:
- Windows 10 operating system
- XAMPP or any other web server software installed on your system
- MySQL or MariaDB database management software installed on your system
- Basic knowledge of PHP and MySQL
Step 1: Download Vanilla Forums
First, download the latest version of Vanilla Forums from their official website at https://vanillaforums.org/.
Step 2: Extract Vanilla Forums
Once you have downloaded the ZIP file of Vanilla Forums, extract it to a folder on your system.
Step 3: Install XAMPP and Setup MySQL Database
If you haven't installed XAMPP software, download and install it from the official website at https://www.apachefriends.org/download.html.
Once you have installed XAMPP, open the XAMPP control panel and start the Apache and MySQL services.
Next, open a web browser and go to http://localhost/phpmyadmin/. This will open the phpMyAdmin interface.
Create a new database for Vanilla Forums by clicking on the "New" button on the left-hand side panel. Enter a name for your database and click on the "Create" button.
Step 4: Configure Vanilla Forums
Open your extracted Vanilla Forums folder and navigate to the conf directory. Copy the config-sample.php file and paste it in the same directory with the name config.php.
Next, open the config.php file in a text editor and make the following changes:
- Replace
localhostin$Configuration['DATABASE']['HOST']with your MySQL/MariaDB hostname (usuallylocalhost). - Replace
vanillain$Configuration['DATABASE']['NAME']with the name of the database that you created in PhpMyAdmin. - Replace
rootin$Configuration['DATABASE']['USER']with the username of your MySQL/MariaDB server. - Replace
passwordin$Configuration['DATABASE']['PASSWORD']with the password of your MySQL/MariaDB server. - If you want to use Vanilla Forums as your forum's root directory, set
$Configuration['BASE_PATH'] = '/';, else set$Configuration['BASE_PATH']to the relative path of your Vanilla Forums directory.
Save and close the config.php file.
Step 5: Copy Vanilla Forums Files to htdocs
Next, copy all the files and folders inside your Vanilla Forums directory to the htdocs folder in your XAMPP installation directory, usually located at C:\xampp\htdocs.
Step 6: Complete the Installation
Open a web browser and go to http://localhost/vanillaforums/ (replace vanillaforums with your Vanilla Forums directory name).
This will start the installation process of Vanilla Forums. Follow the instructions on the screen to complete the installation.
Once the installation is complete, you can access your Vanilla Forums website by going to http://localhost/vanillaforums/ in your web browser.
Congratulations! You have successfully installed Vanilla Forums on your Windows 10 system.