Get Forum Files from Vanilla Forum

171 views Asked by At

I had homework of making a forum about a subject, tomorrow I have show my final work.

I used VANILLA FORUMS to make the webiste, created it, modified what needs to be modified got the themes and everything done, now im looking for someway to import only the website and database files ( html/css/js/php... files ) plus the database, like get all the files that make the website launch without re-opening Xampp everytime

to sum up Is there anyway I can import the webiste files from the XAMMP folder so its shareable ? Or if somebody knows simply where they must be.

Appreciate your help

2

There are 2 answers

0
Charafeddine2 On

i believe they could be in Htdocs, but not sure if dragging them would save their state as it is displayed on the Localhost/yourforum

8
Martijn On

There are two ways and im guessing you need the first one:

  1. Make a dump of your database, store that file in your document root. And now zip everything. The other person can unzip it and load the database dump in their database and proceed.

  2. You add it to a repository and send the link to the other party. The other party pulls it from the repository, does (something similar to) composer install and npm build and a form of migration the database.

In either case, it's recommended that you create a readme.md, explaining how to set up the project.

Based on the fact that you're asking, I think you're looking for the first solution, which is the most simple and acceptable for entry level programmers/students.