Speedtest-Tracker icon indicating copy to clipboard operation
Speedtest-Tracker copied to clipboard

Manual Install

Open arkestlerdev opened this issue 4 years ago • 2 comments

After following the manual install instructions, how does one access the webgui? Browsing to http://localhost only shows the apache default page.

arkestlerdev avatar Jul 15 '21 19:07 arkestlerdev

i am having the same issue

chartmann1590 avatar Sep 20 '21 17:09 chartmann1590

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);

AdamWHY2K avatar Oct 26 '24 18:10 AdamWHY2K