BoQsc I do have a laptop and there I run XAMPP server in which it is Freshly installed Flarum that has it's setups and works wonderfully when visiting it from the laptop itself. The problem is when I use internal IP of the "server laptop" computer to connect to it from other computers on the network it shows me a page without CSS and only HTML kind of page with the message in it "Something went wrong while trying to load the full version of this site.". Here is visual example of when visited from another computer on a same local network: http://i.cubeupload.com/UW0gcm.png
BoQsc luceos Double check the url set in your config.php. I change it from http://localhost/flarum to http://192.168.0.100/flarum Now when visiting the site using http://192.168.0.100 seems to be everything okay from both sides: chrome on a server computer and local client on a network. The new problem appears, however: Using chrome (or any other browser for sure) on a server side and trying to type http://localhost/flarum, will get me Flarum without interface icons. Just like in previous thread: https://i.cubeupload.com/xlaYGn.png The previous thread, if anyone interested: https://discuss.flarum.org/d/6636-flarum-has-no-interface-icons-after-fresh-installation-using-composer/5
luceos BoQsc that's because you are now hitting Flarum under a different url. What you could do is the following: 'url' => 'http://' . array_get($_SERVER, 'HTTP_HOST', '192.168.0.100') . '/flarum', Disclaimer untested! Let me know if this helps.
BoQsc luceos Let me know if this helps. That array suggestion actually did help a lot. Even though It is strange how Flarum works at least for me and for now as for the beginner. Everything is now working as it should. Thank you @luceos.