I want my HTML page to link to a directory in a Samba share (protocol SMB/CIFS Windows share). In my HREF I wrote file://server/Share2/folder3

Most browsers handle it fine (mount the share and open a file manager on folder3) except Internet Explorer 7 and Internet Explorer 8, which says Permission denied without even asking for a password. What should I write in the HREF for IE7/8 to be able to open folder3?

Notes:

  • Actually this works fine if the path does not contain the folder3 part.
  • It works fine if the share is already mounted. So if you test it, type "net use" to make sure that no share is already mounted.
  • The Windows username and the share username are not the same, so a popup should ask for a login/password. Again, this works fine if the path does not contain the folder3 part.
  • For the curious: I am doing this to try and fix a bug in an open source software.
  • link|improve this question

    Please quote that part from smb.conf on your Samba server that sets the properties for the Share2 share. Also, what are the Unix file permissions for the filesystem directory where this share is hosted? (in other words: permissions for what is described by path = ... in smb.conf) – pipitas Jul 31 '10 at 14:00
    feedback

    1 Answer

    The correct syntax for file:// links is:

    file:///path/on/local/computer
    
    file://server/share/folder
    

    So in your case try file://server/Share2/folder3

    link|improve this answer
    Unfortunately, changing to the correct syntax does not change anything. Both syntaxes (legacy and correct) lead to the same problem. Thanks anyway! – Nicolas Raoul Dec 15 '09 at 5:40
    feedback

    Your Answer

     
    or
    required, but never shown

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