Reputation: 6791
Is there a winning combination that will make a FTP link work in all the browsers?
ftp://username:password@ftpserver/folder
ftp://username:password@ftpserver/path/to/folder
Seems that IE9 only works if you give it an absolute path. Anybody found a better solution?
Upvotes: 3
Views: 26398
Reputation: 11058
Try ftp://username:password@ftpserver/folder/
(add the trailing slash if it is a folder). This works in IE too.
By the way, I suppose there is no such notion as absolute path in FTP links: all FTP paths are treated as being originated from FTP root folder.
Upvotes: 3
Reputation: 5823
I think you have another problem than browser incompatibility. I just tried all 3 browsers and they all acted the same way with the same FTP url. Maybe there is some kind of a shortcut/redirection path in your FTP root and other browsers support this but IE9 doesn't (I don't think so but trying to see what might be wrong). Otherwise, all 3 browsers should be able to see the same root and should work with same paths according to my tests with my FTP servers.
Upvotes: 1