Custom Query (4044 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2001 - 2100 of 4044)

Ticket Summary Owner Priority Resolution Created Modified
#8254 Drag and Drop in Linux mint 12 causes crash high duplicate 12 years 12 years
Description

Steps to reproduce:

  1. Attempt to Drag and Drop file into folder in same directory

At that point the program crashes and exits. This happens on local as well as server files.

#8257 Double-click action view/edit not working if disconnected from server high worksforme 12 years 11 years
Description

Open MENU Edit > Settings > Interface > File lists. Define double-click action as "View/Edit". Double-click any html or php file in order to edit it.

This works fine as long as there is a connection to the server. But if FileZilla is not connected to a server the following error message is shown:

Editing failed
Cannot edit file, not connected to any server

I often want to edit a file before establishing the connection to the server. In my opinion it does not make sense that local editing of a file is only possible if a connection to the server exists.

#8258 Error: Could not connect to server normal worksforme 12 years 12 years
Description

I've facing problem like connection refused by server from downloaded filezilla client..... Filezilla is essentially for my day to day work activities to be get ftp download/upload file from ISP server...

as per below error is coming since download, kindly give support to me to clear this issues ...

Status: Waiting to retry... Status: Connecting to 218.248.255.137:21... Status: Connection attempt failed with "ECONNREFUSED - Connection refused by server". Error: Could not connect to server

Expecting valuable feedback from technical/exp people....

#8264 Can't download a file when its size is 0 octets normal duplicate 12 years 12 years
Description

Can't download an empty file from the FTP server to my local computer. Using Filezilla 3.5.3

#8265 connection closed after 60seconds behind AWS ELB normal rejected 12 years 12 years
Description

Hi

I have a ftp server (vsftpd) on a Amazon Web Services EC2 virtual machine in a production environment. It's behind a Load Balancer, I access it using filezilla in passive mode for datas (vsftpd is configured to give the direct ip instead of using the load balancer for datas). Data and control channel thus have different ips. I use classic ftp (no ssl or whatever).

After exactly 60 seconds of transfer (upload or download, juste big enough to last more than 60seconds) i get a "server closed connection" error, for any version of filezilla (>=3) that didnt segfault i tried. But VSFTPD never actually closed the connection...

I looked into filezilla source code, the problem seems to come around in src/engine/ftpcontrolsocket.cpp. There is a control that seems to provoke the bug in CFtpControlSocket::OnReceive... By commenting it the problem disappear

if (!read)

{

LogMessage(::Error, _("Connection closed by server")); DoClose(); <= there i commented return;

}

the transfers stall a few seconds in the end of the transfer (it might be this test purpose) but i dont lose my connexion and the file transfered is ok.

Without the ELB (using the same ip for control and data) i dont get the initial problem.

I dont think this a good fix, but it does fix the problem for me.

#8266 Cannot upload files - error 552 disk Full normal wontfix 12 years 12 years
Description

User name u501037784 FAILED attempt TO UPLOAD FILES to host 31.170.166.105

Error message: Command: STOR Crisis.html Reply: 552 Disk full - please upload later

#8268 filezilla.svg not included in the source tarball normal fixed 12 years 12 years
Description

src/interface/resources/filezilla.svg not included in the source tarball for 3.6.0-beta1

#8270 utf-8 txt files are not uploaded correctly if transfer mode is AUTO high outdated 12 years 11 years
Description

Take a text file encoded in utf-8 containing non-ascii characters with a .txt extension and upload it to a server with FileZilla with the transfer mode set to "AUTO".

Expected: the transfer mode should be set to whatever is correct, the upload should be done correctly, and the uploaded file should be ok

Observed: the "A" (ASCII) transfer mode is automatically selected and the uploaded file is somehow corrupted.

I'm not sure whether uploading an utf-8 text file in ASCII mode is supposed to work or not (i guess not). If it is not, then selecting ASCII mode is wrong, and the Binary mode should be selected for utf8 text files when the mode is set to Auto. If it is supposed to work, then FileZilla does it incorrectly.

Curiously enough, _downloading_ utf8-encoded text files in auto mode does work correctly (and the ASCII mode is selected automatically, again curiously), here the behavior of the server may be involved.

#8274 program freezes normal outdated 12 years 11 years
Description

Hello. when i open a ftp and make the program idle for a minute or so, then it cant refresh, edit, delete, rename the files(but it accepts new uploads!). it says a command (for exapmle): CWD myfolder

and freezes. i have to re-login to website to be able to continue working with my ftp. i have changed options from preferences (made the disconnect period 1000 minutes), but it doesnt work.

#8275 German umlauts in proxy user password produce error normal fixed 12 years 12 years
Description

Usage of german (öäü) umlauts in proxy user passwords produce an error in FileZilla. If the proxy user password contains such umlauts a "normal" could not connect message is shown.

If the proxy user password doesn't contain umlauts it works normally again.

FileZilla Version: 3.5.3

#8277 Filezilla sftp download is not handling EOF properly normal outdated 12 years 7 years
Description

Filezilla 3.5.3.

When downloading a file using SFTP, the EOF is not handled properly.

Example: downloading a 1564 bytes file.

  • stat: server returns size 1564
  • open
  • read offset 0, len 32768: server returns 1564 data (as expected)

Now starts the stuff I think is not correct:

  • read offset 32768, 32768: server returns EOF (issue 1: offset should be 1564, issue 2: the transfer should stop here)

And now keeps going up to 1 MB:

  • read offset 65536, 32768: server returns EOF
  • read offset 98304, 32768: server returns EOF
  • ...
  • read offset 1048576, 32768: server returns EOF
  • close

About issue 1, I haven't found where's the problem. The offset of the request should always be adjusted to rr->retlen.

About issue 2, checking trunk/src/putty/sftp.c:1259, in xfer_download_gotpkt:

1273 	if ((rr->retlen < 0 && fxp_error_type()==SSH_FX_EOF) || rr->retlen == 0) {
1274 	xfer->eof = TRUE;
1275 	rr->complete = -1;
1276 	#ifdef DEBUG_DOWNLOAD
1277 	printf("setting eof\n");
1278 	#endif
1279 	} else if (rr->retlen < 0) {
1280 	/* some error other than EOF; signal it back to caller */
1281 	xfer_set_error(xfer);
1282 	rr->complete = -1;
1283 	return -1;
1284 	}
1285 	
1286 	rr->complete = 1;

So rr->complete is set to -1 when EOF is detected, but then that it's ignored and set to 1. I believe a return 1 is missing after setting complete to -1.

#8278 File size transferred for large file is way over the original size normal outdated 12 years 11 years
Description

TECHNICAL INFORMATION FTP Server: Windows server 2003 R2 x86 Client operating system: Windows 7 x64 File Zilla: 3.5.3, Build date: 2012-01-08 Server and client filesystem: NTFS Connection: VPN tunnel using native windows client to ISA 2006 server running on Windows 2003 R2 x86 with shared key L2TPipsec connection. FileZilla set to transfer binary file.

FILE INFORMATION File type: VMware vmdk file. Server side size using Windows Explorer: 2,687,200 KB Server side size using Windows 7 native FTP client: 2,751,692,288 Server side using filezilla: 2,751,692,288

TRANSFER INFORMATION: Size of transferred file using filezilla interface: 4,636,080,127 Size of transferred file using Windows cmd: same

DESCRIPTION: The file size is reported correctly by FileZilla. Starting the transfer by dragging the file to the client window correctly starts the transfer. The time of transfer seems to be correctly reported using the file size and the transfer speeed (as displayed). When the progress window reaches the original file size, it reports zero time left. However, the transfter continues and in the case creates a much bigger file.

To me this seems like some kind of bug.

#8285 Cacheing Issues high outdated 12 years 11 years
Description

I uploaded a file to my server through FileZilla. I realized a typo in the file name so within filezill I renamed it to the appropriate name. I then when to check within a web browser if the file was viewable and it was not. The permissions are all correct and it is in a publicly viewable folder.

Further looking into it I found that the file that filezill was showing versus the files that were on the server were different. Out of the 4 files in this folder the one I had change with filezill had not been changed on the server. The server was reporting the old info.

I called the hosting comapny, host gator, and they had no issues with the server or the ftp. So I remove the filezill version I had on my PC, windows 7, wiped all the info out and got the newest version from your site. I added the folder from the zip file to my comp and ran the program. When I ran the program it came up with all the server information already in it.

Two questions,

  1. How did it come up with the server info if I deleted the older program and
  1. Why is the program not showing the correct files or uploading them.
#8293 Message box will crash the icon and menu bar normal rejected 12 years 12 years
Description

I am using 3.5.3 on Windows 7 (32-bit).

Whenever I login a FTP site, the message box will show the system message but it will roll up and crash the icon bar and menu bar, making icon bar and menu bar invisible. If I use a mouse to move over those icons or menu, that part will display the original graphic.

Seems the message box buffer display size is larger than the message box area.

#8295 Crash after entering host containing forward slash normal fixed 12 years 10 years
Description

FileZilla crashes if the entered host contains a forward slash, even it is just the forward slash. This happens no matter whether I use the quickconnect bar, the site manager or the manual transfer dialog.

If the forward slash is part of the protocol prefix it does not crash, so ftp://ftp.mozilla.org works and ftp://ftp.mozilla.org/ crashes.

This happens reproducibly on my desktop computer with FileZilla 3.6.0-rc1. I could not reproduce the crash with FileZilla 3.5.3 or with FileZilla 3.6.0-beta1. My environment is Windows 7 SP1 (32bit) and Windows 8 (64bit) on Intel Pentium D.

However, I could not reproduce the issue on my laptop with Windows XP SP3 on Intel Core 2 Duo.

#8305 FileZilla process does not terminate on exit critical fixed 12 years 10 years
Description

My install of FileZilla just updated (to 3.6.0). To reproduce the bug: open an SFTP site, exit out of FileZilla, then open Windows Task Manager. Both 'filezilla.exe' and 'fzsftp.exe' remain running.

I call FileZilla from a VBScript, and my program continues only after exiting FileZilla. After installing the latest version, exiting FileZilla did not allow my process to continue.

Opening Windows Task Manager, it became evident that closing the FileZilla interface does *not* halt 'filezilla.exe' or 'fzsftp.exe'; both of these remain resident in memory despite exiting-out of FileZilla.

Opening FileZilla manually and connecting to an SFTP site causes the same behavior. The behavior only manifests if an SFTP site is opened.

#8308 PAPERCUT: "copy" button in "Site manager" panel normal fixed 12 years 11 years
Description

LOCATION: "Site manager" dialog box, bottom-right "Copy" button under the left-hand browser panel.

ISSUE: The function performed by "Copy" button is different from the commonly known "copy" function (from Copy/cut/paste set of commands) which might be confusing to users.

In "site manager", "Copy" button performs "make a copy" or "duplicate" function. In contrast, commonly seen "copy" command performs "copy to clipboard" function.

SOLUTION SUGGESTION: Re-labelling the "Copy" button to: "Duplicate"

OPINION: In common English the verb "to copy" actually fits well the function "site manager's" "copy" button performs (i.e. creating a duplicate or a facsimile), right? But unfortunately, this verb entered computer GUI terminology as short for "copy to clipboard". Beh...

#8309 PAPERCUT: Filezilla user Interface's behavior when a file/directory is dragged onto itself. normal fixed 12 years 11 years
Description

ISSUE: Dragging a file or a folder onto itself in local and remote filelists and tree-views results in inconsistent behavior from FileZilla.

a) Behavior when dragging directories in tree views: REMOTE TREE VIEW: Dragging a directory onto itself in remote tree-view: "Message: A directory cannot be dragged into one of its subdirectories." LOCAL TREE VIEW: "Error 13: permission denied" when dragging a system folder and "Error 22: invalid argument" when dragging a "regular" folder.

b) Behavior when dragging directories in filelists: REMOTE FILELIST: Dragging a file onto itself: "Message: Source and target of the drop operation are identical". Dragging a directory onto itself: "Message: A directory cannot be dragged into one of its subdirectories."

LOCAL FILELIST: Dragging a file onto itself: nothing happens (this is expected behavior). Dragging a directory onto itself: "Error 22: invalid argument" or "Error 13: permission denied", depending on permissions.

SOLUTION SUGGESTION: When a file or directory is dragged onto itself error message boxes don't have to appear at all. Dragging a file or a directory onto itself in any situation should not result in any feedback from from FileZilla. i.e. FileZilla should ignore any attempt to drag a file or a directory onto itself.

RATIONALE: I believe that the suggested behavior is common across many windowed platforms that use tree-views and file lists for file management. Dragging a file onto itself can be considered involuntary or accidental action. This kind of accidental action is especially common with users using pen tablets where a click with the pen tip often is accompanied with some dragging motion.

Additionally, removing the message/error boxes would streamline the interaction for the user a little, and also reduce a couple of GUI points that demand translation and maintenance.

#8312 Update Client 3.5.3 to 3.6 don't recognize x64 win8 low worksforme 12 years 12 years
Description

After I get notification to update my FileZilla Client from 3.5.3 to 3.6 and confirm that, new installation put files into "Program Files (x86)" - before update I have files in "Program Files" (default x64). I check the new version and that seems to be compiled for x86_64. In fact I have two copies of FileZilla Client files, old x64 v. 3.5.3 and new 3.6 in program files for x86. I have to update my shortcuts on the desktop to new file localization. I have to manually delete old file. Installation wizard did't recognize my system version - x64. I can change it under installation but default it was x86 and I think it was x86 version.

I have Windows 8 Pro x64.

#8313 Ver 3.6 upgrade from 3.53 GnuTLS error-15 normal rejected 12 years 10 years
Description

I just upgrade from 3.53 to the current 3.6 Before the upgrade I could connect to one of my ftp sites, after the upgrade with no changes in site manager I get the error below.

This was an issue from 3.52 to 3.53 I believe (which I fixed on my server by a few certificate changes) What do I need to do to fix the below. This gets very tiring when the security scheme keeps changing over and over again.

Status: Resolving address of qedmrf.com Status: Connecting to ipaddress:21... Status: Connection established, waiting for welcome message... Response: 220 Welcome to XXX Technologies FTP service. For authorized users only. Command: AUTH TLS Response: 234 Proceed with negotiation. Status: Initializing TLS... Status: Verifying certificate... Command: USER Fuzeycompany Status: TLS/SSL connection established. Response: 331 Please specify the password. Command: PASS Response: 230 Login successful. Command: SYST Response: 215 UNIX Type: L8 Command: FEAT Response: 211-Features: Response: AUTH SSL Response: AUTH TLS Response: EPRT Response: EPSV Response: MDTM Response: PASV Response: PBSZ Response: PROT Response: REST STREAM Response: SIZE Response: TVFS Response: UTF8 Response: 211 End Command: OPTS UTF8 ON Response: 200 Always in UTF8 mode. Command: PBSZ 0 Response: 200 PBSZ set to 0. Command: PROT P Response: 200 PROT now Private. Status: Connected Status: Retrieving directory listing... Command: PWD Response: 257 "/" Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode (22,22,22,166,195,86) (NOTE ADDRESS IS MUNGED) Command: LIST Response: 150 Here comes the directory listing. Error: GnuTLS error -15: An unexpected TLS packet was received. Error: Disconnected from server: ECONNABORTED - Connection aborted Error: Failed to retrieve directory listing

---and at this point the connection breaks

#8318 Filezilla compression bug during upload normal duplicate 12 years 11 years
Description

Imagine the code:

PHP code PHP code PHP code comment from developer - this line does X PHP code

Filezilla modifies files to this: PHP code PHP code PHP code comment from developer this line does X PHP code

where last PHP code becomes comment! In all the files.

And why do you turn that compression on by default by the way? It doesn't speed up website - it only makes code less readable.

#8319 Filename with ¾ (that's 3/4) in it normal rejected 12 years 12 years
Description

ftp://leginfo.ca.gov/pub/code/gov/66001-67000/66499.11-66499.20¾

Username: anonymous Password: karl@…

This file, with the ¾ (that's 3/4) in the filename, shows in the list of files but won't transfer, at least not in ascii mode. I didn't try any other mode.

My system: P/C with Windows 7, 64 bit version. FileZilla version 3.6.0

#8321 Quick Connect bar obstructed by the panel content below normal duplicate 12 years 11 years
Description

bug at gui when connecting and scrolling log connection, field host, username, and pass are disappear.

#8322 Client cannot connect using Require explicit FTP over TLS normal duplicate 12 years 10 years
Description

CLIENT SIDE:

FileZilla Client


Version: 3.6.0.1

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-18 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.6.2

Operating system:

Name: Windows XP (build 2600, Service Pack 3) Version: 5.1 Platform: 32 bit system

SERVER SIDE:

vsftpd-2.2.2-11.el6.i686 on CentOS 6.3 x86 configured with:

tcp_wrappers=YES pasv_enable=YES ssl_enable=YES force_local_logins_ssl=YES force_local_data_ssl=YES

CLIENT DEBUG LOG: 13:18:36 Trace: CControlSocket::DoClose(64) 13:18:36 Trace: CControlSocket::DoClose(64) 13:18:36 Status: Resolving address of xxx.sk 13:18:36 Status: Connecting to 213.xxx:21... 13:18:36 Status: Connection established, waiting for welcome message... 13:18:36 Trace: CFtpControlSocket::OnReceive() 13:18:36 Response: 220 Welcome to FTP PB service. 13:18:36 Trace: CFtpControlSocket::SendNextCommand() 13:18:36 Command: AUTH TLS 13:18:36 Trace: CFtpControlSocket::OnReceive() 13:18:36 Response: 234 Proceed with negotiation. 13:18:36 Status: Initializing TLS... 13:18:36 Trace: CTlsSocket::Handshake() 13:18:36 Trace: CTlsSocket::ContinueHandshake() 13:18:36 Trace: CTlsSocket::OnSend() 13:18:36 Trace: CTlsSocket::OnRead() 13:18:36 Trace: CTlsSocket::ContinueHandshake() 13:18:37 Trace: CTlsSocket::OnRead() 13:18:37 Trace: CTlsSocket::ContinueHandshake() 13:18:37 Trace: CTlsSocket::Failure(-12, 10053) 13:18:37 Trace: GnuTLS alert 40: Handshake failed 13:18:37 Error: GnuTLS error -12: A TLS fatal alert has been received. 13:18:37 Trace: CRealControlSocket::OnClose(10053) 13:18:37 Trace: CControlSocket::DoClose(64) 13:18:37 Trace: CFtpControlSocket::ResetOperation(66) 13:18:37 Trace: CControlSocket::ResetOperation(66) 13:18:37 Error: Could not connect to server 13:18:37 Trace: CFileZillaEnginePrivate::ResetOperation(66) 13:18:37 Status: Waiting to retry...

SERVER VSFTPD.LOG: Mon Nov 19 14:05:00 2012 [pid 15066] CONNECT: Client "10.10.102.6" Mon Nov 19 14:05:00 2012 [pid 15066] FTP response: Client "10.10.102.6", "220 Welcome to FTP PB service." Mon Nov 19 14:05:00 2012 [pid 15066] FTP command: Client "10.10.102.6", "AUTH TLS" Mon Nov 19 14:05:00 2012 [pid 15066] FTP response: Client "10.10.102.6", "234 Proceed with negotiation." Mon Nov 19 14:05:01 2012 [pid 15066] DEBUG: Client "10.10.102.6", "SSL_accept failed: error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared cipher"

HISTORY: 3.6.0.1 - does not connect 3.6.0 - worked fine! 3.5.3 - does not connect 3.5.2 (and older) - worked fine!

ADDITIONAL INFO: There was no change in server configuration between trying FileZilla Client 3.6.0 and 3.6.0.1 - I tried 3.6.0 this morning and 3.6.0.1 this afternoon. I have not old VSFTPD.LOG with Client 2.5.3, so I'm not sure if there was same error message "no shared cipher".

#8323 Connection normal rejected 12 years 11 years
Description

I enter FileZilla with Host (ftp.acilballetto.com), my user name (acilballetto) and my password. The answer, after correct user authentication (331 User acilballetto.com OK. Password required) is : 530 Login authentication failed. So I don't have possibility to connect my account. What can I do? Thank you for answer.

#8326 FileZilla cannot transfer files with a leading space! normal outdated 12 years 8 years
Description

I would like to re-open this ticket. http://trac.filezilla-project.org/ticket/5210

Three years ago it is claimed this was a "rejected ticket." And yet the exact same problem still exists.

"To solve this issue, simply upgrade to a modern server supporting the MLSD command o refrain from using leading spaces."

This is not true. Even servers completely up to date still have the problem with leading spaces and files that cannot be transferred. The main question is how come I can log into the same server with ANY OTHER FTP PROGRAM and the file will transfer perfectly. But using FileZilla and the files are displayed incorrectly and the transfer FAILS. I don't think this bug should just be rejected. IT IS A BUG THAT SHOULD BE FIXED!

I'm using version 3.6.0.1 and I don't see how someone can say this isn't really a bug when ALL other programs handle these files perfectly. Why can't FileZilla???

Please someone fix this! It is very annoying finding 50 files with leading spaces and then having to load up another ftp program and transfer each file manually... Thank you to whoever fixed this!!!!!

#8329 PAPERCUT: Updating wizard's "back" button is never active normal fixed 11 years 8 years
Description

LOCATION Updating wizard is accessible via "Main menubar/Help/Check for Updates..."

ISSUE Possible redundancy in user interface. The FileZilla update wizard has a set of Back/Next buttons in the bottom of the wizard dialog box. As far as I can tell, "Back" button is never active. i.e. it is "grayed out" in all the steps of updating process.

SOLUTION SUGGESTION If "back" button really is not accessible at any moment during the updating process, perhaps it should be removed. This would imply another question: Is "wizard" approach to updating is the best one.

NOTE This papercut is present both on WinXP and OSX FileZilla Client versions.

#8334 Real slow normal duplicate 11 years 11 years
Description

Recently, do not know when it really started, I use it daily. Maybe 5 days ago now, I have Filezilla on the task bar which I hit and it always popped right up. Everything on there pops right up. But recenlty, it can take up to 45 seconds for it to start. Any idea what has happen. It does come up, but takes so long to start, you think you didn't hit the icon, so I hit it again. Then I end up with 2 of them. Any idea what is wrong.This is the only program that is slow like this. I tons of memory, 12 gig, 12 CPU cores, should not be doing that. Do I need to reload it. Do not think this is associated with any recent updates.

#8337 TLS not work in 3.6.0.1 high duplicate 11 years 11 years
Description

Hi, I have Windows 2012 server with FTPS enabled and I can't connect with Filezilla in explicit mode active/passive but i can connect with Core FTP LE and this website http://www.net2ftp.com/index.php I have this error message :

Statut : Connexion établie, attente du message d'accueil... Réponse : 220 Microsoft FTP Service Commande : AUTH TLS Réponse : 234 AUTH command ok. Expecting TLS Negotiation. Statut : Initialisation de TLS... Erreur : GnuTLS error -110: The TLS connection was non-properly terminated. Erreur : Impossible d'établir une connexion au serveur

#8338 Filezilla can't open .php files in External Editor (Dreamweaver)? normal duplicate 11 years 11 years
Description

I recently installed FileZilla on my Windows 7 OS (had previously used it without issue on a Mac) and I am getting the following message when trying to edit .php files with Dreamweaver as an external editor (I am using the latest version of Filezilla (3.6.0.1) and Dreamweaver CS5.5):

The file 'index.php' cannot be opened: The associated program (WX_DDE#"F:\Program Files\Adobe\Adobe Dreamweaver CS5.5\Dreamweaver.exe", "index.php"##System#) could not be found. Please check your filetype associations

(This occurs with ANY .php file not just the index.php that is in the above message)

I did see an unsolved ticket that was opened 3 years ago about the same type of issue.

The only way that I was able to get around this was to do the following:

Go to Edit -> Settings -> Filetype Associations, manually add the following line and click ok:

php "F:\Program Files\Adobe\Adobe Dreamweaver CS5.5\Dreamweaver.exe" -open

I believe this appears to be some sort of bug because as mentioned prior when working with Filezilla on a Mac system (using Dreamweaver CS4) it all works fine and doesn't require this workaround.

#8340 QuickConnection bar not refreshed low duplicate 11 years 11 years
Description

Hi, I am using version 3.6.0.1. There is a GUI issue related to refresh the Quickconnection bar, after the connection to the server has been establish. The refresh doesn't occur. It is done when changing focus to another task then coming back to Filezilla i.e. repaint it (see attached screen copy) Thank you for this so usefull software.

#8352 GNU TLS ERROR persists in ver 3.6.0.1 Debug log (4) in line normal duplicate 11 years 10 years
Description

I had hoped this error was fixed in 3.6.0.1 It's now affecting our customers if they make the mistake of updating from 3.5.3

Is there a work around?

Status: Resolving address of qedmrf.com Status: Connecting to 64.39.191.166:21... Status: Connection established, waiting for welcome message... Trace: CFtpControlSocket::OnReceive() Response: 220 Welcome to Technologies FTP service. For authorized users only. Trace: CFtpControlSocket::SendNextCommand() Command: AUTH TLS Trace: CFtpControlSocket::OnReceive() Response: 234 Proceed with negotiation. Status: Initializing TLS... Trace: CTlsSocket::Handshake() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnSend() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: TLS Handshake successful Trace: Cipher: AES-256-CBC, MAC: SHA1 Status: Verifying certificate... Trace: CFtpControlSocket::SendNextCommand() Command: USER Fuzh Status: TLS/SSL connection established. Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 331 Please specify the password. Trace: CFtpControlSocket::SendNextCommand() Command: PASS Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 230 Login successful. Trace: CFtpControlSocket::SendNextCommand() Command: SYST Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 215 UNIX Type: L8 Trace: CFtpControlSocket::SendNextCommand() Command: FEAT Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 211-Features: Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: AUTH SSL Response: AUTH TLS Response: EPRT Response: EPSV Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: MDTM Response: PASV Response: PBSZ Response: PROT Response: REST STREAM Response: SIZE Response: TVFS Response: UTF8 Response: 211 End Trace: CFtpControlSocket::SendNextCommand() Command: OPTS UTF8 ON Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 Always in UTF8 mode. Trace: CFtpControlSocket::SendNextCommand() Command: PBSZ 0 Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 PBSZ set to 0. Trace: CFtpControlSocket::SendNextCommand() Command: PROT P Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 PROT now Private. Status: Connected Trace: CFtpControlSocket::ResetOperation(0) Trace: CControlSocket::ResetOperation(0) Trace: CFileZillaEnginePrivate::ResetOperation(0) Status: Retrieving directory listing... Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::ChangeDirSend() Command: PWD Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 257 "/" Trace: CFtpControlSocket::ResetOperation(0) Trace: CControlSocket::ResetOperation(0) Trace: CFtpControlSocket::ParseSubcommandResult(0) Trace: CFtpControlSocket::ListSubcommandResult() Trace: state = 1 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 1 Command: TYPE I Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 200 Switching to Binary mode. Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 2 Trace: state = 1 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 2 Command: PASV Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 227 Entering Passive Mode (74,39,191,166,195,85) Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 2 Trace: state = 2 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 4 Command: LIST Trace: CTransferSocket::OnConnect Trace: CTlsSocket::Handshake() Trace: Trying to resume existing TLS session. Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnSend() Trace: CTlsSocket::OnSend() Trace: CTlsSocket::OnRead() Trace: CTlsSocket::ContinueHandshake() Trace: CTlsSocket::OnRead() Trace: CFtpControlSocket::OnReceive() Response: 150 Here comes the directory listing. Trace: CFtpControlSocket::TransferParseResponse() Trace: code = 1 Trace: state = 4 Trace: CFtpControlSocket::SendNextCommand() Trace: CFtpControlSocket::TransferSend() Trace: state = 5 Trace: CTlsSocket::OnRead() Trace: CTlsSocket::Failure(-15, 10053) HERE'S THE LINE WHERE IT DIES AND THE CONNECTION IS LOST Error: GnuTLS error -15: An unexpected TLS packet was received. Trace: CRealControlSocket::OnClose(10053) Error: Disconnected from server: ECONNABORTED - Connection aborted Trace: CControlSocket::DoClose(64) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Trace: CFtpControlSocket::ResetOperation(66) Trace: CControlSocket::ResetOperation(66) Error: Failed to retrieve directory listing Trace: CFileZillaEnginePrivate::ResetOperation(66)

#8354 wrong size of the dowloaded file high rejected 11 years 11 years
Description

Hello, I need your kind support in the following matter: I have downloaded from an ftp site a suite of 6 files that all together are forming a DCP cinema trailer. Download went well, no errors. However, at the cinema while trying to ingest the suite, the server reported some errors in terms of different file sizes than expected. Checking again with FileZilla and downloading again I've noticed the resulted files have in deed different sizes than their sources on the ftp. I have then accessed the same ftp with the browser (Mozilla) and downloaded in that way. All ok with these files.

Question: why is this happening ? What can be done to solve this ? It didn't happened with the big files (1GB) but with small (9KB), control files which are however essential to play correctly the trailer. If needed I can send you both wrong and correct files.

thank you in advance Sorin

#8356 Can't connect to Windows Server 2012 (IIS 8) FTP when using FTPES normal fixed 11 years 11 years
Description

Using FileZilla, I cannot connect to any of my Windows Server 2012 machines when using FTPES on IIS 8.

FileZilla 3.6.0.2 debug level 4 log:

Trace:	CControlSocket::DoClose(64)
Trace:	CControlSocket::DoClose(64)
Status:	Resolving address of mysite.mydomain.com
Status:	Connecting to 1.1.1.1:21...
Status:	Connection established, waiting for welcome message...
Trace:	CFtpControlSocket::OnReceive()
Response:	220-Microsoft FTP Service
Trace:	CFtpControlSocket::OnReceive()
Response:	220 MyFtpService
Trace:	CFtpControlSocket::SendNextCommand()
Command:	AUTH TLS
Trace:	CFtpControlSocket::OnReceive()
Response:	234 AUTH command ok. Expecting TLS Negotiation.
Status:	Initializing TLS...
Trace:	CTlsSocket::Handshake()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::Failure(-110, 10053)
Error:	GnuTLS error -110: The TLS connection was non-properly terminated.
Trace:	CTlsSocket::OnSocketEvent(): close event received
Trace:	CRealControlSocket::OnClose(10053)
Trace:	CControlSocket::DoClose(64)
Trace:	CFtpControlSocket::ResetOperation(66)
Trace:	CControlSocket::ResetOperation(66)
Error:	Could not connect to server
Trace:	CFileZillaEnginePrivate::ResetOperation(66)

I have already tried reordering cipher suites as desribed here, but it didn't help: http://blogs.msdn.com/b/kaushal/archive/2011/10/03/taming-the-beast-browser-exploit-against-ssl-tls.aspx

Changing certificates on the FTP site doesn't help as well. I think the error happens before certificate is received.

WS_FTP and some other FTP clients work fine, while WinSCP makes a connection but throws errors on file transfer (something about invalid signature). It did help with file transfers when I prioritized TLS_RSA_WITH_RC4_128_SHA on the server SSL Cipher Suite Order.

It is worth noting that a version of FileZilla from a few weeks ago (I don't know which one exactly) connected fine, but was not able to transfer files (also a lot of errors), exactly what WinSCP does now.

Connecting to my Windows Server 2008 R2 (IIS 7.5) machines works perfectly. FTP sites are configured the same way as they are in the IIS 8 installation.

#8357 Disappearing User Interface When Connecting to the Server normal duplicate 11 years 11 years
Description

Hello,

When connecting to either a single or multiple servers, the user interface above the message log (the toolbar) randomly disappears. In order to get it back, I have to hover my mouse cursor over the toolbar to get individual buttons back.

This only happens with the OpenCrystal theme. With every other theme, this does not happen.

Here is a screenshot of the bug in action:

http://dylricho.com/dump/misc/filezilla-bug.PNG

Dylan. --

FileZilla Client 3.6.0.2 Windows 7 Ultimate x86 + SP1 Intel Celeron M 575 (Merom-2M)

#8366 Missing port in sitemanager.xml makes troubles normal rejected 11 years 7 years
Description

If in the file sitemanager.xml the port missing like "<Port>21</Port>" FileZilla doesn't show the related entry in the server list. I think FileZilla should fill this information automatically with port 21 if it is missing like it is already done with the other configuration values.

#8374 Filezilla will not start/open normal outdated 11 years 7 years
Description

I try to open filezilla through unity in Ubuntu 12.04 and the program doesn't open. I tried several times, looked at system monitor and I see multiple instances open, if I close them all and try again nothing opens.

I tried via command line and it just hangs.

$ filezilla -v FileZilla 3.5.3, compiled on 2012-03-28

#8376 Filezilla with Putty-CAC high fixed 11 years 11 years
Description

I am trying to use Filezilla 3.6.2 with Putty-CAC for authentication. However, anytime I try to connect to our server Pageant seems to fail to communicate as I get a password prompt. It should be using my cert I have in pageant but it is not communicating with it.

The last version of Filezilla that will work with Putty-CAC without any problems is 3.5.3. I really would like to be able to upgrade Filezilla but I can not do so because we have to use Putty-CAC. So my question is can support be added in these newer version to support Putty-CAC once again? What changed from 3.5.3 to newer versions for it to stop working?

Putty-CAC can be found here: http://www.risacher.org/putty-cac/3.5.3

#8377 Whole internet onnection breaks down when uploading normal outdated 11 years 11 years
Description

Everytime I am uploading something (joomla in this case) after a certain time (around 1-2 minutes) the whole Internet connection brakes down -> Router is blinking; Windows says that there is a problem with the DNS Server etc. So, then it'll take some time again (up to 10-60(!) minutes, even with a router reset) until the internet connection is working again.

In fact, I copied the corresponding files from my USB stick onto my system hard disc (Desktop) [regarding: http://forum.wdlxtv.com/viewtopic.php?f=3&t=2796] and set an upload limit to 300 KiB/s ... Didn't change anything.

#8381 Transfer - Speed Limits - Enable Checked State Incorrect on Restart normal fixed 11 years 10 years
Description

To reproduce...

  1. Enable speed limits
  2. Exit Client
  3. Restart Client

The menu item is not checked but speed limits are seemingly enabled. Selecting the menu item will not set check on. Selecting the menu item again will set check on.

#8385 Cannot connect with ftp-dom.earthlink.net Server high invalid 11 years 11 years
Description

Attempts to connect to ftp-dom.earthlink.net continuously do not connect. I can connect to all other FTP servers I need to, but not Earthlink. The administrator tells me there have been no changes.

#8386 Asking Overwite action high outdated 11 years 11 years
Description

i am having two internet connection.

i have uploaded more than 3MB file successfully using first internet connection. upload same file using second internet connection after complete it will ask "Overwrite action" pop up windows.

please solve overwrite pop up windows problem using second internet connection.

#8390 "new filter" button renames filter instead of creating a new one. normal outdated 11 years 10 years
Description

BUG: Pressing "New" button in "Edit filters" panel, while a filter is highlighted, renames the filter.

EXPECTED BEHAVIOR: Pressing the "New" button in "Edit filters" panel should create a new filter, instead of renaming the existing one.

DESCRIPTION:

  • Create a new filter and name it.
  • Select it in the chooser to the right so that it is highlighted.
  • Now, click on the "New" button (located just below the chooser).
  • Instead of creating a new filter, FileZilla renames the existing, previously selected filter.
#8392 Authentication failure when using Quest Authentication Services on UNIX normal invalid 11 years 11 years
Description

We use Quest Authentication Services (QAS) on unix to authenticate users. Using filezilla 3.0.6.2 (client) on windows 7. Trying to connect to UNIX HPUX Version 11.31 running Quest Authentican Services for login authentication

#8396 Issue while upgrading Filezilla client version from 3.5.3 to 3.6.0.2 high fixed 11 years 10 years
Description

Hi support,

Good Evening ! Recently i upgraded filezilla client version from 3.5.3 to 3.6.0.2 .

While using FileZilla client version 3.6.0.2 ( upload or download files and folder ) but i got below error :-- --- Error: GnuTLS error -110: The TLS connection was non-properly terminated. Error: Could not connect to server Status: Waiting to retry... Status: Connecting to 65.182.191.177:990... Status: Connection established, initializing TLS... Error: GnuTLS error -110: The TLS connection was non-properly terminated. Error: Could not connect to server


While Using same details i used in filezilla client version 3.5.3 , it was working fine / i successfully connected to FTP server.

Note :-- Secure FTP configured on the server (FTPS) . port - 990 allowed in firewall in server.

I don't understand , is it a bug in filezilla client version 3.6.0.2 or there is any setting missing on server side.

Kindly provide me resolution / Workaround for the same ASAP. I will be thankful for the same .

Regards,

Sahil Dua

#8397 Caching problem high outdated 11 years 11 years
Description

Hello, I have a big problem with caching and I don't know how to clean up cached files on my FileZilla. After editing a file I uploaded it successfully but later found that the file has not been changed.

FileZilla Client


Version: 3.5.3

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-01-08 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 2.10.4

Operating system:

Name: Windows Server 2003 (build 3790, Service Pack 2) Version: 5.2 Platform: 32 bit system

#8401 Client crash when open non-English local folder/directory using "Open" in the right-click pop-up context menu normal fixed 11 years 11 years
Description

Client version: 3.6.0.2 Character set for non-Unicode programs: Traditional Chinese - Taiwan (950)

Crash happens when try to open a local folder with non-English path in Windows Explorer, using the "Open" function in the right-click pop-up context menu. Crash happens both in the file pane and the directory pane.

Specifically, crash happens when opening the folder path that contains non-English and not-within-the-default-language characters. For example, when opening the folder path contains Simplified Chinese or Japanese characters, the client crashes. But when opening the folder path contains Traditional Chinese characters, the client does not crash, but still does not open the folder in Windows Explorer.

I tried this bug on two different computers, and both has this problem. Both machines are using Windows 7 Pro SP1 x64.

#8402 Unable to connect to seedbox high invalid 11 years 11 years
Description

I am unable to connect to my seedbox at ... ftp://hawk.seedcafe.info port 53421.

This leaves me unable to transfer any files from the box. Can you help.

TY,

Tim

#8403 Connection timed out normal invalid 11 years 10 years
Description

I have been logging in for year and half no problem - 2 weeks ago connection just sits there and then after a moment says timed out. I had ATT work on it from there end (see below) but still getting the same error timed out messages

have run the ping test from your modem and here are the results.

It is coming back with no errors. I have changed some of your firewall setting on your modem to allow FTP

#8412 Folder shortcuts are handled incorrectly in local site browser normal outdated 11 years 11 years
Description

In local site browser, when I double click a folder shortcut which is placed on my desktop, the program uploads it to the server instead of opening the related folder in local site browser.

#8414 PAPERCUT: File filter condition "by filesize" does not state which filesize unit is used normal fixed 11 years 11 years
Description

When setting up a filter condition using "filesize" user is allowed to enter a number (e.g. 3). This number represents a filesize, but, unfortunately it is not clear which unit is considered. MB/KB/...?

Moreover, if a user explicitly states the unit in the filter condition's input box (e.g. 3MB) the filter condition fails to validate.

SUGGESTION: Either suggest to user which unit is considered when entering filesize, or allow user to explicitly state or choose the unit.

#8417 Error 550- Can't access file normal rejected 11 years 11 years
Description

Starting upload of D:\ProjectsVSS\ATWPL_B2B\B2B\Flight\SpecialRoundTrip.aspx Status: Retrieving directory listing... Command: PASV Response: 227 Entering Passive Mode (50,22,228,18,25,105) Command: MLSD Response: 150 Connection accepted Response: 226 Transfer OK Command: PASV Response: 227 Entering Passive Mode (50,22,228,18,25,106) Command: STOR SpecialRoundTrip.aspx Response: 150 Connection accepted Response: 550 can't access file. Error: File transfer failed

i am getting error 550 can't access file, In the same folder when I am trying to upload 4 files in the server, one file is uploaded successfully other three are failed.

#8440 GnuTLS error -54: Error in the pull function normal fixed 11 years 10 years
Description

We have a hosting setup where we allow ftp using ftps. On one of our server while connecting over ftp we encounter following error.

This problem has not been encountered on any other server and we have many of them having same ftp setup/configuration.

This problem occurs with version 3.6,3.6.0.2 and 3.6.0.1 on archlinux.but on downgrading to version 3.5.3 there was no such problem.

I also found that one of our user on windows xp using version 3.3.2.1 also encountered this error.

This error was not encountered when using other ftp clients namely fireftp and coreftp.

I also tried downgrading gnutls but it didnt helped the problem persisted.

Status:	Resolving address of ******************
Status:	Connecting to *************:21...
Status:	Connection established, waiting for welcome message...
Trace:	CFtpControlSocket::OnReceive()
Response:	220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response:	220-You are user number 6 of 150 allowed.
Response:	220-Local time is now 12:16. Server port: 21.
Response:	220-This is a private system - No anonymous login
Response:	220-IPv6 connections are also welcome on this server.
Response:	220 You will be disconnected after 5 minutes of inactivity.
Trace:	CFtpControlSocket::SendNextCommand()
Command:	AUTH TLS
Trace:	CFtpControlSocket::OnReceive()
Response:	234 AUTH TLS OK.
Status:	Initializing TLS...
Trace:	CTlsSocket::Handshake()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	TLS Handshake successful
Trace:	Cipher: AES-256-CBC, MAC: SHA1
Status:	Verifying certificate...
Trace:	CFtpControlSocket::SendNextCommand()
Command:	USER *******
Status:	TLS/SSL connection established.
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	331 User migrate OK. Password required
Trace:	CFtpControlSocket::SendNextCommand()
Command:	PASS ************
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	230 OK. Current restricted directory is /
Status:	Server does not support non-ASCII characters.
Trace:	CFtpControlSocket::SendNextCommand()
Command:	PBSZ 0
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	200 PBSZ=0
Trace:	CFtpControlSocket::SendNextCommand()
Command:	PROT P
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	200 Data protection level set to "private"
Status:	Connected
Trace:	CFtpControlSocket::ResetOperation(0)
Trace:	CControlSocket::ResetOperation(0)
Trace:	CFileZillaEnginePrivate::ResetOperation(0)
Trace:	Measured latency of 23 ms
Status:	Retrieving directory listing...
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::ChangeDirSend()
Command:	PWD
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	257 "/" is your current location
Trace:	CFtpControlSocket::ResetOperation(0)
Trace:	CControlSocket::ResetOperation(0)
Trace:	CFtpControlSocket::ParseSubcommandResult(0)
Trace:	CFtpControlSocket::ListSubcommandResult()
Trace:	  state = 1
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 1
Command:	TYPE I
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	200 TYPE is now 8-bit binary
Trace:	CFtpControlSocket::TransferParseResponse()
Trace:	  code = 2
Trace:	  state = 1
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 2
Command:	PASV
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	227 Entering Passive Mode (**************,189)
Trace:	CFtpControlSocket::TransferParseResponse()
Trace:	  code = 2
Trace:	  state = 2
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 4
Command:	MLSD
Trace:	CTransferSocket::OnConnect
Trace:	CTlsSocket::Handshake()
Trace:	Trying to resume existing TLS session.
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnSend()
Trace:	CTlsSocket::OnRead()
Trace:	CFtpControlSocket::OnReceive()
Response:	150 Accepted data connection
Trace:	CFtpControlSocket::TransferParseResponse()
Trace:	  code = 1
Trace:	  state = 4
Trace:	CFtpControlSocket::SendNextCommand()
Trace:	CFtpControlSocket::TransferSend()
Trace:	  state = 5
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::ContinueHandshake()
Trace:	CTlsSocket::Failure(-54, 103)
Error:	GnuTLS error -54: Error in the pull function.
Trace:	CTransferSocket::OnClose(103)
Error:	Transfer connection interrupted: ECONNABORTED - Connection aborted
Trace:	CTransferSocket::TransferEnd(3)
Trace:	CFtpControlSocket::TransferEnd()
Trace:	CTlsSocket::OnRead()
Trace:	CTlsSocket::Failure(-110, 103)
Error:	GnuTLS error -110: The TLS connection was non-properly terminated.
Trace:	CRealControlSocket::OnClose(103)
Error:	Disconnected from server: ECONNABORTED - Connection aborted
Trace:	CControlSocket::DoClose(64)
Trace:	CFtpControlSocket::ResetOperation(66)
Trace:	CControlSocket::ResetOperation(66)
Trace:	CFtpControlSocket::ResetOperation(66)
Trace:	CControlSocket::ResetOperation(66)
Error:	Failed to retrieve directory listing
Trace:	CFileZillaEnginePrivate::ResetOperation(66)
Trace:	CControlSocket::DoClose(64)
Trace:	CControlSocket::DoClose(64)
#8441 "Cancel" button is disabled during transfer, "Toggles processing of the transfer queue" button actually cancels the transfer normal rejected 11 years 11 years
Description

I start a file transfer from remote FTP site to local machine, and during the transfer "Toggles processing of the transfer queue" is enabled and "pushed down", and "Cancels the current operation" button is disabled (see attached screenshot). And when I press "Toggles processing..." button, the transfer is actually cancelled.

What I actually expect is "Cancels..." button is enabled and cancels the current/last active transfer.

#8442 Resume creating larger file than the original file normal rejected 11 years 11 years
Description

I have several files sized 734,003,200 bytes (split of a larger file.) If the download is interrupted (by my network changing on my laptop), and the download "resumed", every time the resulting file is larger than the original file. I don't recall the exact size of the resulting file, but it is around 1-10MB more. When the status shows [ > 100% ] and the file is larger than expected, I decide to stop. This happened about 7 times with none being resumed successfully.

FileZilla Client


Version: 3.6.0.2

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-29 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.6.2

Operating system:

Name: Windows NT 6.1 (build 7601, Service Pack 1) Version: 6.1 Platform: 64 bit system

#8458 files with filenames including german characters are not transferred normal outdated 11 years 11 years
Description

Hi, I have found a bug which causes that files with filenames including german characters (i.e. ä, ö, ü, etc.) are not transferred. Is there a solution to it? many thanks

#8459 Client over SFTP, reports upload errors. Some spurious. normal outdated 11 years 11 years
Description

Using client 6.6.02, Win 7 Pro client machine. target machine is Red Hat Enterprise server. SFTP.

Filezilla reports errors when it needs to create a directory. it then creates the dir OK, and then reports errors on a file upload to the new dir. Then uploads file OK later.

The errors appear to be spurious but continally demand cross-checking that files did actually upload. These errors are consistent and completely repeatable. They are not random upload errors as might normally occur. Log excerpt below.

Other FTP clients do not do this in exactly the same situation - same machines, protocol, SFTP user etc.

Other FTP clients do not do this in exactly the same situation - same machines, protocol, SFTP user etc.

All the best folks.

#8462 'Filename' column showed last modified data,and 'Last modified' column no data high outdated 11 years 11 years
Description

Remote site's 'Filename' column shows last modified data,and 'Last modified' column no data, then click directory name can't cd into the directory,click filename can't download the correct file, because the directory name has the last modified year,date,time as the directory,file name's prefix.

#8465 WSAEADDRNOTAVAIL normal outdated 11 years 11 years
Description

I am try to connect FTP Server but getting following erroe Connection attempt failed with "WSAEADDRNOTAVAIL - Cannot assign requested address".

I am using DataCard for internet connection

#8473 File corruption when transfering file to QNX Neutrino Host normal outdated 11 years 7 years
Description

Hi,

I've found a reproducible issue regarding corruption when transferring files.

How to reproduce:

1) Install FileZilla 3.6.0.2 client on Mac or Windows 7 - both reproduce this issue.

2) Install QNX Neutrino 6.5.0 SP1 OS in a VM or native on an x86 machine. Easiest way is to download the Virtual Machine posted here: http://www.qnx.com/download/group.html?programid=20905.

Once QNX is installed, edit /etc/inetd.conf and uncomment the line of text beginning with "ftp". Then run "inetd" if it is not already running. Also note the IP address.

3) Open FileZilla client and transfer the attached binary file "helloworld" to the FTP server running on the QNX host.

4) Checksum the file (cksum utility) before and after transferring. You'll see that the checksum is different!

5) You can copy the file from QNX back to your machine by tarring the file, e.g. "tar cvf helloworld.tar helloworld" then using FileZilla to transfer the file, or by using any FTP client other than FileZilla to ensure the file doesn't get corrupted a second time. You can then hex dump the files to see the specific differences before and after the corruption.

Notes:

  • I've used other FTP clients before, never seen this problem. For example from a Mac you can use the built in ftp client and there is no corruption.
  • I tried copying the same file to an Ubuntu 10.04 Virtual Machine running vsftpd but the corruption did not occur.
  • I created the helloworld file by writing a C file which prints hello world and compiling using the QNX toolchain. There's got to be other files that reproduce this issue but I haven't found any others yet.
#8479 Right clicking on folder/file name while renaming freezes FileZilla high duplicate 11 years 11 years
Description

In both local and remote file explorers, while renaming a file/folder, if I right click on it, the text box (of renaming) turns into folder/file name and FileZilla freezes. While freezed, main menu items can be used without any problem but icons, log window, file explorers, queue, etc does not respond to my clicks neither can I close by clicking on close button on title bar (but File > Exit works).

I enabled verbose but nothing appears in the log when I right click.

This latest version of FileZilla was downloaded from FileZilla website and earlier version which I had was installed via Synaptic Package Manager and that too had the same problem.

On my system it can be easily recreated. I have to just: Start FileZilla > in local explorer (tree or list) right click, rename > in the text box for renaming, right click > application freezed.


FileZilla Client Version: 3.6.0.2

Build information:

Compiled for: i586-pc-linux-gnu Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-29 Compiled with: gcc (Debian 4.4.5-8) 4.4.5 Compiler flags: -g -O2 -Wall -g -fexceptions -std=gnu++0x

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.9

Operating system:

Name: Linux 3.2.0-37-generic-pae i686 Version: 3.2

#8483 FileZilla is not disconnecting properly normal outdated 11 years 11 years
Description

I get connection errors when trying to connect. I have set the connection to auto. I found out from my web hosting provider that I have 7-8 connections that are going on simultaenously. It doesn't disconnect properly.

#8504 550 Failed to change directory. normal rejected 11 years 11 years
Description

Hi. Everything seems to be working fine, but I'm getting the "Failed To Retrieve Directory Listing" error for only one particular file. I can't download the file and I can't open it to look at the contents. It's puzzling because out of the hundreds of files I've downloaded, this is the only one that has given me a problem. Here is what I see on the log if this helps:

Command: CWD Fangoria Response: 550 Failed to change directory. Error: Failed to retrieve directory listing Status: Retrieving directory listing... Command: CWD /files Response: 250 Directory successfully changed. Command: CWD Fangoria Response: 550 Failed to change directory. Error: Failed to retrieve directory listing

Any information you may be able to give would be greatly appreciated. Again, it's only ever happened with this one dang file! Thanks, Steve.

#8506 Log in error issues after downloaded newest version of Filezilla normal outdated 11 years 11 years
Description

I d/l the newest version of Filezilla upon the automatic prompt today when I opened Filezilla. Afterwards, I was unable to quick connect. I entered in my user / pw and am still unable to connect. I get a CRITICAL ERROR message.

I admit I am not very FTP savy...but unsure how to proceed. I have my username/pw written down, so I feel I am entering correct information.

#8510 file name error? normal outdated 11 years 11 years
Description

file and directory name are error.

#8513 fz v3.6.02 no sftp with password normal outdated 11 years 11 years
Description

Try ftp connect with username and password - connect will be ok - password is saved within servermanager.

Now choose SFTP from Protokoll and try to connect. You will see connection errors but no connect. Using Filezilla 3.6.02 will not.

Error: Server sent disconnect message Error: type 2 (protocol error):

Using WinSCP will work doing the same thing.

#8514 Can't upload or download files or folders with Ver 3.6.0.2 normal invalid 11 years 11 years
Description

After loading update 3.6.0.2, I can't upload or download files or folders. The update was delivered automatically.

When I right click a file or folder, "Download" and "Add files to queue" are grayed out. Double clicking the file or folder doesn't work either.

This happens on both a Win7 Professional with Service Pack 1 machine and an XP Professional 2002 with Service Pack 3 machine.

#8516 Program causes display driver to crash often during transfer of files. normal duplicate 11 years 10 years
#8517 I cant log onto my filezilla zccount. has been working fine till 2 days ago normal rejected 11 years 11 years
Description

If I try to connect through site manager i get the following errors

Status: Resolving address of heatingnation.net Status: Connecting to 66.96.147.103:80... Status: Connection established, waiting for welcome message... Error: Connection timed out Error: Could not connect to server

if i try to connect through quick connect i get the following errors

Response: 220 Ipage FTP Server ready Command: USER heatingnationnet Response: 331 Password required for heatingnationnet Command: PASS * Response: 530 Login incorrect. Error: Critical error Error: Could not connect to server

#8528 Downloaded files truncated to 1MB normal outdated 11 years 11 years
Description

Every file downloaded from a ftp server (fileapp on iPad) whose size is > 1MB, is truncated to 1MB.

For example a file whose size on ipad is 1.467.023 byte when downloaded is truncated to 1.048.576 byte.

Downloading it with another client (command line on OSX, or explorer on Win7) works well.

The 2 hosts (ipad and ftp client) are on the same ip network (no routing) without any proxy.

Filezilla doesn't display any error message and the transfer is ended succesfully, even if it truncate the file.

Regards Alessandro

#8531 IPv6 address causes error Invalid port given. normal worksforme 11 years 11 years
Description

I entered an IPv6 address into the host block and it gives me the following error: Could not parse server address: Invalid Port given. The port has to be a value from 1 to 65535.

I verified that my address was valid by pinging the address with the -6 switch to force IPv6. Received replies back.

Tried with port blank and set to 21. Get the same results.

Set debug level to 3 but don't see any logs, probably because it never connected.

#8532 IPv6 address causes error Invalid port given. normal duplicate 11 years 11 years
Description

I entered an IPv6 address into the host block and it gives me the following error: Could not parse server address: Invalid Port given. The port has to be a value from 1 to 65535.

I verified that my address was valid by pinging the address with the -6 switch to force IPv6. Received replies back.

Tried with port blank and set to 21. Get the same results.

Set debug level to 3 but don't see any logs, probably because it never connected.

#8539 Filezilla crashes on close normal outdated 11 years 10 years
Description

Hello,

Everytime I close FileZilla, it crashes. I'm currently using the latest version avaible (3.6.0.2).

I think those crashes started around v3.5.

Thanks,

#8540 Filezilla Client accesses redirected directories instead of real ones normal wontfix 11 years 11 years
Description

Try to launch FileZilla Client (without "run as admin") and go to Windows\system32 folder on 64bit system (i.e. Windows 7). List your local files and try to identify aclui.dll. Note the size. Launch cmd.exe as admin and try to dir \windows\system32\aclui.dll. Compare sizes of your files. Now try to dir \windows\syswow64\aclui.dll As you can see Filezilla tells that displays data from system32 and in fact displays the content of syswow64. The application should be 64bit aware and use real folders without redirection. Look at http://msdn.microsoft.com/en-us/library/windows/desktop/aa384187(v=vs.85).aspx for additional info.

#8541 Site Manager not saving SFTP protocols normal rejected 11 years 11 years
Description

Adding profile on Site Manager Host: ftps://ftp.site.com Port: 990 Protocol: SFTP -SSH File

After entering the values and hitting connect on the site manager it connects, but when re pulling the profile up again it saves as Protocol: FTP with no port. If I don't specify ftps:// on the host it fails to connect. If I try adding ftps://ftp.site.com from an imported profile it adds [] around the host and pops a warning "Invalid protocol specified. Value protocols are: ftp: for normal FTP....."

#8548 Port Configuration Issue normal outdated 11 years 11 years
Description

Good morning, I recently downloaded Office 365 to my office computers and now when we try to open an Excel Spreadsheet in the FTP, it comes up blank. I spoke with Office 365 Support and they said that I needed to contact you all because there was an issue with the port configuration. Can you all help me with this? I cannot perform my duties until this is resolved.

#8549 IIS 2008R2, SSL cipher issues, dropped connections high fixed 11 years 10 years
Description

On IIS 2008 R2, with an SSL connection, with PCI compliant ciphers only, a variety of broken and dropped errors occur.

Server set to PCI compliant ciphers only (RC4 128, 3xDES 168, AES 128, AES 256).

On v3.6.0.2: wont connect at initial start up; server drops the connection with this error: An TLS 1.2 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed. i.e. no matching Cipher.

Note on 3.6.0.2, if we allow the non PCI ciphers, it does connect, but, then fails on upload transfers, with "invalid transfer" message in the log (i don't know which cipher its selected).

On older 3.53; with the AES ciphers in the top of the list, it will connect, but fails the file upload transfer. With RC4 cipher as the first choice (beast ordering), it fails outright and never connects.

#8553 I can not enter my website normal fixed 11 years 11 years
Description

Hi, It accepts the login & password, but then hangs on command MLSD

#8555 Directory name causing listing failure normal outdated 11 years 11 years
Description

Hello,

I'm failing to get a directory listing under special circumstances.

How to Reproduce:

1.) Create a directory named test test test ""d'test test"" test 2.) Place any file into the directory. 3.) Go into the directory and attempt to refresh the listing.

You should be presented with this error:

16:18:49 Command: CWD /test test test """"d'test test"""" test 16:18:49 Response: 550 Failed to change directory. 16:18:49 Error: Failed to retrieve directory listing

#8557 Restricting the number of retries of uploading normal outdated 11 years 11 years
Description

Hello Sir,

I am trying to upload a file through FileZilla Client to customized Apache FTP Server. If the upload fails due to any of the business decisions made on server[connection is not lost], FileZilla client tries to upload the file repeatedly multiple times.

Is there any setting in FileZilla client that can restrict the number of retries to 0 for uploading the file. If the setting is not in FileZilla Client, Could you suggest a way out.

Regards, Gulshan

#8565 Windows 8 OS crash upon transfer of >2GB file normal rejected 11 years 10 years
Description

This issue is 100% reproducible. Windows 8 64-bit will crash during the following conditions.

  1. Have a file larger than 2GB available. (Test file I used was 2.4GB). Be connected to a valid remote FTP site.
  2. Use FileZilla Portable 3.6.0.2.
  3. From the OS (not from the "Local Site" pane in FileZilla), drag the file to the "Remote Site" window.
  4. Watch as the Windows 8 operating system crashes and your computer reboots.

I have attached an example minidump file for analysis.

#8579 Will not "release" from a connection. normal outdated 11 years 11 years
Description

ver. 3.6.0.2 Running Win 7 Ultimate

I have 7 domains spread across 2 IP addresses. If I ftp to one, then go to another to ftp something else, FileZilla will not release from the first connection no matter what I do. The only way I can disconnect from the initial ftp connection is to completely shut FileZilla down, then restart.

#8581 Unable to connect to FileZilla Servers normal outdated 11 years 11 years
Description

Whenever I try to connect to a Server, I get "Connection Timed Out" followed by "Could not connect to the server" errors. Other users in my office do not have this problem. I tried to reinstall the program and this did not help anything.

#8585 GnuTLS update request of FileZilla high fixed 11 years 11 years
Description

I would like to request that you update the GnuTLS module to the latest version, not only it corrects many bugs but also corrects security problems (http://www.gnutls.org/security.html#GNUTLS-SA-2013-1) The latest (at the moment) is: GnuTLS 3.1.10

#8586 open menu command doesn't open folder on left side normal outdated 11 years 11 years
Description

filezilla client v3.6.0.2

in left side folder pane, right-click a folder, choose open, nothing happens.

i expected explorer to open with the folder in a window.

#8591 Cannot connect while using latest Filezilla version 3.6.0.2 normal worksforme 11 years 10 years
Description

I downloaded the latest version of Filezilla and was trying to connect to my site - reemagination.com using the FTP username/pswd provided by the hosting site. I am not able to connect. Here is the log being produced --


Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of reemagination Status: Connection attempt failed with "EAI_NODATA - No address associated with nodename". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of reemagination Status: Connection attempt failed with "EAI_NODATA - No address associated with nodename". Error: Could not connect to server Status: Resolving address of www.reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of www.reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Resolving address of reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server Status: Waiting to retry... Status: Delaying connection for 1 second due to previously failed connection attempt... Status: Resolving address of reemagination.com Status: Connecting to 74.208.182.70:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server


On my work computer, I have an older version of Filezilla - 3.5.3 and I tried connecting there with the same username/pswd and it connects just fine. I was even able to upload my updated source code to the site.

Looks like a bug in the new version?

#8594 Cannot Reconnect to last connection normal fixed 11 years 8 years
Description

I try reconnect to my last site Taruhan Bola but always failure, i already to uninstall but keep failed.

my filezilla version 3.6.0.2

#8595 UTF-16 line endings get corrupted by uploading and downloading normal wontfix 11 years 11 years
Description

I uploaded a UTF-16 text file with the following content:

FF FE 48 00 65 00 6C 00 6C 00 6F 00 0D 00 0A 00 57 00 6F 00 72 00 6C 00 64 00

Note the correct BOM for UTF-16 little endian and that every second byte in the text is set to zero.

After downloading it again the content changes like this:

FF FE 48 00 65 00 6C 00 6C 00 6F 00 0D 00 0D 0A 00 57 00 6F 00 72 00 6C 00 64 00

FileZilla transmits the file in text mode and because of that the UTF-16 line ending chars get corrupted to 8 bit ASCII line endings. In this case only 0A 00 got corrupted to 0D 0A 00, because of Windows -> Unix -> Windows.

The file is now 1 byte longer (an odd byte count for UTF-16 files is already invalid) and the content is broken.

Uploading in binary mode avoids this problem, so I suggest that FileZilla detects UTF-16 using BOM or line endings in 0D 00 0A 00 format and uses binary mode for these files by default to avoid corruption.

#8601 Unable to download ± character normal outdated 11 years 10 years
Description

I get an error every time I try to download the ± character. It is not a foreign language, just something I come across often with technical people. Can you please include support for this?

Thank you. I love this program otherwise.

Below are my details:

FileZilla Client


Version: 3.6.0.2 Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2012-11-29 Compiled with: i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2) Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:

wxWidgets: 2.8.12 GnuTLS: 3.1.4 SQLite: 3.7.6.2

Operating system:

Name: Windows Server 2003 (build 3790, Service Pack 2) Version: 5.2 Platform: 64 bit system

Status: Connecting to [deleted]... Status: Connection established, waiting for welcome message... Response: 220 (vsFTPd 2.3.4) Command: USER [deleted] Response: 331 Please specify the password. Command: PASS Response: 230 Login successful. Command: SYST Response: 215 UNIX Type: L8 Command: FEAT Response: 211-Features: Response: EPRT Response: EPSV Response: MDTM Response: PASV Response: REST STREAM Response: SIZE Response: TVFS Response: UTF8 Response: 211 End Command: OPTS UTF8 ON Response: 200 Always in UTF8 mode. Status: Connected Status: Retrieving directory listing... Command: PWD Response: 257 "/" Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode ([deleted]) Command: LIST Response: 150 Here comes the directory listing. Response: 226 Directory send OK. Status: Invalid character sequence received, disabling UTF-8. Select UTF-8 option in site manager to force UTF-8. Status: Calculating timezone offset of server... Command: MDTM 524120092A5034A17±pg04.dwg Response: 213 20130408195423 Status: Timezone offsets: Server: 0 seconds. Local: -25200 seconds. Difference: -25200 seconds. Status: Directory listing successful Status: Connecting to [deleted]... Status: Connection established, waiting for welcome message... Response: 220 (vsFTPd 2.3.4) Command: USER [deleted] Response: 331 Please specify the password. Command: PASS Response: 230 Login successful. Command: OPTS UTF8 ON Response: 200 Always in UTF8 mode. Status: Connected Status: Starting download of /524120092A5034A17±pg04.dwg Command: CWD / Response: 250 Directory successfully changed. Command: PWD Response: 257 "/" Command: TYPE I Response: 200 Switching to Binary mode. Command: PASV Response: 227 Entering Passive Mode ([deleted]) Command: RETR 524120092A5034A17±pg04.dwg Response: 550 Failed to open file. Error: Critical file transfer error Status: Disconnected from server

#8607 Out of memory normal outdated 11 years 9 years
Description

When transferring huge amounts of data (Filezilla Client) I get out of memory errors.

I can see in the taskmanager that FZ is using more and more memory. It starts reporting out of memory after slowly climbing from 57.000 kb to 340.000 kb in taskmanager. I am copying around 50 domains with WordPress sites.

It does not make any difference to free up memory by killing processes after FZ has started.

#8620 Queue item cleared anyway when transfer fails due to permission denied on target normal invalid 11 years 11 years
Description

Queue item cleared anyway when transfer fails due to permission denied on target.

The "Critical file transfer error" message is difficult to spot in the log window when transferring a lot of files.

Preferred behaviour would be for item to remain in the queue, with status reflecting the appropriate error, so user can detect this easily.

#8630 Site FTP list is broken in secondary monitor normal outdated 11 years 11 years
Description

The Site FTP list get out of the monitor in my secondary monitor, this happens because the resolution is lower than the primary monitor.

If I move the window to the primary, the list will show just fine.

#8634 Drag and drop files not working between local and remote high outdated 11 years 10 years
Description

Specific issue:

Clicking on the icon of a file with left mouse button has no effect whereas it should initiate a drag.

Background:

I was prompted to update to FileZilla Client 3.6.0.2 about 9 days ago (strange because it was released 2012-11-29, perhaps I was ignoring the previous update requests, not sure). After the update, I can no longer drag / drop files between servers using left mouse button (as is normal).

Notes:

  • I can left click on filename to rename.
  • I can drag files from Mac Finder into either local or remote file lists and it works fine.
  • I can right-click to upload / download, etc.
  • Left mouse button works fine for all other applications and all dialogs, icons, etc inside FileZilla. Also works for double-click file transfer if configured for such.
  • I have restarted and even reinstalled FileZilla Client 3.6.0.2 to confirm.
  • I looked in Preferences and did not see anything obvious that could cause this behavior. Tried every conceivable option that could trigger changes to mouse behavior in file list.
  • Using a standard 2-button logitech mouse with scroll wheel. Have tries with another generic mouse and exact same behavior.

Research:

  • I tried to first check the FileZilla help forum for related threads. Did not find any.
  • I did not find any open bugs for this.
  • I attempted to register on the help forum to see if I was just missing something, but the forum does not accept @gmail.com addresses. [no comment]

About FileZilla:

FileZilla Client
----------------

Version:          3.6.0.2

Build information:
  Compiled for:   i686-apple-darwin9
  Compiled on:    i386-apple-darwin9.8.0
  Build date:     2012-11-29
  Compiled with:  i686-apple-darwin9-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5577)
  Compiler flags: -g -O2 -Wall -g -fexceptions

Linked against:
  wxWidgets:      2.8.12
  GnuTLS:         3.1.3
  SQLite:         3.7.6.2

Operating system:
  Name:           Mac OS X (Darwin 12.3.0 x86_64)
  Version:        16.131
#8647 Problems with downloading files whose names have non-ANSI characters normal invalid 11 years 10 years
Description

I have been downloading music module files from ftp.modland.com. Some of the files there have non-standard names and may be really good for testing. Here are my observations:

  1. FileZilla sometimes can download files with national characters, and sometimes it cannot. I am not sure why the bug is not always reproducible but it seems to depend on the fact if the file is downloaded as the first one, or not. FileZilla seems to set itself to the codepage - but if the codepage is already set, there is no way to download a file except when after restarting the program. Examples: /pub/modules/Fasttracker 2/Walkah/tehdastyöläinen.xm Note ä, ö letters in the name of the file. I would expect that FileZilla behaviour would be more stable or possible to be set manually.
  1. Such files are sometimes downloaded with correct names, and sometimes not. For example: /pub/modules/Ad Lib/AdLib Tracker 2/Nula/gummi björnarna.a2m or gummi björnarna.a2m . I have tried downloading them twice, and I have two versions now.
  1. Yet more serious problems have been spotted with ANSI-named files in non-ANSI named folders. Example: /pub/modules/Fasttracker 2/Roger Skagerström/time files away.xm (note "o umlaut")or /pub/modules/Maniacs Of Noise Old/Johannes Bjerregård/tusker title.xm (note "a ring" that is not even prestnt in Windows 1250 codepage used on my OS in its native version). Such a file is listed as unsuccessful transfer, or the file can be downloaded with no contents (i.e. it is 0 bytes long on my computer). Files like those are not listed as errors, so the only way to find them is to check your disk manually, searching for zero-length files.
  1. Sometimes the FileZilla behaviour is even destructive. I can download the file like in point 2 manually (e.g. with a browser) and place it in the right place in the folder tree on my disk. When I run FileZilla and set it to download only files that differs in length or are newer, then it replace the correct file with a new version of 0 bytes length. In other words, FileZilla works destructively - destroys good files with bad ones. It seems that FileZilla tries to download such files even if they are neither newer nor with different size - and because the downloaded file is 0 bytes long, the program treats it as a different length.
  1. FileZilla is completely helpless with files whose names start from a dot. Examples: "/pub/modules/Fasttracker 2/Walkah/. s e.xm" or even mor bizarre: "/pub/modules/Fasttracker 2/Cosmic Eclipse/. . . - - - . . .xm" - it is good that FileZilla can see this file at all (ex. Mozilla Firefox cannot see them), but it is bad that FileZilla cannot download them under any conditions. To tell the truth, I have no program that would do it. All I can to obtain such strange-named-files is to use mirrors like http://ftp.amigascne.org/cgi-bin/search_archive.cgi - but I would like to download them with FileZilla.
#8662 FZ now won't launch - gives Error code "F4MDamageTitleStr" normal outdated 11 years 11 years
Description

My FZ app had worked for past 4 months, thankyou.

For the last 2 weeks upon attempting to launch it falls over leaving an Error message "F4MDamageTitleStr" followed by "F4MDamageMessageStr".

To try to work around the problem, I have on four occasions:

  1. uninstalled and trashed the original app
  2. downloaded the currently available zip file (FileZilla_3.6.0.2_i686-apple-darwin9.app.tar) from your site
  3. unzipped it
  4. attempted to launch, but
  5. it doesn't. It just displays Error message "F4MDamageTitleStr (followed by) F4MDamageMessageStr" for 10 seconds
  6. sometimes followed by "FZ quit unexpectedly..."

I now don't know whether I was originally using 3.6.0.1 or 3.6.0.2 (and at any rate 3.6.0.1 isn't now available on your web-site). I have since also downloaded the new "FileZilla_3.7.0-rc1_i686-apple-darwin9.app.tar" but it gives me the same problem.

Mac support tell me they can't recognise it as Mac-related and believe it's software related. Can you help please as it was such a good FTP app. Hopeful, Rob

#8665 Please resolve this issue low rejected 11 years 11 years
Description

I am unable to connect to filezilla it shows critical error 500 could not connect to server. My site is www.flavorsofmumbai.com.... please help at the earliest...

#8672 When trying to view a gif file it opens up in Internet Explorer instead of Windows Picture and fax viewer normal outdated 11 years 10 years
Description

When trying to view a gif file on the server (right hand pane) the file is downloaded and is opened in Internet Explorer not in Windows Picture and Fax viewer like jpg files are. When trying to edit the file type association settings Filezilla does not allow for the correct file location syntax to be typed in.

I am using Filezilla version 3.6.0.2

#8680 FTP doesn't connect to server normal outdated 11 years 11 years
Description

During login procedure I put in 'Domain Name', User Name', 'Password'. Then I press Quickconnect and I get a message "Critical Error" :Could Not Connect To Server". I have updated to the latest version, something like 7.3.0 or whatever. Thanks.

#8683 OS X new version download default folder is wrong low fixed 11 years 7 years
Description

is 'Documents'

should be 'Downloads'

if localized, the name changes, for french it is 'Téléchargements'

#8685 cannot set permissions to 777 for the folders and files normal rejected 11 years 11 years
Description

I can not understand. Simple command CHMOD in FileZilla doesn't work.

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