"request not found" usually is usually because a /api/<something>
request returned a 404.
You can check the browser console to see what is the path of the resource that returned 404. If the path is wrong (for example includes /public
), it's probably because your URL is wrong in config.php
. If the path is correct, then it's probably because Apache or nginx rewrites are not enabled/working on the server.
You can try accessing yourforumdomain.tld/api
, which should return a JSON page with information about the forum. If it return 404, the rewrites are not working.