Friday, July 07, 2006

Firefox/mozilla can not open local links

I found this in google groups (sorry, lost track of a reference to the author) when looking for a way to make firefox open links to local files :

For firefox 1.5 : go to the url
about:config
and search for
security:checkloaduri
and set it to false.

Per site : in prefs.js :
user_pref("capability.policy.policynames", "localfilelinks");
user_pref("capability.policy.localfilelinks.sites", "http://www.example.com");
user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");

The line w

ith capability.policy.localfilelinks.sites can have multiple websites separated by spaces, like so: user_pref("capability.policy.localfilelinks.sites","http://www.example.com http://www.example.net");

0 Comments:

Post a Comment

<< Home