#868 closed Bug report (wontfix)
SFTP over SSH2 - 2.2.13a - ascii transfer
Reported by: | jabbabongo71 | Owned by: | |
---|---|---|---|
Priority: | blocker | Component: | FileZilla Client |
Keywords: | Cc: | jabbabongo71, elder82, angeld, claudionieder, davidmarcus, dingsda, softinn, giponino, Alexander Schuch | |
Component version: | Operating system type: | ||
Operating system version: |
Description
the ascii transfer is not functioning when transfer
files .txt in ascii (or automatic) modus. when
tranferrring from windows to unix the file remains the
same. there is still the crlf.
(when i change the connection to ftp it is functioning)
Change History (9)
comment:1 by , 20 years ago
comment:2 by , 19 years ago
The transfer over ssh is always in binary mode. This is not
a problem, is a feture of ssh/sftp.
You need to use a external program in the unix machine to
make the conversión, for example sed.
# sed samples
http://www.student.northpark.edu/pemente/sed/sed1line.txt
comment:3 by , 19 years ago
Actually
http://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/draft-ietf-secsh-filexfer-10.txt
defines how the client can tell the server, that a file is
textand should be stored according to the servers newline
convention:
SSH_FXF_ACCESS_TEXT_MODE
Indicates that the server should treat the file as
text and
convert it to the canonical newline convention in use.
(See
Determining Server Newline Convention. (Section 5.3)
Also as I was asked by a filezilla 2.2.17a user to post a
bug report in respect that filezilla did not transfer
correctly his text file from Win2000 to FreeBSD even though
he had set Ascii-Mode, I think that as long as filezilla
does not support Ascii mode in sftp, this should be made
clear in the user interface.
comment:5 by , 18 years ago
I have the same problem with filezilla as client: transfering an ascii file from
an *nix-Server to a W*ndows box with sftp is always transfered as binary no matter
what I set in the transfer type (ascii/auto). Is there a solution in the new
version 3?
comment:6 by , 17 years ago
I agree with the post of claudionieder:
if SFTP protocol is not supporting automatic ASCII translations like in FTP and the developers are not willing to add the functionality in the client code, then this should be made VERY clear at least in the program documentation or help file (and possibly also in the File Types settings pane).
I'll check the wiki and add an entry if it's not already there.
Thanks,
Paolo
comment:7 by , 16 years ago
hi,
this problem is also present with version 3.0.9.2.
"The transfer over ssh is always in binary mode" is FALSE, in not true!!!!!!
Other clients, like CuteFTP, transfer correctly ASCII files as ASCII and not as BINARY.
This is a clear DEFECT of FileZilla, please correct it!!!
comment:8 by , 16 years ago
Priority: | high → criticalblocker |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
FileZilla uses PuTTY's SFTP implementation. This means the proper place to request this feature would be with the PuTTY developers.
comment:9 by , 16 years ago
codesquid or anyone else: Is there any way to get this issue's importance raised with the puTTY people? It is a showstopper for my group of developers.
As a result of this, we are dropping use of Filezilla.
Thanks,
stevec@…
I'm having the same problem...
I'm not sure, but I guess the fact is that in ftp the
conversion is performed by the server, but in ssh ftp the
conversion should be performed by the client :(
...
\me searches better the web.....
reading the document
http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-08.txt
(page 28) I found that when using the flag SSH_FXF_TEXT the
server should treat the file as text and perform the
conversion, but probably most servers don't. :(