You're not really cooked really.
There are forum 'engines' out there like Discourse, phpBB, and vBulletin, but it looks like VLR doesn't use those.
Since he asked
So, I wondered what engine/software vlr uses. If you know this, please let me know in the replies thanks!
We move on to the software that connects to make the website, so that is why I listed the w3tech site.
If you're confused on how it all works together here's a brief explanation:
The front end of the site is built with HTML for the structure, CSS to make it look nice, and JavaScript (with jQuery) to make things interactive. Stuff like loading posts without refreshing the page, posting comments, or updating profiles all happens through API calls. Those calls let JavaScript talk to the backend and grab new data without having to reload the page.
On the backend, PHP handles the server side stuff. It takes care of things like creating accounts, saving posts in the database, and checking logins, and other things. It also sends back API responses that the front end needs. So, when you post a comment, JavaScript sends that to the backend through an API request, and PHP processes it and updates the database.
The server runs on Ubuntu, and they use Nginx as the web server. Nginx makes sure everything runs smoothly by sending things like images and CSS straight to users and passing more complex stuff to PHP.
Basically, JavaScript/jQuery handles what users see and interact with on the front end by making API calls to the backend, while PHP handles all the backend processing. It’s not built with a pre-made forum engine, it’s just a custom setup using common tools to make everything work the way they want.
I think.......