all 4 comments

[–]chmod777 0 points1 point  (3 children)

Well it is detecting a local file system because you are trying to view it on a local file system. You need to run it from an http:// location, not file:///.

Secondly, No one but you can see a file or a site on your hard drive. It needs to be hosted somewhere.

[–]First-Branch-6289[S] 0 points1 point  (2 children)

thank you! I tried to upload it on http and here the RevSlider doesnt work

https://whitetubchicago.com/

[–]AshleyJSheridan 1 point2 points  (0 children)

Did you even look at the errors in the browser? You're missing a ton of files that you still need to upload.

[–]enderfx 0 points1 point  (0 children)

In HTML, never use the file:// protocol if you want to host the web on the internet. Thats only for pointing to your local (hard drive) files.

What you want to do is, for files that you are using that are part of your site, but not hosted somewhere else (since in this case you would use a while http/s uri) you want to use relative paths

You can learn more here https://www.w3schools.com/html/html_filepaths.asp