So I installed Flarum, and after install I managed to move files around to root folder to there is no /flarum/public.
Site runs flawless, and has no errors. I can access the admin area too.
The problem I'm having now is the text for search input, start discussion button, sort button text so on and so on are showing in php script text form. Seems like when I moved files around or changed the file path inside index.php something happened.
index.php as of now...
<?php
require 'vendor/autoload.php';
$server = new Flarum\Http\Server(
Flarum\Foundation\Site::fromPaths([
'base' => __DIR__.'',
'public' => __DIR__.'',
'storage' => __DIR__.'/storage',
])
);
$server->listen();
My website is: https://talkmickeytome.com
Any ideas on where to look first is appreciated!