SitePoint Sponsor

User Tag List

Results 1 to 4 of 4

Thread: URL Links from UNIX to IIS

  1. #1
    SitePoint Member
    Join Date
    Jul 2011
    Posts
    18
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Question URL Links from UNIX to IIS

    I've set the link up as file:///M|/folder/folder/file.xlsx Link doesn't work.


    I've also tried

    file:///M:\folder\folder\file.xlsx

    file:///M/folder/folder/file.xlsx

    file://M/folder/folder/file.xlsx

    None of these work.

    What am I doing wrong?

    I'm using IE8 and dreamweaver CS5 on a Windows 7 system.


  2. #2
    Robert Wellock silver trophybronze trophy
    SitePoint Award Recipient xhtmlcoder's Avatar
    Join Date
    Apr 2002
    Location
    A Maze of Twisty Little Passages
    Posts
    6,240
    Mentioned
    51 Post(s)
    Tagged
    0 Thread(s)
    I don't really know why you are using that weird method but I suspect you meant to write: file:///M://xxxx/xxxx/file.xlsx
    };-) http://www.xhtmlcoder.com/
    Thinking Web: Voices of the Community

    > March 2013 - SitePoint forums: Spot the Error 3: Calling all Sleuths! Winner Announced!... She knows how to spot simple <code> errors but do you?

  3. #3
    i want cake and cookies Stomme poes's Avatar
    Join Date
    Aug 2007
    Location
    Netherlands
    Posts
    9,996
    Mentioned
    41 Post(s)
    Tagged
    1 Thread(s)
    If you've copied the file locally to a Windows system, then you'd have to use a Windows path:
    C:\blah\blah\blah

    If it's online, it will externally always use UNIX-style paths:
    domain.com/path/to/file

    Even if the server is IIS, if you are trying to reach the file *externally* there will be UNIX-style urls. This is why even though there are plenty of IIS servers out there on the web, all web URLs are still domain.com/path/to/file

    Internally from a Windows machine to local IIS server, I have no idea, but I'd think it would be 100% Windows-style paths (so no file:/// stuff).

  4. #4
    SitePoint Member
    Join Date
    Jul 2011
    Posts
    18
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok, thanks!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •