Custom Query (8170 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2801 - 2900 of 8170)

Ticket Summary Owner Type Priority Component Resolution
#1140 Cannot import sites Bug report normal FileZilla Client
Description

I wanted to switch from XML-file to the registry so I exported my settings, uninstalled Filezilla, reinstalled and selected use registry (force).

The problem is that now when I want to import my old settings into the registry nothing seems to happen. I use the import settings tool and select my old xml-file but I can't get my sites back.

On a closer look, it appears that my sites wasn't even saved when I exported my settings. That really should have been the case.

And by the way, using config files does not exclude multi-user. Just save the users config files in their application data folder.

#1144 Check for Update error Bug report normal FileZilla Client
Description

using:

2.9.4 Nightly Build: 2006.08.01 i589 mingw32msvc-gcc (Gcc)3.4.5 (mingw special) -g -O2 -Wall -g -fexceptions

bug:

Check for update (nightly builds)returns:

A newer version of FileZilla is available: 2006-08-28 Nightly

note: today is 2006-08-01

#1145 Critical Transfer Error eliminated by switching to Passive Bug report normal FileZilla Client
Description

I kept getting a Critical Transfer Error in FileZilla while uploading to SourceForge. It turns out that the server was prompting me to switch to PASSIVE mode; when I did that, the problem went away. It works fine now.

Is it possible for "Critical Transfer Error" to suggest Passive Mode as a possible solution?

Thank you.

#1146 Countryspecific characters do not work in passwords Bug report normal FileZilla Client
Description

I know, there are a lot of bugreports concerning difficulties with countryspecific characters (for example ÄÖÜ) in various contexts. May I draw your attention to the fact, that in the FileZilla-Client these characters do not work in passwords as well.

Users are accustomed to use such characters in passwords, because they are able to use them - for example with Servers as Serv-U and clients like CuteFTP and FTP-Voyager.

Much to my regret this is a reason, why FileZilla at the present time cannot be recommendet as alternative to these clients. Perhaps you can set the bug on the list.

Thanks Herby

#1147 Cannot GUI upload to unlist-able directory Bug report normal FileZilla Client
Description

From the GUI interface, FileFilla will not upload to a directory it can't "list".

You can "cd" to that directory and get a "current directory is" returned but if a "list" is denied and you subsequently "doublelick" on a file to upload, FileFilla arbitrarily disconnects and starts over which (of course) negates the previous "cd" command. See below.

Thanks ~ Directory listing successful Status: Retrieving directory listing... Command: CWD /incoming/ Response: 250 CWD command successful. Command: PWD Response: 257 "/incoming" is current directory Command: TYPE A Response: 200 Type set to A Command: PASV Response: 227 Entering Passive Mode (64,102,255,95,221,148) Command: LIST Response: 550 /incoming/: Permission denied Error: Could not retrieve directory listing * doubleclicked to upload here * Status: Connecting to ftp.cisco.com ... Status: Connected with ftp.cisco.com. Waiting for welcome message... Response: 220- <}======[+]> FTP.CISCO.COM <[+]======={> Response: 220- Response: 220- Welcome to the Cisco Systems FTP server. Response: 220- Response: 220- Local time is Tue Aug 08 16:45:01 2006. Response: 220- Response: 220- This server has a number of restrictions. If you are not familiar Response: 220- with these, please first get and read the /README or /README.TXT file. Response: 220- Response: 220- If you have any odd problems, try logging in with a minus sign (-) as Response: 220- the first character of your password. This will turn off a feature that Response: 220- may be confusing your ftp client program. Response: 220- Response: 220- Please send any questions, comments, or problem reports about this Response: 220- server to cco-team@…. Response: 220- Response: 220- NOTE: Response: 220- o To upload or download files from ftp.cisco.com, you must be running a *passive-mode* Response: 220- capable FTP client. Response: 220- Response: 220- o To upload files on this system, you must cd to the /incoming directory. Response: 220- Uploads are available on ftp-sj.cisco.com only. Response: 220- Response: 220- Cisco.com | | Cisco Systems, Inc.

Response: 220- Email: cco-team@…
|
| 170 West Tasman Drive

Response: 220- Phone: +1.800.553.2447

.:
|:..:|:. San Jose, CA 95134

Response: 220- Response: 220- You may login with: Response: 220- + Your Cisco.com username and password, or Response: 220- + "anonymous" followed by your e-mail address for guest access. Response: 220 ftp-rtp-2.cisco.com FTP Server (Apache Oct 31 2005 17:05:18) ready. Command: USER anonymous Response: 331 Guest login ok, type your email address as the password Command: PASS * Response: 230 User anonymous logged in Command: SYST Response: 215 UNIX Type Command: FEAT Response: 211-Extensions supported: Response: AUTH TLS Response: PBSZ Response: PROT Response: SIZE Response: MDTM Response: 211 END Status: Connected Status: Starting upload of C:\Program Files\Syslogd\Logs\EPL 603463359Debugs2.txt Command: PWD Response: 257 "/" is current directory Command: TYPE A Response: 200 Type set to A Command: PASV Response: 227 Entering Passive Mode (64,102,255,95,193,221) Command: STOR EPL 603463359Debugs2.txt Response: 550 Permission denied: STOR not allowed here Error: Upload failed Status: Retrieving directory listing... Command: CWD / Response: 250 CWD command successful. Command: PWD Response: 257 "/" is current directory Command: TYPE A Response: 200 Type set to A Command: PASV Response: 227 Entering Passive Mode (64,102,255,95,221,149) Command: LIST Response: 150 Opening ASCII mode data connection for file list Response: 226 Transfer complete. Status: Directory listing successful Command: REST 0

#1148 Problem connecting to some servers Bug report normal FileZilla Client
Description

We are having trouble connecting to some servers and have traced the problem back to the code.

A bug that was fixed in the latest version of PuTTY has not been propagated to the latest version of the 2.2.x branch of FileZilla.

Specifically, when filezilla connects, some servers send a window adjust (SSH2_MSG_CHANNEL_WINDOW_ADJUST) to allow the client to send data after creating the session. FileZilla then fails to trigger the send data functionality and thus hangs. The method in question is in SSH.C:

static void ssh2_msg_channel_window_adjust(Ssh ssh, struct Packet *pktin) {

unsigned i = ssh_pkt_getuint32(pktin); struct ssh_channel *c; c = find234(ssh->channels, &i, ssh_channelfind); if (c && !c->closes) {

c->v.v2.remwindow += ssh_pkt_getuint32(pktin);

ssh2_try_send_and_unthrottle(c);

}

}

The line with the > does not exist in FileZilla, but does exist in the latest PuTTY. In addition, they added the body of that method:

static void ssh2_try_send_and_unthrottle(struct ssh_channel *c) {

int bufsize; if (c->closes)

return; /* don't send on

closing channels */

bufsize = ssh2_try_send(c); if (bufsize == 0) {

switch (c->type) {

case CHAN_MAINSESSION:

/* stdin need not receive an unthrottle

  • notification since it will be polled */

break;

case CHAN_X11:

x11_unthrottle(c->u.x11.s); break;

case CHAN_AGENT:

/* agent sockets are request/response and

need no

  • buffer management */

break;

case CHAN_SOCKDATA:

pfd_unthrottle(c->u.pfd.s); break;

}

}

}

Can you update FileZilla with this part of the laetst PuTTY code (or all the latest changes, if possible, the latest PuTTY works great on all servers)?

Thanks! James

#1149 Filenames and content are switched Bug report normal FileZilla Client
Description

This is very serious!

The contents of files are getting mixed up. I have downloaded my web site several times and the contents of some of the files are interchanged. They are files that are near each other in the directory, so they were probably downloaded close to each other.

I have erased the directory on my PC and re-downloaded the files several times and it appears to be different files each time.

Some History: I previously had an older version of Filezilla (can't remember which one, but about 6 months old) and upgraded to 2.2.26a yesterday. That is when the problem started.

Thanks for looking into this ... Paul

#1150 Setting directory's sticky bit sends wrong command to server Bug report normal FileZilla Client
Description

When setting a directory's sticky bit, I think the wrong command is sent to the server.

Reproduce steps:


Right-click a directory on the remote site, choose "File attributes...", enter 1777 as the numeric value, click OK. The remote site in my case is some Linux box (I don't have more details here, I'm sorry).

The message log now shows:


Command: SITE CHMOD 49777 /public/sites/www.someserver.nl/aaa Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=8192 OpState=-1 caller=0x010819b4 Response: 200 SITE CHMOD command ok. Trace: FtpControlSocket.cpp(3988): ResetOperation(1) OpMode=8192 OpState=-1 caller=0x010819b4 Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"/public/sites/www.someserver.nl/","",0) OpMode=0 OpState=-1 caller=0x010819b4 Status: Retrieving directory listing... Command: TYPE A Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=8 caller=0x010819b4 Response: 200 Switching to ASCII mode. Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=8 caller=0x010819b4 Command: PASV Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=7 caller=0x010819b4 Response: 227 Entering Passive Mode (81,4,97,176,245,244) Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=7 caller=0x010819b4 Trace: TransferSocket.cpp(540): SetActive() caller=0x01162b2c Command: LIST -a Trace: TransferSocket.cpp(428): OnConnect(0) caller=0x01162b2c Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=9 caller=0x010819b4 Response: 150 Here comes the directory listing. Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=9 caller=0x010819b4 Trace: TransferSocket.cpp(500): OnClose(0) caller=0x01162b2c Trace: TransferSocket.cpp(1107): Close() caller=0x01162b2c Trace: TransferSocket.cpp(1107): Close() caller=0x01162b2c Trace: FtpControlSocket.cpp(1969): TransferEnd(4) OpMode=4 OpState=10 caller=0x010819b4 Trace: FtpControlSocket.cpp(1213): List(TRUE,0,"","",0)

OpMode=4 OpState=10 caller=0x010819b4

Trace: drwxr-xr-x 9 48171 48258 624 Aug 14 16:38 . Trace: drwxr-xr-x 3 48171 48258 88 Apr 20 12:40 .. Trace: -rw-r--r-- 1 48171 48258 1348 Aug 14 16:37 CContact.php Trace: -rw-r--r-- 1 48171 48258 693 Aug 14 16:37 CCounter.php Trace: -rw-r--r-- 1 48171 48258 936 Aug 14 16:37 CDatabase.php Trace: -rw-r--r-- 1 48171 48258 15106 Aug 14 16:37 CGallery.php Trace: -rw-r--r-- 1 48171 48258 6914 Aug 14 16:37 CGuestbook.php Trace: -rw-r--r-- 1 48171 48258 353 Aug 14 16:37 CLinks.php Trace: -rw-r--r-- 1 48171 48258 4082 Aug 14 16:37 CMovieGallery.php Trace: -rw-r--r-- 1 48171 48258 4594 Aug 14 16:37 CNews.php Trace: -rw-r--r-- 1 48171 48258 763 Aug 14 16:37 CUtils.php Trace: d------r-- 2 48171 48258 48 Aug 14 16:38 aaa Trace: drwxr-xr-t 3 48171 48258 104 Aug 14 16:03 archive Trace: drwxr-xr-x 2 48171 48258 80 Aug 12 12:03 css Trace: drwxr-xr-x 2 48171 48258 344 Aug 12 12:10 img Trace: -rw-r--r-- 1 48171 48258 3653 Aug 14 16:37 index.php Trace: drwxr-xr-x 2 48171 48258 72 Aug 05 09:44 js Trace: drwxr-xr-x 2 48171 48258 72 Aug 12 13:38 movie_archive Trace: drwxr-xr-x 13 48171 48258 344 Aug 14 16:28 photo_archive Trace: -rw-r--r-- 1 48171 48258 176 Aug 14 16:37 phpinfo.php Trace: -rw-r--r-- 1 48171 48258 1149 Aug 14 16:37 watermark.php Trace: TransferSocket.cpp(96): ~CTransferSocket() caller=0x01162b2c Trace: TransferSocket.cpp(1107): Close() caller=0x01162b2c Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=10 caller=0x010819b4 Response: 226 Directory send OK. Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=10 caller=0x010819b4 Status: Directory listing successful Trace: FtpControlSocket.cpp(3988): ResetOperation(1) OpMode=4 OpState=10 caller=0x010819b4

Note the command on the first line in the message log, it states: "SITE CHMOD 49777 /public/sites/www.someserver.nl/aaa", while I think it should be "SITE CHMOD 1777 /public/sites/www.someserver.nl/aaa".

Note that I replaced my actual server with "someserver".

Kind regards,

Pascal

#1151 Crashes with tracing enabled and using GSS Bug report normal FileZilla Client outdated
Description

If debug tracing is enabled and you connect to a GSS enabled server, the client crashes with a C++ Library Runtime error. Does not crash if using SFTP or non- GSS FTP (domain not listed in GSS enabled servers). Crashes whether or not you have Kerberos tickets. Last line in debug logs is the server's 220 ready message:

FileZilla started (08/15/2006 13:40:38) Status: Connecting to [hostname deleted] ... Trace: ControlSocket.cpp(185): m_pGssLayer changed state from 0 to 1 caller=0x003fbed4 Trace: ControlSocket.cpp(185): m_pGssLayer changed state from 1 to 2 caller=0x003fbed4 Trace: ControlSocket.cpp(185): m_pGssLayer changed state from 2 to 4 caller=0x003fbed4 Trace: FtpControlSocket.cpp(1001): OnConnect(0) OpMode=1 OpState=-2 caller=0x003fbed4 Status: Connected with [hostname deleted] Waiting for welcome message... Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-2 caller=0x003fbed4 Response: 220 [hostname deleted] FTP server (Version 5.60) ready.

#1152 filezilla and date problem Bug report high FileZilla Client
Description

FTP server is on AIX platform, where language is set to slovenian. If file is created in august, it doesn't appear in filezilla remote file window. If I "touch -t" file date to july or september, then I can see it in filezilla remote window.

I have enabled debuging and I can see files listed in trace: Trace: -rwxrwx--- 1 irc PowerH 9 31 jan 2002 1.txt Trace: -rwxrwx--- 1 irc PowerH 9 16 avg 14:53 2.txt

But file 2.txt doesn't appear in remote file list window.

There are problems with parsing months like "avg".

Same problem on hp-ux with slovenian language, when file or directory is created in august (avg).

Other slovenian abbreviates are: jan, feb, mar,apr, maj, jun, jul, avg, sep, okt, nov, dec

Filezilla is the latest (tested with older versions too).

#1153 Serverchange with // does not work Bug report normal FileZilla Client
Description

After login into a server I have to change the internal server by writing for example metusalix/tmp into the "Remote Site:" drop down list. This is equal to the ftp command "cwd metusalix/tmp".

But FileZilla is throwing away the second / and so the command fails. This is what Filezilla is writing into the log when I'm typing "metusalix/" into the "Remote Site:" drop down list and hitting enter:

Command: CWD /metusalix/ Response: 550 Invalid Path Error: Could not retrieve directory listing

but it should be

Command: CWD metusalix/

instead.

Filezilla version: 2.2.25

#1154 File upload permission denied loop Bug report normal FileZilla Client
Description

When attempting to upload a file to a folder where the user doesn't have write permissions, the FileZilla GUI is caught in a confusing loop. It displays a "File Already Exists" dialog asking the user whether or not they want to "Overwrite", "Overwrite If Newer", "Resume", "Rename", or "Skip". None of this is accurate, since the real problem is that the user has no permission to upload/write the file. If you click "OK" in the dialog and the default of "Overwrite" is selected, the dialog simply returns an additional 2 times and then it appears as if the file was uploaded, but a "Refresh Views" will then show that the file was not uploaded. The only place that the user will see a "permission denied" is in the message log. This is all very confusing. If a user is being prevented from upload a file due to permission denied, shouldn't the GUI just present a dialog that states that?

#1155 Upload successful but zero bytes in file Bug report normal FileZilla Client
Description

When transferring files larger than 10MB to a PureFTPD server (Version 1.0.20-7 running on Suse Linux 10.0)upload is successful (according to logs) But the file length is zero bytes. This appears to happen less often with smaller files, but almost always with files of 100MB or more. The newest version seems to do it more than older versions. It will resume properly if interrupted, but is just as likely to create zero length files. I am including the entire log file generated during these transfers.

I haven't found another client which does the same

thing. If needed, I can provide a network packet capture or try it again with various settings if it will help. This problem seems to occur whether active or passive, and through two different firewalls (Symantec Enterprise and Smoothwall) or through no firewall.

#1156 Remote window wrong Alexander Schuch Bug report normal FileZilla Client
Description

Version 2.2.26a on Win XP Pro SP2 connecting to Solaris 9 via SFTP

When I connect to different sites toggles the remote window during download to the content of the previous site (looks like cached). To get the original content I need to reload the remote window.

e.g. 1st site --> remote window: ABC download ABC 2nd site --> remote window: XYZ download XYZ, remote window displays ABC.

I can only use SFTP, hence not tested with "normal" FTP.

#1157 Cannot add end-of-line in "Comments" field Bug report normal FileZilla Client
Description

In the "Comments" field of the Site Manager:

If a comment exists and you want to add text and end a line in the midst of the existing comment, how do you end the line?

Pressing "return" will fail. (It will instead connect you to the site.)

There seems to be no way to end the line.

EXAMPLE:

Existing text:

This is a sample of an existing comment. This is the last line of the comment.

Desired text:

This is a sample of an existing comment. You would like to add this line. This is the last line of the comment.

PROBLEM: You cannot add the end-of-line for that middle line.

#1160 Filezilla crashes 2000 advanced server on connection Bug report normal FileZilla Client
Description

Connecting to Globalscape ftp server running on Windows 2000 Advanced Server is causing the ISP server to crash, resulting in a server reboot. (Filezilla version 2.2.26a). Thought the server was at fault but after uploading from CuteFTPpro, on a diferant laptop - I had no issues.

#1161 FileZilla Client to vsftpd (CentOS) random data modification Bug report critical FileZilla Client
Description

I test file download and file upload. There is a modification like follow. I found that modification occurs in download time.

ftp server : vsftpd-1.2.1-3E.1, CentOS 3.6

Kernel version : Linux version 2.4.21-

37.ELsmp ftp client : WinXP, FileZilla 2.2.27

There is no modification when I use WinXP ftp(console client) and Alftp.

The follow is result of my test.


[root@]#xxd ../ce.org > ../ce.xxd [root@]#xxd ce.org > ce.xxd [root@]# diff ce.xxd ../ce.xxd

(downloaded file) (orgfile)

86009c86009 < 014ff80: 5cba 3a54 f9c1 6aa1 a472 c9b8 72d9 2994 \.:T..j..r..r.). ---

014ff80: 5cba 3a54 e512 afe1 a472 c9b8 72d9 2994

\.:T.....r..r.). 975097c975097 < 0ee0f80: 5eec b17c ce96 6fad 8cde a2b6 6e5e 47d3 ..|..o.....nG. ---

0ee0f80: 5eec b17c 9e13 6361 8cde a2b6 6e5e 47d3

..|..ca....nG. 2262265c2262265 < 2284f80: 0b66 332e b941 651e 1d1d 83d8 82bc e8e7 .f3..Ae......... ---

2284f80: 0b66 332e 778d 846c 1d1d 83d8 82bc

e8e7 .f3.w..l........ 2283001c2283001 < 22d5f80: fce5 fcc1 af3b e453 4ccd de4b 9626 565d .....;.SL..K.&V] ---

22d5f80: fce5 fcc1 bdfc 12ae 4ccd de4b 9626

565d ........L..K.&V] 2625529c2625529 < 280ff80: ac6b 3913 a7b8 b17a 0ea3 e57c dd07 8ad1 .k9....z...|.... ---

280ff80: ac6b 3913 2976 f331 0ea3 e57c dd07

8ad1 .k9.)v.1...|.... 3548561c3548561 < 3625900: 1ee9 4c59 c3eb c905 2dd5 2245 0ddf 4747 ..LY....-."E..GG ---

3625900: 1ee9 4c59 6c72 5701 2dd5 2245 0ddf

4747 ..LYlrW.-."E..GG 3560185c3560185 < 3652f80: 0958 16f6 41a7 a007 e493 d169 8550 1f7d .X..A......i.P.} ---

3652f80: 0958 16f6 4a46 6d90 e493 d169 8550

1f7d .X..JFm....i.P.}

#1163 Bug in FTP Proxy settings UI Bug report normal FileZilla Client
Description

On FileZilla 2.2.27, go to:

Edit->Settings->FTP Proxy Settings

and select any Proxy Type, then enter some details in the Proxy host, Port, User and Pass fields and save these.

Next go to Edit->Settings->FTP Proxy Settings again and try and remove all the entries you put in the fields and click on None for the proxy type.

You will get a /!\ dialog box with no text. If you press OK for the dialog box and then press OK for the settings window, you will get the same dialog box and cannot get out without pressing Cancel.

#1164 FileType displayed incorrectly for VMS Alexander Schuch Bug report normal FileZilla Client
Description

Connecting to a VMS server, the FileType for a jpg is shown as jpg;1 File

This is a concatenation of the file type and file version number. If there is more than one version of the same file, the FileType is shown as jpg;2 File, or jpg;3 File etc. This applies to all file types other than directories.

#1165 Queue stores PW when "Don'tRememberPassword=1" Bug report normal FileZilla Client
Description

Items in exported queue contain password (albiet encrypted) even when "Don'tRememberPassword=1". I would think queued servers would need to reauthenticate when "Don't Remember" was set.

<?xml version="1.0" encoding="ISO-8859-1"?> <FileZilla> <TransferQueue> <QueueItem> <File Localfile="C:\Documents and Settings\brcummin\Desktop\ILSTU_report.zip" Size="9769744" Remotefile="ILSTU_report.zip" Remotepath="4096 0 8 ilstuftp"/> <Data Transfermode="1" Get="1" RetryCount="0" Open="0"/> <Server Host="ftp.peopleadmin.com" Port="21" User="ilstuftp" Pass="073007000092024003000072072" FirewallBypass="0" DontRememberPass="0" ServerType="4096" Path="" PasvMode="0" TimeZoneOffset="0"/> </QueueItem> <QueueItem> <File Localfile="C:\Documents and Settings\USER\Desktop\BADSPDF" Size="10" Remotefile="BADSPDF" Remotepath="4112 0 6 INRBRC 3 TMN 3 JCL"/> <Data Transfermode="1" Get="1" RetryCount="0" Open="0"/> <Server Host="mvs.host.domain.edu" Port="21" User="user" Pass="A mask of 24 numbers" FirewallBypass="0" DontRememberPass="1" ServerType="4112" Path="&apos;USER.&apos;" PasvMode="0" TimeZoneOffset="0"/> </QueueItem> <QueueItem> <File Localfile="C:\Documents and Settings\user\Desktop\FAW.GLS.DOWNLOAD" Size="620" Remotefile="AIX.xxx.xxxxxxxx" Remotepath="4096 0 4 home 8 user"/> <Data Transfermode="1" Get="1" RetryCount="0" Open="0"/> <Server Host="AIX.xxx.xxxxxxxx" Port="21" User="user" Pass="A mask of 24 characters" FirewallBypass="0" DontRememberPass="1" ServerType="4096" Path="" PasvMode="0" TimeZoneOffset="0"/> </QueueItem> </TransferQueue> </FileZilla>

#1166 lost all accounts Bug report normal FileZilla Client
Description

Hello

first of all, sorry for my poor english!

Using Filezilla for one year I've stored all my site with all accesses.

I closed it, reset my computer, and at the start try to launch Filezilla, no problem, but all my sites stored are lost ! There is no more adresses, nothing at all.It's empty ! Can anyone tell me what append ? Because there is a lot of site and I don't remember all my accesses !

Can I find it or not ? Can anybody help me ?

Michel

#1167 Default local directory stores only very short paths Bug report normal FileZilla Client
Description

FileZilla 2.2.27. When I try to set Default local directory in Site manager/My site/Advanced, the entry is stored only if it is short: Works: E:\Documents and Settings\jan\My Documents\Work\ Doesn't work: E:\Documents and Settings\jan\My Documents\Work\j

#1168 openssh banners not displayed Alexander Schuch Feature request normal FileZilla Client fixed
Description

Login Banners displayed by the openssh sftp-server are not displayed in the Filezilla client.

From my sshd_config:

Banner /etc/ssh/sshd-banner

The referenced banner displays when ssh'ing into the server, and when using the sftp command from console as well. Filezilla, however, seems to strip such banners out.

#1169 Filezilla in auto mode for file transfer breaks html files Bug report normal FileZilla Client
Description

When uploading several html files with a javascript, with the file transfer settings as "auto", the javascript broke because some characters were deleted by filezilla. It took me hours to solve this problem.

It was solved by uploading the html files using the

binary setting, even though the files are all ascii encoded! btw, love the program! Thanks for all the hard work!

#1170 No Upload possible, if no Permision to "LIST" Bug report normal FileZilla Client
Description

Filezilla Client (2.2.5) does not react to "STOR"- command, if the user has no permision to "LIST"- command.

I'l append a screenshot of the server-settings.

With any ohter FTP-Client there is no problem.

Here ist the client-log:

--- Status: Verbinden mit localhost... Status: Verbunden mit localhost. Warten auf Willkommens-Meldung... Antwort: 220-FileZilla Server version 0.9.11 beta Antwort: 220-written by Tim Kosse (Tim.Kosse@…) Antwort: 220 Please visit http://sourceforge.net/projects/filezilla/ Befehl: USER upload_only Antwort: 331 Password required for upload_only Befehl: PASS * Antwort: 230 Logged on Befehl: SYST Antwort: 215 UNIX emulated by FileZilla Befehl: FEAT Antwort: 211-Features: Antwort: MDTM Antwort: REST STREAM Antwort: SIZE Antwort: MLST type*;size*;modify*; Antwort: 211 End Status: Verbindung hergestellt Status: Verzeichnisinhalt wird abgeholt... Befehl: PWD Antwort: 257 "/" is current directory. Befehl: TYPE A Antwort: 200 Type set to A Befehl: PASV Antwort: 227 Entering Passive Mode (127,0,0,1,8,11) Befehl: LIST Antwort: 550 Permission denied. Fehler: Dateiliste konnte nicht empfangen werden ---

#1171 Rename errors Tim Kosse Bug report normal FileZilla Client
Description

It seems that Filezilla is not able to rename a file twice that is located on an Mac OS XSan (1.3) Volume. It also seems that filezilla cannot delete a file after it has been renamed.

Initial file name was test.php. After renaming it once to test2.php any further attempts to rename or delete the file errored out. I tries closing the restarting the application but the results were the same. Seems like there is some strange file name caching happening somewhere in the interaction.(please note that I have shortened the paths for read-ability)

Log Command: RENAME test.php test2.php Response: File moved / renamed successfully

Command: RENAME test2.php test.php Response: Move/Rename test.php test.php: no such file or directory

Command: DELE test2.php Response: rm test.php: no such file or directory

Tests with other sftp clients (Winscp382 and Tunnelier) seem to indicate that this is an Xsan-Filezilla specific issue. Rename and Delete operations worked normally on other non-Xsan volumes on the server (i.e:/var/tmp/). I will try to update Xsan today (version 1.4) to see if it resolves the issue. Just thought you might want a heads up.

#1172 "Always trust this certificate" not working 2.2.28, 2.2.24 Bug report normal FileZilla Client
Description

Checking the "always trust this certificate" is not working -- I am prompted every time whether or not to accept the certificate.

Client is FileZilla 2.2.28 (and I reproduced with 2.2.24 also).

Server is FileZilla Server 0.9.19beta

The popup prompt says self-signed certificate (which is true, as I used the FileZilla Server to generate the cert, several versions ago), error at depth 1 in the chain.

#1174 Install error Bug report normal FileZilla Client
Description

When attempting to install FileZilla version 2_2_28, I receive the following error message:

The procedure entry point WaitForSingleObject could not be located in the dynamic link library Kernel32.dll

This error occurred on both NT SP6a and XP SP2. Version 2_2_27 installed without error.

#1175 Resume currupt files under certains circumstances Bug report normal FileZilla Client
Description

In this situations:

  • FTP Download
  • Server: IIS 6
  • Proxy: HTTP 1.1 without any authentication

The connection is quite unstable so many retries/resume are required to complete de download.

The download still continue when the local file size reach the remote file size. The local file size continue to grow and the file appear corrupted.

In my opinion: The resume restart download from the begining of the file but append to the previously downloaded part. It's not seems to be a server error because pure-http download manager (downloadthemall firefox extension or gigaget) download the same file without errors even with lot of stop/resume operations.

#1177 Windows (XP) Shortcuts not working Bug report normal FileZilla Client
Description

I'm pretty sure this used to work before 2.2.23. I am currently using 2.2.28.

Now, when you click on a shortcut ("symlink") in the LOCAL file list, instead of moving to that directory (like it used to), it now opens up that directory in a Windows directory view window. (I don't think it's even a file explorer window -- is there a diff?)

#1178 SFTP Login Bug report normal FileZilla Client
Description

I login to a server via SFTP using the IP address. The server name is set to some name like "server". I have a user id ssrini on the server. When I login from FileZilla, the user name is automatically set to ssrini@ipaddress but this login will not be found on the server and authentication fails. If I set login id to ssrini@server the login id is set by FileZilla to ssrini@server@ipaddress and this is also wrong.

How do I setup FileZilla to not append any data to the user id specified ? (I can do this in the Putty SFTP command line client easily !)

Regards Srini

#1181 Unable to connect to SSL/TLS server using Filezilla3 Bug report normal FileZilla Client
Description

Using beta2 still unable to connect to SSL/TLS servers.

#1182 Transfer queue seems to have a hard limit of items to queue Bug report normal FileZilla Client
Description

Transfer queue seems to have a hard limit of items to queue. I tried to download about 600,000 files in about 2000 folders from a ftp server. Drag all the folders on the server to the local file tree. FileZilla would queue up only about just under 64,000 files and refuse to queue more. Furthermore, after the files are queued up, it does not automatically process the transfer queue. You have to check menu "Process Queue" for it to start processing queue. Could it be the counter of the queue item is a 16 bit integer - just a guess?

#1183 Start menu items not in all users Bug report normal FileZilla Client
Description

When we install filezila 2.2.x, the start menu items go into the user's profile, instead of in all users.

Therefore, if I install the application as "Administrator", when the user logs in, there is no way the user can start the application without going manually into C:\program files\filezilla.

#1185 Queue won't allow scrolling while active Alexander Schuch Bug report normal FileZilla Client
Description

When the queue is actively transferring, it resets the queue list scroll position to the top every time it starts a new file.

The effect is that if a large set of small files are trasferring, it's nearly impossible to scroll down through the queue while it's active.

I don't see any reason for this behaviour -- it's probably just a default (correct me if I'm wrong).

#1186 I can't get file listing when filename has space char Alexander Schuch Bug report normal FileZilla Client
Description

I am using FileZilla 2.2.28.

I can't get file listing when filename of some files has space char in the listing directory. Does any met this problem?

#1188 Error in Transfer queue Alexander Schuch Bug report normal FileZilla Client
Description

For the last three versions I have had a problem with the transfer queue. I was hoping someone else would have had the problem and it would have gotten fixed...

I finally figured out how and why but not how many. It only seems to show up when it transfer any where from 50+ plus files doesn't seem to matter about the size. But if the server connection seems to hiccup it will start piling up the transfers usually I do 10 at a time. Until all ten transfer spots are full or if the last 1-5 are left then somtimes I can pause them and resume. But most of the time I can't pause or abort. And then it hangs then I get the pop up error message to email you. So that is what it is doing.

Sometimes I can diconnect and that will release them or I have to shut it down and then sometimes they are still in the queue and can reprocess them. Or it really hangs and I have to use the task manager to stop it.

Bob

#1189 Transfers only first 8192 bytes. Alexander Schuch Bug report normal FileZilla Client
Description

FileZilla transfers only first 8192 bytes. The progress bar is stuck and does not progress (shows 32% in this case). No errors are generated or reported. Tiny files (I am assuming < 8192 bytes) transfer just fine. I am using SFTP port 22.

  • this used to work but stopped working few weeks ago
  • the issue is experienced with only one server. I don’t have this issue with other servers
  • I have attempted to downgrade to various versions down to 15 with the same results.
  • I have uninstalled FileZilla and installed an old version 15 with the same results
  • I have installed 3.0.0-beta2 and it works just fine

I am assuming that v.2.2.xx is using some PC resources that are corrupted and even reinstallation does not fix the issue.

--log from FileZilla v2.2.15 (29 generates the same log)----------------------------------- Command: CONNECT FTPxxxxxxx@…:22 Response: Remote working directory is /Customer/FTPxxxxxxx Status: Connected Status: Starting upload of C:\Documents and Settings\xxxxxxx\My Documents\xxx\from Release Archive\xxxxxxxxx\install\xxxx.jar Command: CD /Customer/FTPxxxxxxx/Adapters/xxxxxxxxx/install/ Response: Remote working directory is now /Customer/FTPxxxxxxx/Adapters/xxxxxxxxx/install/ Command: PUT xxxx.jar C:\Documents and Settings\xxxxxxx\My Documents\xxx\from Release Archive\xxxxxxxxx\install\xxxx.jar FALSE Response: Uploading C:\Documents and Settings\xxxxxxx\My Documents\xxx\from Release Archive\xxxxxxxxx\install\xxxx.jar to xxxx.jar

#1192 Failed to retrieve directory listing with SSL/TLS using PASV Bug report normal FileZilla Client
Description

Failed to retrieve directory listing with SSL/TLS using PASV

When SSL/TLS is enabled, FZ fails to retrieve a directory listing from vsftpd behind NAT.

I noticed the following difference between normal and SSL/TLS mode in the returned message from the PASV command.

Normal: [00:29:19] Command: PASV [00:29:19] Response: 227 Entering Passive Mode (72,32,40,237,6,74) [00:29:19] Command: LIST -a [00:29:20] Response: 150 Here comes the directory listing. [00:29:20] Response: 226 Directory send OK. [00:29:20] Status: Directory listing successful

SSL/TLS: [00:30:22] Command: PASV [00:30:22] Response: 227 Entering Passive Mode (192,168,1,237,6,83) [00:30:22] Command: LIST -a [00:30:43] Error: Transfer channel can't be opened. Reason: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. [00:30:43] Error: Could not retrieve directory listing

However, the same vsftpd config works with FlashFXP.

I wonder why FZ isn't able to pick up 72.32.40.237 as it could when using normal FTP as opposed to SSL/TLS.

Thanks,

#1193 ftps don't list folders Bug report normal FileZilla Client
Description

ok, I wanted to use filezilla (2.2.29) to connect to ftps (ftp over TLS explicit, note that my server only supports this options for secure ftp) I am able to connect, but after that it tries to list the root folder and times out (the last command it sends to the server is LIST, and then times out)

I thought the server had problems, I contacted the support, they tried to troubleshoot, they even downloaded filezilla, but they couldn't replicate the issue. at the end I thought this could be a problem on my network, so I tried fireFTP (firefox extension), and it worked fine..

after that, I'm assuming this is a filezilla bug.

thanks

#1194 Empty directory listing Bug report normal FileZilla Client
Description

I am using FileZilla 2.2.29 to connect to an SFTP server based on commercial SFTP server code from Mocana (www.mocana.com).

When connected to the server, directory listings always show "<Empty directory listing>" in the remote site pane. However from the attached Filezilla log it would seem that the server is sending a perfectly good listing.

Other SFTP clients (openssh, WinSCP and psftp) can list files on the server without this problem.

Any help would be much appreciated.

#1198 Unable to set no default site once it is set Alexander Schuch Bug report normal FileZilla Client
Description

The use of radio buttons in the default site area prevents "unchecking" the feature. Unless I missed something, the only way to undo this is to edit the setting in the XML file/registry or create a fake site, set it as the default, and delete it.

Preferred fix would be to replace radio buttons with check boxes.

#1200 Filezilla 2.2.9 Failure Bug report normal FileZilla Client
Description

Runtime Error Dialog box heading: Visual C++ Runtime Library Windows message: This application has requested the runtime to terminate in an unusual way.

#1201 trojan detection !! Bug report high FileZilla Client
Description

I've dowloaded the installer FileZilla_2_2_29_setup.exe from sourceforge. When installing filezilla, avg antivirus detected a trojans (PSW.Lineage.PQ, )in the temporary file : InstallOptions.dll!!!!!

#1202 Empty local file window Bug report normal FileZilla Client
Description

Version 2.2.8 and several versions before

During a compile a new version of one of my apps using mingw (which takes a few minutes), the local file window is refreshed and it after that shows nothing.

I suspect that FileZilla steps out once it cannot gain access to files within a certain time frame.

A manual refresh after compile has finished does not make the empty local file window go away. The local directory window remains the same before, during and after.

#1203 FTP Proxy vs Header Messages Bug report normal FileZilla Client
Description

The passwords listed are local only and don't need to be secure.

Scenario: Connecting to 172.31.255.180 (FTP SERVER) through a proxy server (127.0.0.1). Filezilla doesn't work if there is a header message on the FTP Server (Windows FTP Server)

I am using the USER RemoteID@Remotehost method:

Proxy Host: 127.0.0.1 Port: 21 Username: test Password: test

FTP Info: Address: 172.31.255.180 User: test Pass: test Port: 21

Log file attached.

#1206 Drag & Drop and double-click to edit Files Tim Kosse Bug report critical FileZilla Client
Description

Drag & Drop and double-click to edit Files is not longer working at 3.0.0-4beta!

At all older Releases it works pretty well.

Filezilla 3 seems to get unusable.

#1207 read errors hang application with no report Bug report normal FileZilla Client
Description

I use regularly your application to upload files from DVD's. I took me a while to identify that a read error coming from an external DVD drive connected with firewire, correctly detected by windows if trying to copy the file from the dvd to any place on the disk, would just hang filezilla for a while, and finaly report upload errors without clear information, erroneously leading to think that the uploaded server in misbehaving. I agree we are a little bit out of scope, but maybe this is a lead to a need for a beter information of the user when something is wrong on his side?

#1209 Chinese character bug Bug report normal FileZilla Client
Description

FileZilla 3.0.0 beta4 Language: Chinese(simplifed) Quickconnect's menu->clear history In Chinese, phrase "clear history" is "清除历史记录" not "清楚历史记录" Thanks, over

#1210 Crash when creating too long filename Bug report normal FileZilla Client
Description

FileZilla client 2.2.29 crashes when it tries to create on the client side a file whose path+filename is over the Windows filename length limit (which seems to be 256 characters excluding C:\ or similar in the beginning of the path).

The following log is from downloading files test56789012.txt and test567890123.txt to client directory C:\testdir01\testdir02\testdir03\testdir04\testdir05\testdir06\testdir07\testdir08\testdir09\testdir10\testdir11\testdir12\testdir13\testdir14\testdir15\testdir16\testdir17\testdir18\testdir19\testdir20\testdir21\testdir22\testdir23\testdir24 The first file succeeds (having path+filename only 256 characters long), but the second one fails (its path+filename being 257 characters long).

Status: Starting download of /test56789012.txt Command: TYPE A Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=24 OpState=13 caller=0x003f95b4 Response: 200 Type set to A Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=24 OpState=13 caller=0x003f95b4 Command: PASV Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=24 OpState=17 caller=0x003f95b4 Response: 227 Entering Passive Mode (217,78,32,197,224,216). Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=24 OpState=17 caller=0x003f95b4 Command: RETR test56789012.txt Trace: TransferSocket.cpp(446): OnConnect(0) caller=0x01107ccc Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=24 OpState=18 caller=0x003f95b4 Response: 150 Opening ASCII mode data connection for test56789012.txt (746 bytes) Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=24 OpState=18 caller=0x003f95b4 Trace: TransferSocket.cpp(558): SetActive() caller=0x01107ccc Trace: TransferSocket.cpp(446): OnConnect(0) caller=0x01107ccc Trace: TransferSocket.cpp(518): OnClose(0) caller=0x01107ccc Trace: TransferSocket.cpp(1125): Close() caller=0x01107ccc Trace: TransferSocket.cpp(1125): Close() caller=0x01107ccc Trace: FtpControlSocket.cpp(1969): TransferEnd(24) OpMode=24 OpState=19 caller=0x003f95b4 Trace: FtpControlSocket.cpp(2004): FileTransfer(0, TRUE, 0) OpMode=24 OpState=19 caller=0x003f95b4 Trace: TransferSocket.cpp(96): ~CTransferSocket() caller=0x01107ccc Trace: TransferSocket.cpp(1125): Close() caller=0x01107ccc Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=24 OpState=19 caller=0x003f95b4 Response: 226 Transfer complete. Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=24 OpState=19 caller=0x003f95b4 Trace: FtpControlSocket.cpp(3988): ResetOperation(1) OpMode=24 OpState=19 caller=0x003f95b4 Status: Download successful Trace: FtpControlSocket.cpp(2004): FileTransfer(17852120, FALSE, 0) OpMode=0 OpState=-1 caller=0x003f95b4 Status: Starting download of /test567890123.txt

#1211 Installer violates GPL Bug report normal FileZilla Client
Description

The installer flat out says you *MUST* accept GPL to install FileZilla 2.2.29. However, The GPL V2 states:

Section 0:

"Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted..."

And similarly, Section 5:

"You are not required to accept this License, since you have not signed it."

Could you look into rewording the license screen on the installer?

See http://www.fsf.org/licensing/licenses/gpl.html

#1212 Can't add speed limit rule Alexander Schuch Bug report normal FileZilla Client
Description

When I attempt to add new speed limit rule I've got "An unsuported operation was attempted". I'm using FileZilla 2.2.30 on windows XP SP2.

DÄ…bek

#1215 2.2.30: Can't start SFTP process, FzSFtp.exe "missing" Bug report normal FileZilla Client
Description

I recently upgraded from 2.2.29 to 2.2.30. 2.2.29 was working flawlessly before the upgrade. Immediately after upgrading, SFTP stopped working. Upon trying to connect, FileZilla would report in the log window:

Error: Can't start SFTP process. Please ensure that the file 'FzSFtp.exe' is in the same folder as 'FileZilla.exe' Error: Unable to connect!

It would then retry several times with a pause in between tries. All attempts would fail. I went to my FileZilla installation folder (C:\Program Files\FileZilla) and verified that the program FzSFtp.exe did exist. When I opened a command prompt in that folder and manually executed that command, I got:

C:\Program Files\FileZilla>fzsftp Program too big to fit in memory

No configuration changes were made between the working version of 2.2.29 and the upgrade. Downgrading back to 2.2.29 let FileZilla start working again, so I'm assuming something changed in 2.2.30 that broke FzSFtp.exe. I was able to reproduce this problem on two different systems (one XP Pro SP2, the other XP Home SP2).

#1216 if username have "%" the login fails Bug report critical FileZilla Client
Description

If the user name has a character % the connection it gives error. Filezilla 3.0.0-beta4 for Linux

#1218 FTPS+HTTPPROXY=does not work! Alexander Schuch Bug report normal FileZilla Client
Description

Client error: FTPS+HTTPPROXY=does not work!

Server: 0.9.22b Client: 2.2.30 Proxy server: any Connection type: FTP over SSL/TLS (implict encryption) + HTTP 1.1 PROXY

These bugs are only with Filezilla client+FTPS+HTTPPROXY. If you use connection at Cuteftp8.0+FTPS+HTTPPROXY or FilezillaClient+FTP+HTTPPROXY, it works. So the problem is with Filezilla client v FTPS+PASV.

=====BUG#1===== Depending on the files in directory, for example, when directory is empty, a client can or can not display the contents of the directory.

CLIENT ERROR LOG FOR "DIR C:\1": [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"/","1",9) OpMode=0 OpState=-1 caller=0x003bae74 [04:05:36] Status: Retrieving directory listing... [04:05:36] Command: CWD / [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=1 caller=0x003bae74 [04:05:36] Response: 250 CWD successful. "/" is current directory. [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=1 caller=0x003bae74 [04:05:36] Command: PWD [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=2 caller=0x003bae74 [04:05:36] Response: 257 "/" is current directory. [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=2 caller=0x003bae74 [04:05:36] Command: CWD 1 [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=3 caller=0x003bae74 [04:05:36] Response: 250 CWD successful. "/1" is current directory. [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=3 caller=0x003bae74 [04:05:36] Command: PWD [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=4 caller=0x003bae74 [04:05:36] Response: 257 "/1" is current directory. [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=4 caller=0x003bae74 [04:05:36] Command: TYPE A [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=8 caller=0x003bae74 [04:05:36] Response: 200 Type set to A [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=8 caller=0x003bae74 [04:05:36] Command: PASV [04:05:36] Trace: TransferSocket.cpp(1137): m_pProxyLayer changed state from 0 to 1 caller=0x00b69a94 [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=7 caller=0x003bae74 [04:05:36] Response: 227 Entering Passive Mode (10,11,2,131,4,80) [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=7 caller=0x003bae74 [04:05:36] Trace: TransferSocket.cpp(558): SetActive() caller=0x00b69a94 [04:05:36] Command: LIST [04:05:36] Trace: TransferSocket.cpp(1137): m_pProxyLayer changed state from 1 to 2 caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(1137): m_pProxyLayer changed state from 2 to 4 caller=0x00b69a94 [04:05:36] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=9 caller=0x003bae74 [04:05:36] Response: 150 Connection accepted [04:05:36] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=9 caller=0x003bae74 [04:05:36] Trace: TransferSocket.cpp(446): OnConnect(0) caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(1139): m_pSslLayer changed state from 0 to 4 caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(1139): m_pSslLayer changed state from 4 to 6 caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(518): OnClose(10053) caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(1125): Close() caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(1125): Close() caller=0x00b69a94 [04:05:36] Trace: FtpControlSocket.cpp(1969): TransferEnd(68) OpMode=4 OpState=10 caller=0x003bae74 [04:05:36] Trace: FtpControlSocket.cpp(1213): List(TRUE,64,"","",0) OpMode=4 OpState=10 caller=0x003bae74 [04:05:36] Trace: TransferSocket.cpp(96): ~CTransferSocket() caller=0x00b69a94 [04:05:36] Trace: TransferSocket.cpp(1125): Close() caller=0x00b69a94 [04:05:36] Trace: FtpControlSocket.cpp(3988): ResetOperation(4) OpMode=4 OpState=10 caller=0x003bae74 [04:05:36] Error: Could not retrieve directory listing [04:05:37] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=0 OpState=-1 caller=0x003bae74 [04:05:37] Response: 226 Transfer OK

SERVER LOG (ALWAYS THE SAME): (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> CWD 1 (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> 250 CWD successful. "/1" is current directory. (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> PWD (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> 257 "/1" is current directory. (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> TYPE A (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> 200 Type set to A (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> PASV (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> 227 Entering Passive Mode (10,11,2,131,4,148) (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> LIST (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> 150 Connection accepted (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> SSL connection for data connection established (000010) 1/15/2007 4:20:57 AM - 1 (10.11.2.1)> 226 Transfer OK

=====BUG#2===== Uploaded files are of 4096 size, and files that are less than 4096 in size can not be uploaded to the server.

CLIENT ERROR LOG (uploading 1.txt 4 byles long): Trace: FtpControlSocket.cpp(2004): FileTransfer(16843424, FALSE, 0) OpMode=0 OpState=-1 caller=0x0039b1fc Status: Starting upload of C:\2\1.txt Command: TYPE A Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=40 OpState=13 caller=0x0039b1fc Response: 200 Type set to A Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=40 OpState=13 caller=0x0039b1fc Command: PASV Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=40 OpState=17 caller=0x0039b1fc Response: 227 Entering Passive Mode (127,0,0,1,4,207) Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=40 OpState=17 caller=0x0039b1fc Command: STOR 1.txt Trace: TransferSocket.cpp(1137): m_pProxyLayer changed state from 0 to 1 caller=0x003995ec Trace: TransferSocket.cpp(1137): m_pProxyLayer changed state from 1 to 2 caller=0x003995ec Trace: TransferSocket.cpp(1137): m_pProxyLayer changed state from 2 to 4 caller=0x003995ec Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=40 OpState=18 caller=0x0039b1fc Response: 150 Connection accepted Trace: FtpControlSocket.cpp(2004): FileTransfer(0, FALSE, 0) OpMode=40 OpState=18 caller=0x0039b1fc Trace: TransferSocket.cpp(558): SetActive() caller=0x003995ec Trace: TransferSocket.cpp(446): OnConnect(0) caller=0x003995ec Trace: TransferSocket.cpp(1139): m_pSslLayer changed state from 0 to 2 caller=0x003995ec Command: REST 0 Response: 350 Rest supported. Restarting at 0 Status: Disconnected from server Error: Timeout detected! Trace: TransferSocket.cpp(1125): Close() caller=0x003995ec Trace: FtpControlSocket.cpp(1969): TransferEnd(168) OpMode=40 OpState=19 caller=0x0039b1fc Trace: FtpControlSocket.cpp(2004): FileTransfer(0, TRUE, 128) OpMode=40 OpState=19 caller=0x0039b1fc Trace: FtpControlSocket.cpp(1140): DoClose(0) OpMode=40 OpState=19 caller=0x0039b1fc Trace: FtpControlSocket.cpp(3988): ResetOperation(4100) OpMode=40 OpState=19 caller=0x0039b1fc Trace: TransferSocket.cpp(96): ~CTransferSocket() caller=0x003995ec Trace: TransferSocket.cpp(1125): Close() caller=0x003995ec Error: Upload failed

Please fix it asap. Thank you!

#1219 Filezilla u3 passwords deleted Alexander Schuch Bug report normal FileZilla Client
Description

Hi,

first thank you for this great tool.

But filezilla shocked me today. I installed it a few month ago on my usb flashdrive in the u3 environment (I used it before on my harddisks for month ;) ).

It worked fine nearly 3 month, but today filezilla deleted all passwords out of the xml file.

On the client i used, filezilla was additionally installed in secure mode (Reg Keys exist).

But the filezilla on my flashdrive wasn't installed in secure mode...

why filezilla doesn't asked before deleting all the passwords out of the xml file, after starting it from the u3 launchapd?

thanks

kay

PS: Version 2.2.22

#1220 Remote directory listing using OpenVMS 7 is blank Bug report normal FileZilla Client
Description

When using SFTP (SSH2) to connect to an OpenVMS 7 system using HP's SSH and FTP implementations, FileZilla does not display any items in the remote site location. Traces show that FileZilla is getting the file and directory listings, but they are not displayed in the Remote Site column.

#1222 Cannot upload entire folder/directory to remote server Alexander Schuch Bug report normal FileZilla Client
Description

I've used FileZilla for a while now and have never experienced anything like this. FileZilla will allow me to connect to my remote server just fine, it will allow me to transfer files (txt, html, php, gif, jpg, etc) over to my remote server just fine, but when I try to grab a whole folder/directory it does nothing. I used to be able to just grab say and "images" folder with lets say 10 images files inside the folder from my local machine, drag the whole folder over and that's it. Now when I try to do this very same thing it's like FileZilla doesn't even recognize that I'm doing anything. It doesn't come up and tell me that anything is processing, or going through, just sits there.

I just reinstalled a clean copy of windows (fully patched and updated) on my machine today because of this problem (thinking it had to be something with my machine) and that did not solve it either. I AM using the newest version of FileZilla.

I also have FileZilla in passive mode too.

I would really appreciate any assistance I can get with this!

#1223 Interface settings saved wrong if 'Message Log' disabled Alexander Schuch Bug report normal FileZilla Client
Description

In 2.2.30:

If the message log is turned off, the gui positioning isn't saved properly - the queue gets pumped up out of proportion.

This happens with both Startup settings set to 'always use the following configuration below' with message log turned off there, and also if set to 'remember last used configuration' and message log turned off by the gui icon.

#1225 Sended files over FTP SSL with SOCKS proxy are corrupted Alexander Schuch Bug report normal FileZilla Client
Description

FileZilla 2.2.30 Activated proxy : SOCKS v5 Server type : FTP over SSL/TLS (implicit encryption) Transfer type : auto Passive mode

Sended files over a FTP SSL connection with a SOCKS proxy are corrupted.

The connection and the SSL/TLS negotiation are ok. The upload to the server seems to be ok in the logs but actually the sended files are corrupted. Tested with several SOCKS proxies. No such issue without proxy or with an external SOCKS client (tested with Hummingbird). Seems also to be ok when only downloading (retrieving) files from the FTPS server.

(Session logs attached)

#1226 Encountering Hidden Directories Bug report normal FileZilla Client
Description

The problem is we use a hidden unix directory to allow us to share a username/password, yet provide relatively private directories. It achieves the degree of security we require - after all, it is FTP :-)

/pub permissions are 555 (r-xr-xr-x)

/pub/hidden permissions are 711 (rwx--x--x) and it is owned by ROOT

/pub/hidden/whatever permissions are 755 (rwxr-xr-x) and is owned by the ftp account. This allows me to have full access to /pub/hidden/whatever, but (as intended) doesn't let me view the names of any directories in /pub/hidden.

Anyways, FileZilla seems to get stuck traversing down the directory tree when it gets to /pub/hidden, even though my initial directory is set to /pub/hidden/whatever. If I manually traverse down the tree, it shows the contents of the /pub/hidden as <Empty directory listing> & returns to that listing no matter what subdirectory I enter.

Please let me know if you think this is might be resolved in a future release. I would be happy to test any new version for you.

#1227 Site manager loses all sites Bug report normal FileZilla Client
Description

When I installed Filezilla 3 beta, I lost all my Site Manager settings. The weird thing is when I reinstalled 2, they all came back. I installed Filezilla 3 over the existing folder, instead of in a different folder, so maybe that's the reason. For instance, Filezilla.exe was replaced during the install of 3 (and subsequently re-replaced when I installed 2).

#1228 Problem with MAC Formated Files Bug report normal FileZilla Client
Description

Hello, we got a strange failure by uploading files which are created with a macintosh. Files like *.html or *.js shout be uploaded as ASCII, but when the format is from a mac, the automatic choosing ASCII or Binary mode for upload don´t work. Even when i open the html or js files and save them as windows or unix formated the upload work fine. Can be this a bug or do i have to change some settings?

P.S. when i have uploaded the mac formated files as binary, does it worked too.

Best regards Martin Bort

#1230 Colon in directory name not replaced Alexander Schuch Bug report normal FileZilla Client
Description

When transfering a directory structure from an FTP sever which supports colons (:) in file and directory names to a Windows system, the colon in file names get replaced by a _, but colons in directory names do NOT get replaced, resulting in the error "Could not open the local file <filename>" and "Download failed" when trying to transfer.

#1231 Client bug Bug report normal FileZilla Client
Description

Look at the picture! I been loading up with v3 and the folder view says i´m not connected with server....

#1232 login popup misbehavior Bug report normal FileZilla Client
Description

Description:


After I log into a server where my password will expire in XY days, the server sends back a notification which states so and ask me to press 'Enter' to continue. This causes the FileZilla client to popup a 2nd login dialog box and refuses to let me hit enter because I did not specify anything in the password input box (error: blank password).

This misbehavior has been present for as long as I can remember.

Steps to reproduce the issue:


  • Using SSH client:

1) log into the server 2) enter userid and password 3) server sends this text back: Your password expires in 12 days. Please change it as soon as possible. Press Enter to Continue. 4) press Enter key to complete the login process

  • Using the FileZilla client:

1) Setup a SFTP connection to the server 2) Initiate a SFTP connection to the server 3) FileZilla prompts for initial password 4) enter password 5) Server sends this text back: Your password expires in 12 days. Please change it as soon as possible. 6) FileZilla pops up a "keyboard-interactive authentication" input dialog box 7) press Enter key fails the dialog box validation code resulting in an error popup stating "You have to enter a string!". 8) clicking on "cancel" button result in a connected session but nothing in the remote directory panel, clicking on the "refresh" option doesn't do anything.

Version Used:


FileZilla Client 2.2.30

#1233 Minor display issue Bug report normal FileZilla Client
Description

When the main window is maximized, the red LED in the lower right corner is slightly cut off. This is under Windows 2000. On XP, it looks fine. See attached screen capture. (Note: the local drive contents have been blanked out for privacy.)

#1234 FileZilla.xml stored in incorrect location (2.2.29) Bug report normal FileZilla Client
Description

The configuration file "FileZilla.xml" is stored in an incorrect location. Program data files should be stored in the location returned when using the flags "CSIDL_LOCAL_APPDATA", "CSIDL_COMMON_APPDATA", etc. It must not be stored in the same directory as the application itself.

This is particularly important for newer operating systems (ie, Windows NT onwards) that have the basics of user security enabled, it's particulaly important for correct Windows Vista operation.

This is the case in version 2.2.23. I have not checked if this bug is still in place in the new version 3.

#1236 Filezilla won't accept my password Bug report normal FileZilla Client
Description

I have control characters in my password. Filezilla won't let me enter them. (It just 'thunks at me when I try.)

It should at least allow any control characters that don't do anything else.

-- -billy-

#1237 Disk space full Bug report normal FileZilla Client
Description

There is no error message when it tries to upload a file when the disk is full. All that happens is the status bar goes to 100%, and never goes away. Confused the hell out of me for a while o.O

Also I've been using Filezilla for a while now. Only thing I can suggest is making directories delete faster. Listing all the files, and then slowly deleting them all is painful to watch ;)

#1238 Incorrect year displayed Bug report normal FileZilla Client
Description

Filezilla client connecting to AIX server via secure FTP shows the wrong year (2006) on certain files and directories. Those files and directories were created when the system date was rolled to test DST (from 02/27/2007:14:05:00 to 3/11/2007:01:00:00). The time then rolled at 01:59:59 to 03:00:00. Files created previous to DST rollover still show correct year. New directories dated after date/time was rolled back (to 02/27/2007:{current_time}), show the correct year if some files in it have a 2007 year (because files/directories were created before the DST time change).

An earlier reported bug may be related (1608370 "Year bug") but is not the same. When files are seen via another FTP client ("SecureFX") or with another telnet program ("PuTTy" or "SecureCRT" terminal), the year IS correct. So far, only Filezilla shows the anomaly.

#1240 wrong password can't be corrected Bug report normal FileZilla Client
Description

After connecting to the server with a wrong password this pw is cached and can not be corrected. So Filezilla needs to be restarted in order to connect again. As Filezilla realizes, that the connection can't be opened, it should ask for the password again.

#1241 Failure to select available local port Bug report normal FileZilla Client
Description

I am using Filezilla v2.2.26a and I have set in Connections -> Firewall settings a range of available ports to be used.

However, if Filezilla tries to bind to a port which is already in use (I have another program which might use a port from the same range) it will fail and break the current operation.

Wouldn't be possible to have Filezilla try with another port from the range?

Thank you

#1242 File update time issue Bug report normal FileZilla Client
Description

Hello.

I have seen a lot of time update bug reports, but yet I found that no real solution has been addressed to this issue.

I am still not able to use the 'overwrite only if file is newer' feature of the program in V 2.2.31, which is my goal.

After looking up where the problem was, I come up with a solution to this: The uploaded file should not be set to the server's time, but to the client windows time. I believe that this is the only way to make this work properly.

If we consider that the source is always on the windows client's side (which is normally the case), then this can only be the real solution, because applying the server's time to the uploaded files will always cause a problem due to the fact that the server's time is always either higher of lower than the windows' time (even only a few seconds delay). This translates into some files not uploaded properly, but yet you edited them with a new time on the client's side.

Now I hope that the FTP protocol allows to do such a thing.

Any comment on this would also be interesting, but I really think that everyone is expecting the system to work the way I do understand it also.

Still thanks for the great job. This is my only current concern about FileZilla, the rest is perfect to me..

#1243 Exported Servers are lost Bug report normal FileZilla Client
Description

If I export my settings in Filezilla 2.2.27 and then import them in Filezilla 2.2.31 all servers in the servermanager are lost.

#1245 Filezilla doesn't stop when .mkv file is already 100% Bug report normal FileZilla Client
Description

When downloading .mkv files, it will not stop after 100% and it will keep going until hard disk is full.

I am sure it is a bug in filezilla because I can download the mkv files without any problem with cuteftp pro.

#1246 Russian translation is broken Bug report normal FileZilla Client
Description

While selecting type of the authntication when I add new server, the option "Anonymous" hides option "Regular". On Russian it sounds "Анонимный" and "Обычный". So it is very hard to select "Regular" type of authentication.

#1247 File Transfer removing last slash Bug report normal FileZilla Client
Description

Can anyone let me know how to fix this problem?

Problem: Last slash is removed from filename when transferring file via ssh (ftps). The file name is then combined with the last subdirectory name because the slash no longer seperates them.

I do not have this problem from a cygwin ssh session.

FileZilla will attempt the maximum retries and fail.

My temp solution is to go onto server and move files that I need to transfer to the ROOT '/'.

The ssh server is running on AIX 5.2.

FileZilla is version 2.2.30

Thank you.

#1248 Renaming file during upload renames wrong file Alexander Schuch Bug report normal FileZilla Client
Description

Hello,

Let's say you have file a.php, b.php and c.php. You upload a new copy of a.php to a server. If you rename c.php to c2.php while the upload is waiting to begin (or possibly taking place), b.php (the file above it) will get rename to c2.php instead once the transfer completes. c.php will still exist.

Great program, keep up the great work!

Regards, Jeff Wickenheiser WicksHosting.com

#1250 Cannot get directory listing from z/VM 5.1 (implicit SSL) Bug report normal FileZilla Client
Description

I am trying to make a connection to an IBM z890 mainframe running z/VM 5.1 with implicit SSL/TLS encryption. After the connection is made, a 'LIST -a' command is sent to get the directory listing. '-a' is invalid on a z/VM server. Filezilla does not send a '-a' operand to a z/OS server with explicit TLS. Why is the '-a' used for FTP with implicit SSL/FTP? Is this some requirement of implicit SSL/TLS that IBM is ignoring?

Thomas Kern U.S. Dept of Energy 301-903-2211

Log: [13:01:18] Status: Connecting to vm1.hqadmin.doe.gov:990 ... [13:01:18] Trace: FtpControlSocket.cpp(5153): m_pSslLayer changed state from 0 to 1 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(5153): m_pSslLayer changed state from 1 to 2 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(5153): m_pSslLayer changed state from 2 to 4 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(1001): OnConnect(0) OpMode=1 OpState=-1 caller=0x003bb32c [13:01:18] Status: Connected with vm1.hqadmin.doe.gov:990, negotiating SSL connection... [13:01:18] Trace: SSL_connect: SSLv3 read server hello A [13:01:18] Trace: SSL_connect: SSLv3 read server certificate A [13:01:18] Trace: SSL_connect: SSLv3 read server done A [13:01:18] Trace: SSL_connect: SSLv3 write client key exchange A [13:01:18] Trace: SSL_connect: SSLv3 write change cipher spec A [13:01:18] Trace: SSL_connect: SSLv3 write finished A [13:01:18] Trace: SSL_connect: SSLv3 flush data [13:01:18] Trace: SSL_connect: SSLv3 read finished A [13:01:18] Trace: Using TLSv1, cipher TLSv1/SSLv3: RC4-MD5, 1024 bit RSA [13:01:18] Status: SSL connection established. Waiting for welcome message... [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-1 caller=0x003bb32c [13:01:18] Response: 220-FTPSSL IBM VM Level 510 at VM1.HQADMIN.DOE.GOV, 13:01:09 EDT FRIDAY 2007-03-23 [13:01:18] Response: 220 Connection will close if idle for more than 5 minutes. [13:01:18] Command: USER xxxxxxxxx [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=0 caller=0x003bb32c [13:01:18] Response: 331 Send password please. [13:01:18] Command: PASS [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=3 caller=0x003bb32c [13:01:18] Response: 230 xxxxxxxx logged in; working directory = xxxxxxxx 191 [13:01:18] Command: SYST [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-14 caller=0x003bb32c [13:01:18] Response: 215-z/VM Version 5 Release 1.0, service level 0402 (64-bit) [13:01:18] Response: VM/CMS Level 19, Service Level 401 [13:01:18] Response: 215 VM is the operating system of this server. UNIX list format is active. [13:01:18] Command: FEAT [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-13 caller=0x003bb32c [13:01:18] Response: 500 Unknown command, 'FEAT' [13:01:18] Command: PBSZ 0 [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-11 caller=0x003bb32c [13:01:18] Response: 500 Unknown command, 'PBSZ' [13:01:18] Command: PROT P [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-12 caller=0x003bb32c [13:01:18] Response: 500 Unknown command, 'PROT' [13:01:18] Status: Connected [13:01:18] Trace: FtpControlSocket.cpp(3988): ResetOperation(1) OpMode=1 OpState=-12 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",1) OpMode=0 OpState=-1 caller=0x003bb32c [13:01:18] Status: Retrieving directory listing... [13:01:18] Command: PWD [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=0 caller=0x003bb32c [13:01:18] Response: 257 "xxxxxxxx.191" is working directory [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=0 caller=0x003bb32c [13:01:18] Command: TYPE A [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=8 caller=0x003bb32c [13:01:18] Response: 200 Representation type is ASCII. [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=8 caller=0x003bb32c [13:01:18] Command: PASV [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Response: 227 Data transfer will passively listen to 205,254,145,35,73,119 [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Command: PORT 146,138,240,229,8,167 [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Response: 200 Port request OK. [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Trace: TransferSocket.cpp(558): SetActive() caller=0x0128c104 [13:01:18] Command: LIST -a [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=9 caller=0x003bb32c [13:01:18] Response: 550 '-a' not found [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=9 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(3988): ResetOperation(4) OpMode=4 OpState=9 caller=0x003bb32c [13:01:18] Trace: TransferSocket.cpp(96): ~CTransferSocket() caller=0x0128c104 [13:01:18] Trace: TransferSocket.cpp(1125): Close() caller=0x0128c104 [13:01:18] Error: Could not retrieve directory listing

#1252 Cannot get directory listing from z/VM 5.1 (implicit SSL) Bug report normal FileZilla Client
Description

I am trying to make a connection to an IBM z890 mainframe running z/VM 5.1 with implicit SSL/TLS encryption. After the connection is made, a 'LIST -a' command is sent to get the directory listing. '-a' is invalid on a z/VM server. Filezilla does not send a '-a' operand to a z/OS server with explicit TLS. Why is the '-a' used for FTP with implicit SSL/FTP? Is this some requirement of implicit SSL/TLS that IBM is ignoring?

Thomas Kern U.S. Dept of Energy 301-903-2211

Log: [13:01:18] Status: Connecting to vm1.hqadmin.doe.gov:990 ... [13:01:18] Trace: FtpControlSocket.cpp(5153): m_pSslLayer changed state from 0 to 1 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(5153): m_pSslLayer changed state from 1 to 2 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(5153): m_pSslLayer changed state from 2 to 4 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(1001): OnConnect(0) OpMode=1 OpState=-1 caller=0x003bb32c [13:01:18] Status: Connected with vm1.hqadmin.doe.gov:990, negotiating SSL connection... [13:01:18] Trace: SSL_connect: SSLv3 read server hello A [13:01:18] Trace: SSL_connect: SSLv3 read server certificate A [13:01:18] Trace: SSL_connect: SSLv3 read server done A [13:01:18] Trace: SSL_connect: SSLv3 write client key exchange A [13:01:18] Trace: SSL_connect: SSLv3 write change cipher spec A [13:01:18] Trace: SSL_connect: SSLv3 write finished A [13:01:18] Trace: SSL_connect: SSLv3 flush data [13:01:18] Trace: SSL_connect: SSLv3 read finished A [13:01:18] Trace: Using TLSv1, cipher TLSv1/SSLv3: RC4-MD5, 1024 bit RSA [13:01:18] Status: SSL connection established. Waiting for welcome message... [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-1 caller=0x003bb32c [13:01:18] Response: 220-FTPSSL IBM VM Level 510 at VM1.HQADMIN.DOE.GOV, 13:01:09 EDT FRIDAY 2007-03-23 [13:01:18] Response: 220 Connection will close if idle for more than 5 minutes. [13:01:18] Command: USER xxxxxxxxx [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=0 caller=0x003bb32c [13:01:18] Response: 331 Send password please. [13:01:18] Command: PASS [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=3 caller=0x003bb32c [13:01:18] Response: 230 xxxxxxxx logged in; working directory = xxxxxxxx 191 [13:01:18] Command: SYST [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-14 caller=0x003bb32c [13:01:18] Response: 215-z/VM Version 5 Release 1.0, service level 0402 (64-bit) [13:01:18] Response: VM/CMS Level 19, Service Level 401 [13:01:18] Response: 215 VM is the operating system of this server. UNIX list format is active. [13:01:18] Command: FEAT [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-13 caller=0x003bb32c [13:01:18] Response: 500 Unknown command, 'FEAT' [13:01:18] Command: PBSZ 0 [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-11 caller=0x003bb32c [13:01:18] Response: 500 Unknown command, 'PBSZ' [13:01:18] Command: PROT P [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=1 OpState=-12 caller=0x003bb32c [13:01:18] Response: 500 Unknown command, 'PROT' [13:01:18] Status: Connected [13:01:18] Trace: FtpControlSocket.cpp(3988): ResetOperation(1) OpMode=1 OpState=-12 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",1) OpMode=0 OpState=-1 caller=0x003bb32c [13:01:18] Status: Retrieving directory listing... [13:01:18] Command: PWD [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=0 caller=0x003bb32c [13:01:18] Response: 257 "xxxxxxxx.191" is working directory [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=0 caller=0x003bb32c [13:01:18] Command: TYPE A [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=8 caller=0x003bb32c [13:01:18] Response: 200 Representation type is ASCII. [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=8 caller=0x003bb32c [13:01:18] Command: PASV [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Response: 227 Data transfer will passively listen to 205,254,145,35,73,119 [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Command: PORT 146,138,240,229,8,167 [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Response: 200 Port request OK. [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=7 caller=0x003bb32c [13:01:18] Trace: TransferSocket.cpp(558): SetActive() caller=0x0128c104 [13:01:18] Command: LIST -a [13:01:18] Trace: FtpControlSocket.cpp(823): OnReceive(0) OpMode=4 OpState=9 caller=0x003bb32c [13:01:18] Response: 550 '-a' not found [13:01:18] Trace: FtpControlSocket.cpp(1213): List(FALSE,0,"","",0) OpMode=4 OpState=9 caller=0x003bb32c [13:01:18] Trace: FtpControlSocket.cpp(3988): ResetOperation(4) OpMode=4 OpState=9 caller=0x003bb32c [13:01:18] Trace: TransferSocket.cpp(96): ~CTransferSocket() caller=0x0128c104 [13:01:18] Trace: TransferSocket.cpp(1125): Close() caller=0x0128c104 [13:01:18] Error: Could not retrieve directory listing

#1254 Posting error, moved to FZ 3 site Bug report normal FileZilla Client
Description

I am not sure exactly what is happening but I an a friend of my are having the following issue:

Configuration Info

We both have:

  • FileZilla 3.0 b7 installed
  • DLink DNS323 500GB RAID1 servers(Unix L8)on our respective networks configured for FTP
  • NATed networks behind Linksys Routers with MTU=1492
  • Running Windows XP clients
  • Have ports 21, 5000-5100(preferred by prior version of FileZilla, and 65500-65535(preferred by DNS 323 in PASV) forwarded on the routers
  • Set FileZilla b7 to use Servers External IP
  • We both are using DNS name server via DynDNS.org because our ISPs change our IPs several times a week.

Whats Different

  • My access is 250/3000 Cable with Auto IP
  • His access is 600/6000 DSL using PPPoE
  • My client PC uses Norton Virus and Firewall SW
  • His client PC uses ATT protection for Yahoo SW
  • Note: We have tried disabling firewalls and Internet Secuity Setting with no affect on results

Issue Outlined

  • My client from my network has no issues connecting with and transferring files to and from his server either in Active or Passive Mode when using 3.0 b7 over his DSL/PPPoE based service.
  • His FZ2.31 client logs on to my server from his network in Active Mode without issues. Passive does not work because it needs servers external IP to work.
  • His FZ 3.0b7 client fails both Active and Passive connections to my server when he tries from his network. However,when he tried from his son's cable serviced network, he was able to log on and tranfer files both in Active and Passive Mode.

I am current thinking that the issue is somehow related to his PPPoE connection but why does FZ 2.31 work in Active Mode while FZ 3.0b7 fails to connect in either mode when he tries to connect to my server from his network. The trace shows that the socket closes as soon as the PASV command is issued and the disconnect then follows.

I have included the trace for Passive Mode. I do not yet have a trace for the Active Mode. I have asked my friend for it and I will add it when I get it.

Status:Resolving IP-Address for SERVER.gotdns.com

Trace:ControlSocket.cpp(167): CControlSocket::ContinueConnect(011EBA10) m_pEngine=011FF008 caller=012100A8

Status:Connecting to (Servers ext IP):21... Status:Connection established, waiting for welcome message...

Trace:CFtpControlSocket::OnReceive()

Response:220 NAS-500GB FTP server (Version wu-2.6.2(52) Tue Jan 2 14:13:26 EST 2007) ready. Command:USER Bill

Trace:CFtpControlSocket::OnReceive()

Response:331 Password required for Bill. Command:PASS *

Trace:CFtpControlSocket::OnReceive()

Response:230-Welcome to my FTP site.

Trace:CFtpControlSocket::OnReceive()

Response:230-Now is the time ==> Sun Apr 8 13:27:41 2007 Response: 230-The host name is NAS-500GB Response: 230-You are Bill Response: 230-There are 1 person in my site, now. Response: 230- Response: 230- Response: 230 User Bill logged in. Command: SYST

Trace: CFtpControlSocket::OnReceive()

Response: 215 UNIX Type: L8 Command: FEAT

Trace: CFtpControlSocket::OnReceive()

Response: 500 'FEAT': command not understood. Status: Connected

Trace: CFtpControlSocket::ResetOperation(0) Trace: CControlSocket::ResetOperation(0)

Status: Retrieving directory listing...

Trace: CFtpControlSocket::SendNextCommand(0)

Command: PWD

Trace: CFtpControlSocket::OnReceive()

Response: 257 "/" is current directory.

Trace: CFtpControlSocket::ResetOperation(0) Trace: CControlSocket::ResetOperation(0) Trace: CFtpControlSocket::SendNextCommand(0) Trace: CFtpControlSocket::ListSend(0) Trace: state = 1 Trace: CFtpControlSocket::SendNextCommand(0) Trace: CFtpControlSocket::TransferSend(0) Trace: state = 1

Command: TYPE I

Trace: CFtpControlSocket::OnReceive()

Response: 200 Type set to I.

Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 2 Trace: state = 1 Trace: CFtpControlSocket::TransferSend(0) Trace: state = 2

Command: PASV

Trace: CControlSocket::OnClose()

Error: Disconnected from server

Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66)

Error: Failed to retrieve directory listing

#1255 Folder name with a leading or following space Alexander Schuch Bug report normal FileZilla Client
Description

I am using version 2.2.31 It is possible to create a foldername with a leading or following space (ASCII character 0x20), but afterward all other commands do not work with it. Here a log of the operation.

Command: CWD /hrs_italy/From_HRS_NA/ Response: 250 CWD command successful Command: MKD New folder Response: 257 "/hrs_italy/From_HRS_NA/New folder " - Directory successfully created Status: Retrieving directory listing... Command: CWD New folder Response: 550 New folder: No such file or directory Error: Could not retrieve directory listing Command: PWD Response: 257 "/hrs_italy/From_HRS_NA" is current directory. Command: CWD New folder Response: 550 New folder: No such file or directory

#1256 Sites lost on export/import settings Bug report critical FileZilla Client
Description

When you export then import settings all sites are lost :-(

#1257 Crashing on Vista Bug report normal FileZilla Client
Description

FileZilla 2.2.31 crashes pretty regularly in Vista. It crashes on uploads and downloads, especially when uploading or downloading a lot of files. It seems pretty random but happens frequently.

#1258 Transfer queue window Alexander Schuch Bug report normal FileZilla Client
Description

I noticed a display problem, very minor, in the transfer queue window. When there is a file transfer in process, there is a line a few pixels high not being refreshed correctly. It reflects whatever was behind FileZilla at that moment. However it is only seen when a file transfer is occurring. The queue windows redraws correctly when there isn't a file transfer. I notice this since my FTP's can run for hours.

#1261 file mix ups Bug report normal FileZilla Client
Description

there appears to be a problem with filezilla, when you batch download a large amount of files (and possibly when uploading too, but i have only confirmed downloading) it can sometimes "mix up" your files. This has happened to me both with JPG's and PHP files. the content of 1.PHP becomes that of 2.PHP and vice versa. I haven't been able to narrow it down to anything other than a large amount of files being downloaded at once. It seems to happen randomly.

#1264 passwords accepted from copied Filezilla.xml Bug report normal FileZilla Client
Description

After installing filezilla on new computer I copied filezilla.xml from my old PC (version 2.2.9 which I cannot find anymore) to the new PC (version 2.2.32) to copy the account settings.

The passwords do not get copied properly, filezilla opens password promt after attempted connection. (fair enough)

But clicking cancel in the input window opens the requested site anyway.

This is a PC installed a week ago, filezilla was just installed (and never before).

#1265 Fixed, maybe Bug report normal FileZilla Client
Description

I did a new test with FZ 2.2.32 & LinkSys WRT54GL v4.30.9 . It seems to be fixed. I tried to upload/download about 10 .jpg files.

#1266 Name endings with trailing spaces cause troubles Bug report normal FileZilla Client
Description

If I click on the remote directory, select "Create directory" and enter a value like "/dirname /" (with the space before the last slash), I can not access to this directory after.

So, the command used to change directory, instead of

chdir dirname

, must be

chdir "dirname "

.

Perhaps FZ must remove trailing spaces before executing a command... It's yours to see.

-- Benoît Pruneau bpruneau@…

#1267 content of downloaded files maybe wrong Bug report normal FileZilla Client
Description

I had this problems more than once in the last weeks now. I download a couple of files from an FTP and at least one of the files is corrupt or has the completely wrong content.

It's also recognisable, if you watch the queue process and you see a file downloading although, it already reached 100%.

Unfortuntaley I don't have a lot of information, except, that the server is using SSL and my lient version is 2.2.32.

I try to reproduce it and get the raw FTP command log.

#1268 Inaccessibility do to focus issues Bug report normal FileZilla Client
Description

Is there any chance that the focus issues discussed in 1473638 will ever be resolved? It looks like this item has been pending for over a year now. There've been several releases since then, but it doesn't seem as if this problem has been addressed. I understand that there are other issues still pending besides this one, but I'm raising this one again specifically because it makes the program occasionally inaccessible to users like myself who are visually impaired and rely on screen reading software.

#1270 File content swap Bug report normal FileZilla Client
Description

It's been suggested I submit this as a bug report. So here goes:

I upgraded my Filezilla a few months ago to 2.2.32 (which is the latest stable release). Ever since then, I've had a very weird issue where some files are getting swapped content with other files.

Man, I know this sounds *insane*, but I'll give you an example: I do frequent installations of WordPress for the Install4Free site. I have a copy that I keep on file to upload to a myriad of different servers. Over the past few months, I've noticed oddities like the index.php file and the styles.css file will upload with the correct filenames, but the *content* has swapped - so that the index.php file contains the styles.css content, and vice versa.

That is only one example, of course. It has happened with many different programs, and usually happens when I upload many files at once. I can easily fix it by tracking down which two files have been content-swapped and uploading them individually. But when I'm doing mass quantities of uploads (especially for something like ZenCart, where everything is includes and it's hard to track down what file was swapped where) it gets tedious and difficult.

It's truly bizarre (and yes, I *do* check that the files I'm uploading are in proper order - and they are - this only happens when I upload with FileZilla - it's the only common denominator to this issue), and I know it sounds crazy. But I guess someone should know about it and see if I've got some really obscure bug.

#1272 HTTP Proxy authentication Base64 extra = Alexander Schuch Bug report normal FileZilla Client
Description

When logging to my HTTP Proxy Filezilla send Base64 encoded user:pass with an extra '=' character at the end. This is not supported by my company proxy and doesn't seem to be required by base64 standard.

here is a sample of what is sent by firefox and what is sent by filezilla

firefox: Proxy-Authorization: Basic xmVdaXNyOnNUdi0wGmNxanZk

filezilla: Authorization: Basic xmVdaXNyOnNUdi0wGmNxanZk= Proxy-Authorization: Basic xmVdaXNyOnNUdi0wGmNxanZk=

#1273 Sites Don't Save on Exit of Filezilla Bug report normal FileZilla Client
Description

version 2.2.32

standard install as admin, but operating as a power user..

when the power user launches the app and tries to save any number of sites (1 to 5)the site manager does not hold the site information for any of them.

on restart, it's like a refresh..

Paul

#1276 Uninstaller detected as Adware.CPush by Symantec Antivirus Bug report normal FileZilla Client
Description

I've reported the problem at http://symantecbeta.atgnow.com/demo/asp/beta_support_sym.asp, but somebody should probably check whether there has indeed been an "infection."

#1277 can't multitask/browse & upload different dirs Bug report normal FileZilla Client
Description

in 2.2.32 and previous versions, when files are being uploaded in the queue and you are looking at one directory, you can't browse to another directory and upload those files to appropriate places. for instance, local:/www/jimm/i/a.gif-->remote:public_html/images/a.gif local:/www/jimm/i/b.gif-->remote:public_html/images/b.gif local:/www/jimm/i/c.gif-->remote:public_html/images/c.gif local:/www/jimm/p/a.pdf-->remote:public_html/pdf/a.pdf local:/www/jimm/p/b.pdf-->remote:public_html/pdf/b.pdf local:/www/jimm/p/c.pdf-->remote:public_html/pdf/c.pdf local:/www/jimm/v/a.mpg-->remote:public_html/video/a.mpg local:/www/jimm/v/b.mpg-->remote:public_html/video/b.mpg local:/www/jimm/v/c.mpg-->remote:public_html/video/c.mpg

I can go to the next directory down (..) but I can't browse up anywhere. the program prevents it.

#1278 Filezilla shows hidden files regardless of Windows settings Bug report normal FileZilla Client
Description

Filezilla ignores Windows options to not show hidden files and shows everything. This leads to accidentally uploading thumbs.db and other hidden files to the server unnecessarily. Maybe this could be tied to the 'Show hidden files on server option' or made its own option if it's too much trouble to poll Windows settings.

#1279 different sorting in tree and file view Alexander Schuch Bug report normal FileZilla Client
Description

The sorting algorithm in the (remote) tree view seems to differ from the algorithm in the (remote) file view underneath. On one hand (german) vowel mutations are grouped amongst the classic vowels but on the other hand they are listed at the end.

#1282 Timezone issue Alexander Schuch Bug report normal FileZilla Client
Description

I checked and found a bug entered from 2005. (didn't seem to have any answer) However, I am suffering today.

Client is XP PRO. Connecting to a Linux box (Linux router.dta.ca 2.6.9-55.0.2.EL)

When I connect the times are +4 hours off. So it reads in FileZilla as 13:08 instead of 09:08. I set the time zone offset (TimeZoneOffset="-4" ) accordingly and the times are ok.

The Linux timezone is EDT (Eastern Daylight Time) - correct. Double checked the time and it is fine. When I drop a file onto my Linux box via FileZilla the FILE TIME is correct.

Current FileZilla is 2.2.32.

Very odd. Points to a "how is Filezilla determining the proper time zones?" question.

I dropped a file into another site and sure enough the time was wrong (compared to what my time zone is). The only issue is I have no control of that box so I am unsure what timezone it is in nor it's settings.

thanks belly

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.