vote up 0 vote down star

I am looking to be able to launch a network file on our local intranet using FF or Chrome

Currently the link work good in IE

<a href="\\Start\Of\My\Network\file.xlsx">View Report</a>&nbsp;

but in FF it show

<a href="http://mydomain.com/\\Start\Of\My\Network\file.xlsx">View Report</a>&nbsp;

is there a way to get the link to render properly...Just a simple click from a href tag.

flag

2 Answers

vote up 0 vote down check

This is not enabled in firefox for security reasons (remember that most computers have files and applications of a sensitive nature located in similar locations, like C:\System\Windows)

you can try adding this to the user.js file for any user that needs to be able to access these links:

user_pref("capability.policy.policynames", "localfilelinks");
user_pref("capability.policy.localfilelinks.sites", "file:///[[PUT SERVER NAME HERE]]";);
user_pref("capability.policy.localfilelinks.checkloaduri.enabled",  "allAccess");

Just remember that this is a security risk.

link|flag
This is intranet traffic only but it not feasible to get over 100+ people to add this to their firefox – JuniorFlip Sep 3 at 18:01
Unfortunately this is the only way. You could easily add this to everyone's user.js file using a domain push if all your intranet users are on the same domain. – free-dom Sep 3 at 18:03
vote up 0 vote down

Firefox seems to want file://///Start/Of/My/Network/file.xlsx

Chrome and IE handles that too. file://Start/Of/My/Network/file.xlsx appears to work in Chrome as well, sometimes firefox hics up on it..

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.