Speedtest-Tracker
Speedtest-Tracker copied to clipboard
Manual Install
After following the manual install instructions, how does one access the webgui? Browsing to http://localhost only shows the apache default page.
i am having the same issue
issue old asf, but for anyone else finding this: you need to run php artisan serve --host=0.0.0.0 --port=8765 from your install dir
if you get a blank page when navigating to the web gui you also need to replace the line
$mime = \GuzzleHttp\Psr7\mimetype_from_filename($fileP);
in routes/web.php with
$mime = (new \finfo(FILEINFO_MIME_TYPE))->file($fileP);