I have a problem where I can't get to work <a>
link with a file from a remote fileserver.ave
My setup is as following:
I have an Intranet on which i need to link files from a fileserver on the same network but different server.
This is my current approach:
<a href="file:\\P\prezentace\Historická%20okna%20v%20současnosti.pptx">File 1</a><br>
<a href="file://192.168.0.3/prezentace/Thumbs.db">File 2</a><br>
<a href="file:\192.168.0.3\prezentace\Aktuální marketingové podklady\1Intranet_Sharepoint">Folder 1</a><br>
<a href="file://192.168.0.3/P/Historická%20okna%20v%20současnosti.pptx">File 3</a>
I've tried all of the above, but none can get to download or display the required file or folder, no matter the subject, on click nothing happens.
I suppose that the IP adress after file://
is targetted on the client side, which shouldn't be a problem because any client should have access to that adress in the end.
What may I be doing wrong? Is the problem in the syntax or am I missing something completely?
Thanks!