Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open and save documents on local intranet site from shared folder

I have an intranet site where we host files and forms.

When someone clicks on a link to a file on Internet Explorer it opens the file from a shared folder on the server so people who have permission can edit it and save changes. Other people have read only permissions.

If a person clicks on the link in a browser other than Internet Explorer it downloads the file instead of opening it from the shared folder.

Is there a way to have other browsers open the file from the shared folder instead of downloading it?

NOTE: I should clarify that in IE I use the file:// protocol and in other browsers I use http:// because file:// does not work.

like image 714
Tony Brix Avatar asked Apr 21 '15 15:04

Tony Brix


People also ask

How to access shared folder in lan?

Double-click the name of the computer from which the folder you want to open is being shared. Select a folder. Double-click the folder you want to open. Enter a username and password if prompted.

How do I access intranet files?

To locate the Local intranet dialog box in Internet Explorer, click Tools, click Internet Options, click Security, and then click Local intranet.

How to open shared network folder in windows?

Click This PC in the left side shortcut menu. Click Computer > Map network drive > Map network drive to enter Mapping wizard. Confirm drive letter to use (next available shows up by default). Enter the server path for the network folder (e.g. \\files.umn.edu\NAME\FOLDER, or \\files.umn.edu\OIT\Subfolder).

How to open shared folder in run?

There are a couple of ways to connect to a folder that has been shared over the network. The fastest way is by typing the Universal Naming Convention (UNC) path in the Start, Run dialog box. The UNC defines the path to a shared folder using the format \\server\sharename.


1 Answers

For read only mode it depends on the browser i.e. Firefox needs some parameters for file uri processing

user_pref("capability.policy.policynames", "localfilelinks");
user_pref("capability.policy.localfilelinks.sites", "http://yourServer1.companyname.com http://yourServer2.companyname.com");
user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");

then it should invite you to download or open the document

For read/write access IE is mandatory

like image 75
Pat Avatar answered Jan 02 '23 21:01

Pat