Custom Query (2163 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1901 - 2000 of 2163)

Ticket Summary Status Owner Type Priority Component
#12616 Synchronized browsing is not turned on when reconnecting new Patch normal FileZilla Client
Description

I am running filezilla at Debian Bookworm (testing). On startup I use the option "Restart tabs and reconnect". Filezilla then shows the files of the local and remote (sub)directories, that were active at the previous exit of filezilla. This is a nice feature because often more than once files from the same subdirectory are changed.

Unfortunately at the reconnect the option "synchronized browsing" is not activated, although this option is set for the site. This option only seems to be automatically activated, if the site is manually connected using the site-manager at the default local and remote root-directory, but you almost never want to be at this directory.

This problem exists at filezilla-3.52.2, filezilla-3.53.1 and filezilla-3.57.0.

The "synchronized browsing"-option is a very important option, because it avoids, that files are transported to the wrong directory.

If you forget to set the option and change directory without noticing this, the website will not work anymore.

So it is not only annoying to set the option each time at a reconnect, it also causes an unneeded risk of a not working website.

A weak property of this solution is that at a reconnect "synchronized browsing" also is set if the local and remote path are not in sync, because at the previous session "synchronized browsing" was disabled by the user. But this is general behavior of filezilla, which never checks, that the directories really are in sync, when the user sets the option.

I send a simple, validated patch for filezilla-3.57.0 (8 lines) which always sets the option at a "Restart tabs and reconnect" or by reconnect-button, if this option is specified for the site.

The patch-logic is also validated at filezilla-3.52.2, which was the current filezilla-release at Debian Bullseye.

I think this patch causes a more logical and user-friendly implementation of the "synchronized browsing" option for the site, avoiding unnecessary mistakes with downloads.

#12619 KDE - Minimize to systemtray crashes if used. new Bug report normal FileZilla Client
Description

KDE - Minimize to systemtray crashes if used.

See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=726348

Video of issue attached.

#12624 File Explorer View + Streaming Media new Feature request normal FileZilla Client
Description

I have an app on all my Android devices: "FX File Explorer". Basically, it allows me to browse a remote device via an SFTP connection *or* my local files in a viewing pane similar to a Windows File Explorer window.

The biggest advantage is that I can stream any media file just by tapping on it. The explorer invokes the local device's media player, and streams the file, versus downloading and opening it.

My request is to add this functionality to FileZilla, where double clicking on a media file would invoke your local media player, and stream the media to your machine, with downloading switched to a right-click function.

#12625 Remember last synchonisation new Feature request normal FileZilla Client
Description

It would be really nice if, on reopening a connexion, Filezilla would remember that I had toggled Synchronized Browing and go directly to the last local and distant folders opened.

#12630 Unable to Connect to the Application new Bug report normal FileZilla Client
Description

I am having trouble connecting to the FileZilla. Every time I am trying to connect, it says "Could not Connect to Server". I have restarted the computer and I think I have the latest version too.

#12633 Schedule Speed Limits new Feature request normal Unknown
Description

Add a function that would enable speed limits on a schedule.

Example: From 8am to 5pm upload speed limit enabled. That way a long backup wouldn't interrupt other users as much during the workday, but would allow full speed at night.

#12635 550 Data channel timed out when connecting to vendor FTP new Bug report normal FileZilla Client
Description

Hi, I am experimenting an issue when connecting to the FTP server owned by a vendor of my company. The server is a Microsoft FTP and I am connecting from a MacBook Pro M1 through a VPN.

My connection is configured as:

  • Require explicit FTP over TLS
  • Logon by password (normal)
  • Server type autodetect
  • Transfer passive
  • Transfer type binary (I have experimented with ASCII too)

but I receive the error 550 Data channel timed out on LIST operation. Here are the full logs at debug level:

Status:      	Connecting to <IP>:21...
Status:      	Connection established, waiting for welcome message...
Status:      	Initializing TLS...
Status:      	TLS connection established.
Status:      	Logged in
Status:      	Retrieving directory listing...
Command:	PWD
Response: 	257 "/" is current directory.
Command:	TYPE I
Response: 	200 Type set to I.
Command:	PASV
Response: 	227 Entering Passive Mode (<IP1>,<IP2>,<IP3>,<IP4>,19,138).
Command:	LIST
Response: 	150 Opening BINARY mode data connection.
Response: 	550 Data channel timed out.
Error:        	Failed to retrieve directory listing

On the same machine this simple python script succeeds in the operation:

from ftplib import FTP_TLS
ftp = FTP_TLS("ThirdPartyServer", "MyLogin", "MyPassword")
ftp.set_debuglevel(2)
ftp.set_pasv(True)
ftp.prot_p()
ftp.pwd()
ftp.dir()

producing the following stack:

Python 3.9.7 (default, Nov 19 2021, 08:43:07)
[Clang 13.0.0 (clang-1300.0.29.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from ftplib import FTP_TLS
>>> ftp = FTP_TLS("ThirdPartyServer", "MyUser", "MyPassword")
>>> ftp.set_debuglevel(2)
>>> ftp.set_pasv(True)
>>> ftp.prot_p()
*cmd* 'PBSZ 0'
*put* 'PBSZ 0\r\n'
*get* '200 PBSZ command successful.\n'
*resp* '200 PBSZ command successful.'
*cmd* 'PROT P'
*put* 'PROT P\r\n'
*get* '200 PROT command successful.\n'
*resp* '200 PROT command successful.'
'200 PROT command successful.'
>>> ftp.pwd()
*cmd* 'PWD'
*put* 'PWD\r\n'
*get* '257 "/" is current directory.\n'
*resp* '257 "/" is current directory.'
'/'
>>> ftp.dir()
*cmd* 'TYPE A'
*put* 'TYPE A\r\n'
*get* '200 Type set to A.\n'
*resp* '200 Type set to A.'
*cmd* 'PASV'
*put* 'PASV\r\n'
*get* '227 Entering Passive Mode (<IP1>,<IP2>,<IP3>,<IP4>,19,141).\n'
*resp* '227 Entering Passive Mode (<IP1>,<IP2>,<IP3>,<IP4>,19,141).'
*cmd* 'LIST'
*put* 'LIST\r\n'
*get* '150 Opening ASCII mode data connection.\n'
*resp* '150 Opening ASCII mode data connection.'
06-11-21  10:06AM       <DIR>          folder1
05-24-21  01:25PM       <DIR>          folder2
10-06-21  10:34AM       <DIR>          folder3
03-30-21  08:43AM       <DIR>          folder4
*get* '226 Transfer complete.\n'
*resp* '226 Transfer complete.'
>>>

Am I missing some configuration in Filezilla?

#12636 Setting file mode to 2755 does not set sticky group bit new Bug report normal FileZilla Client
Description

Using SFTP to a Rocky Linux 8 OS, manually setting the numeric value of a directory to 2755 does not set the sticky group bit:

2755: drwxr-xr-x.

2775: drwxrwxr-x.

2777: drwxrwxrwx.

6755 does set the SUID bit: drwsr-xr-x.

chmod 2755 over SSH also sets the sticky bit.

#12639 transfers "stutter" on Mac new Bug report normal FileZilla Client
Description

Everything is perfect on PC. Moving to a MacBook with an M1 processor. Exported settings etc. on PC and then imported those settings on the MacBook. FTP connects as it should but the uploads "stutter". A few files will upload and then the upload stops and the server disconnects because of no data transfer. FZ reconnects and the process repeats. Uploads that used to take 15-20 seconds now take 5 or more minutes. Apple care found no issues on the MacBook. The router setup has not changed from the PC. The Debug report is attached.

#12641 Problem with uploading files to Playstation moreinfo Bug report normal FileZilla Client
Description

FileZilla client 3.57.0 Windows 7 x64 Russian with all updates No antivirus Playstation 3 Slim [CFW] 4.88.2 EVILNAT COBRA 8.30 with FTP Server(passive mode).

When uploading files via FileZilla client to Playstation via local network(Wifi), there are dropped connections. When you select the resumption function, start's new uploading but not resumption. The file size does not affect the situation. There is no such problem in the FlashFXP(5.4.0 build 3970) client. Everything is dresumption normaly.

#12642 Server upload write permission new Feature request normal FileZilla Server
Description

Server upload permission used to be read [Y/N] and write [Y/N]. On my server you can login anonymously and download files from the virtual "/" which is physically "c:/downloads". this directory is Read:Y write:N. I have another virtual directory "/upload" which physically links to "c:/uploads" but it has the following permission "read:n write:Y". You cannot view this directory nor can you download but you can upload files.

It is important that the upload and download capabilities lie in separate directories so that random people cannot use my server as a file storage location.

in filezilla server 1.2 the directory permissions are R or R+W. W-only no longer exists.

Please add Write-only as an additional option in the next version.

#12647 Can not upload new Bug report high Unknown
Description

Error: GnuTLS error -15 in gnutls_record_recv: An unexpected TLS packet was received. Error: Could not read from socket: ECONNABORTED - Connection aborted Error: Disconnected from server

#12648 [PATCH]Windows Long PATH support new Patch high FileZilla Client
Description

https://i.imgur.com/HCyDYuK.png

It's easier than what I thought it should be, only need to add the following below to the FileZilla interface manifest xml. Patch added.

  <application xmlns="urn:schemas-microsoft-com:asm.v3">
    <windowsSettings>
      <longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
	  <activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
    </windowsSettings>
  </application>
#12649 Integration with freedesktop secret service new Feature request normal FileZilla Client
Description

Hi, I think it would be really great if Filezilla gave the possibilty to use a freedesktop.org secret service[*] compliant password manager (like keepassxc, gnome keyring, kde wallet) for storing and retrieving account's passwords.

[*] https://freedesktop.org/wiki/Specifications/secret-storage-spec/

With regards

#12652 Accessibility problems with administration interface GUI accepted Fabio Alemagna Other normal FileZilla Server
Description

Hi,

I encounter sevral problems to configure the server via the administration GUI, the keyboard navigation could be difficult and the screenreader NVDA version 2021.3.1 doesn't work with all components of the GUI.

The biggest problem is the datagrids, for example the configuration for users dirrectories access but all components of this type are problematic. When I use the "tab" key to focus this type of elements it's not possible to move in it with keys or to quit it with "tab" (I must use a shortcut). So it's not possible to select an item in the array and to configure it correctly, this is a big regression cause with the old GUI these problems wasn't present. Also, the datagrids are not announced correctly by the screenreader if I try to modify something in it, I must exit the settings and reload them to have a small access.

Also, when I add a new user or with the list elements of this type, the focus is blocked in the list with the possibility to up or down the selected item but I haven't access to the other options and, if I navigate without adding a nex element, I can't move up or down the selected element. I don't know if this happen also when I modify or copy the selected element but it's also a big problem.

An other problem, the dialog box creation for a SSL certificat has a strange behaviour with the tabindex so it's realy difficult to use it only with the keyboard.

I've also see something that I haven't understand, in the user configuration in the "General" tab, my screenreader indicate me a combobox just after the password field (always using "Tab" key to navigate) but I can't interract with it.

In conclusion the old interface was realy better for the accessibility and keyboard navigation, using a contextual menu in lists was far better than this new interface, etc..., this new interface is probably more modern than the old one but very less usable for visualy impaired people or for those who don't use the mouse. I hope this can be fixed, I realy apreciate Filezilla Server but for now the only solution that I have found is to install an old version (under 1.0.0), configure it and reinstall a new version but if I want to change something it could be realy difficult.

Best regards and keep up the good work.

#12655 FileZilla fault moreinfo Other low FileZilla Client
Description

Regret I have done something to my FileZilla and although I can open the Plugin's I am no longer able to open the .config to view my plug in's Is it possible you can see what I have done to mess it up.

Regards,

Dave

#12658 libfilezilla: impersonation code is Linux-specific new Bug report normal libfilezilla
Description

The new impersonation code does not build on (Net)BSD. crypt.h and shadow.h are Linux-specific. I'll attach a patch to show what is needed to make this compile on NetBSD, but of course proper support would be preferred.

#12659 Convenience of Bookmarking Feature new Feature request normal FileZilla Client
Description

Hello!

Long time user, first time bookmarker. I'm not quite sure what I expected, but as I was tidying up my Site Manager I noticed the button and decided to give it a go.

While it is somewhat more convenient than navigating the file structure, I find that having it in its own menu is sub-optimal. What if the bookmarks presented in the dropdown from the Site Manager button as a second level menu.

So, hover on a connection with bookmarks and a menu pops out to the right with the list of bookmarks so you can get there without the extra step.

Still keep the bookmarks menu for navigating while connected and for those that are accustomed to it, but for my use, I generally connect for a quick task and then close FZ until I need to do something else.

#12663 Error: Please verify the user name and password used to connect. moreinfo Bug report normal FileZilla Client
Description

Hello,

We have FileZilla Pro and connecting to an S3 bucket via a IAM user creds access and secrete key. The policy we have will allow users to see all buckets and go inside the buckets to view sub-folders.

However we are having an issue with connecting to the actual buckets with it returning an error "Error: Please verify the user name and password used to connect"

Any thoughts as to why this is happening when the policy should allow the access? Just another piece of info. We also use cloudberry and it allows access to those buckets.

#12665 file icons changed new Bug report normal FileZilla Client
Description

Ok, i have on my server "linked files" and it was fine until now. Now filezilla shows those files as folders and it is a living mess. I don't see my real folders. It is all yellow.

#12666 Filezilla server 1.20 / 1.30 does not allow admin interface to connect ( possible tls issue) new Bug report normal FileZilla Server
Description

we are running filezilla server 1.30 ( previously 1.20 which also had the same issue)

the ftp server part runs fine but the admin interface does not work ( log throws a tls error )

we have a production server and a testing server. on the testing server it runs fine

the test server has more strict setup of enabled tls version and cipher suites ( see attachment)

i suspect it might be somewhere in the code where it chooses the encryption method for the local connection with the admin interface.

#12667 NO HE RECIBIDO EMAIL DE AUTORIZACION AL CONFIGURAR LA CUENTA DE ONE DRIVE new Feature request normal FileZilla Client
Description

NO HE RECIBIDO EMAIL DE AUTORIZACION AL CONFIGURAR LA CUENTA DE ONE DRIVE, EXISTE OTRO MODO DE RECIBIR EL CÓDIGO DE AUTORIZACIÓN? EN LUGAR DE RECIBIRLO EN EL EMAIL DE MICROSOFT, ENVIARLO A LA CUENTA DE GMAIL? LA CUENTA DE MICROSOFT ES EDUCACIONAL Y PARECE QUE HAY CIERTOS PERMISOS QUE NO TENGO ACTIVADOS. HE COMPRADO LA VERSIÓN PRO PARA PODER GESTIONAR ESTA CUENTA DE ONE DRIVE, PERO NO PUEDO GESTIONARLA.

#12671 allow "download to" dialogue to remember settings new Feature request normal FileZilla Client
Description

I frequently use the search function to find a specific file and download to the local folder I am working in, then 5 minutes later, search for another unrelated file and download to the same folder. There is no function to just...DOWNLOAD straight from the search window like there is if I were just perusing the remote directory. It prompts a "Download to:" dialogue every time. But within a single day that I am working, 99% of the time, this is the same folder, and I have the same requirements of the path structure and queueing. I just want it downloaded *now* with a flat structure. But it never remembers my settings, and as near as I can find, there is no option to make it remember.

If I knew already which remote folder the file I need was in, I could just sort through the list there, hit Return, and it would download, but it could be in one of several folders, and I rarely know which I'll find it in. Just an option to remember preferences would be an incredible help. Thanks.

#12672 Cannot log into OneDrive for Business new Bug report normal FileZilla Client
Description

Recieving following error.

Request Id: 63ab93dd-4bc2-4b96-a4ab-a92fd25ef000 Correlation Id: a1791b7e-d357-4e3d-bfb1-abf9037591d2 Timestamp: 2022-03-10T02:10:53Z Message: AADSTS90014: The required field 'request' is missing from the credential. Ensure that you have all the necessary parameters for the login request.

#12675 File name length limit is too short new Bug report high FileZilla Client
Description

Hi,

It seems that the file's name length is limited to tight. I have long file names support enabled in Windows (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem\LongPathsEnabled=1)

I try to transfer game's saves from my PC to my Wii-U and very long files'names are concerned (using more than 128 characters).

FilleZilla client failed to open the file and so don't even send the STOR command.

I transferred the same files successfully using Cyberduck.

#12677 probleme de connection new Bug report normal FileZilla Client
Description

Bonjour, ça fait 3 jours que je n'arrive pas a me connecté a FileZilla.

Statut : Résolution de l’adresse de sb12900.sdedi.com Statut : Connexion à 51.75.243.135:21… Statut : Connexion établie, attente du message d’accueil… Statut : Initialisation de TLS… Erreur : Erreur GnuTLS -8: A packet with illegal or unsupported version was received. Statut : Échec de la tentative de connexion avec « ECONNABORTED - Connexion annulée ». Erreur : Impossible d’établir une connexion au serveur Statut : Attente avant nouvel essai… Statut : Résolution de l’adresse de sb12900.sdedi.com Statut : Connexion à 51.75.243.135:21… Statut : Connexion établie, attente du message d’accueil… Réponse : 220-Sdedi.com You're Welcome! Réponse : 220 ProFTPD 1.3.5b Server (File Transfert Protocol Sdedi.com) [51.75.243.135] Commande : AUTH TLS Réponse : 234 AUTH TLS successful Statut : Initialisation de TLS… Erreur : Erreur GnuTLS -8: A packet with illegal or unsupported version was received. Statut : Échec de la tentative de connexion avec « ECONNABORTED - Connexion annulée ». Erreur : Impossible d’établir une connexion au serveur

#12679 Automated conversion of \ to / as setting in options? reopened Feature request critical FileZilla Client
Description

As switch on/off option in settings?

When I paste a link from local network mapped drive to the ftp remote site address all \ to be converted in /

#12681 FEATURE REQUEST: Authenticate Private SSH keys with passphrase new Feature request high FileZilla Client
Description

hi there, i have been using key authentication without passphrase for a long time with FileZilla. This works like a dream, however, there will come a time where you need to protect your ssh keys with passphrases.

A helpful feature addition would be to add the ability to enter your passphrase before you get access to your filesystem.

#12683 a bit more granular controls on accounts new Feature request low FileZilla Server
Description

in Prior versions (0.x) we had the ability to permit write, but not delete as well as write, but not list. In reading the forums, you has suggested that blocking delete was bad and you were not going to be brining that back (those were not the exact words).

The use case that I have is a single anonymous dropbox where people can easily just drop a file. Often this is a one time ad-hoc event, so creating a dedicated user account, while possible. is not always quick/simple.

Having "anyone" (anonymous) be able to delete a file that anyone else uploaded is not idea. If brining back the ability to prevent anonymous from deleting, can you consider the ability to remove list perms from anonymous account ? This would permit users/client to drop a file, but they can not see other files that were also dropped.

Thanks!

#12688 fzsftp could not be started new Patch normal FileZilla Client
Description

my system mac os 10.14 FileZilla pro client3.58.1 used to be available, but it can't continue to be used after today's update,if additional information is required, my email lyf1994s@…, please help me

#12690 Replacing Issue with Azure File Server new Bug report critical FileZilla Client
Description

When trying to replace a file using Microsoft Azure File Storage Service protocol. Replacing file creates a new fz_incomplete file and doesn't replace current file.

#12691 Trust ISRG Root X1 and ignore "cross-signature" DST Root CA X3 certificates new Bug report normal FileZilla Client
Description

I have a website that uses a certificate from Let's Encrypt. FileZilla reports a chain of four certificates:

0 (Server certificate) 1 (Intermediate certificate) 2 (Intermediate certificate) 3 (Root certificate)

Certificate 0 is from Let's Encrypt Certificate 1 is from ISRG Root X1 Certificate 2 is from DST Root CA X3 Certificate 3 says the issuer is self-signed (DST Root CA X3) and that it expired 9/30/2021. Certificate 1 should be trusted. The DST Root CA X3 was a temporary work-around that Let's Encrypt used to get their certificates working. The expiration of their DST Root CA X1 certificate was always planned and the ISRG Root X1 certificate should be trusted.

The situation is fully explained at https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/

I don't have any idea of how FileZilla does its certificate checks, but by complaining about the expired certificate (and not allowing a user override), some sites are inaccessible through FileZilla.

If FileZilla uses OpenSSL, the notes from Let's Encrypt say it must use version 1.1.0 or later.

#12694 Setup always installs to default directory in silent mode new Bug report normal FileZilla Client
Description

In my deployment environment I want to install FileZilla silently in a given directory. According to the FileZilla-Wiki the correct command line should be for example:

FileZilla_3.59.0_win64-setup.exe /S /user=all /D=C:\Program Files\FileZilla

However, the installation always lasts in the directory C:\Program Files (x86)\FileZilla FTP Client. I tried to use the /D argument without and with quotes. It does not make a difference. The destination directory is ignored by the 32-bit and 64-bit versions. So far, I had also omitted /user=all.

By the way: It is also unfortunate that the installer for the 64-bit version writes the uninstall information in the 32-bit branch of the registry.

#12697 Uploading CSS-files not longer possible new Bug report high FileZilla Client
Description

Hello, I'm using the latest version of FileZilla. I just noticed that it's not longer possible to upload CSS-files. Is this a bug ? Kindest regards, Luc

#12698 FileZilla Pro fails on start new Bug report normal FileZilla Client
Description

Problem details copied from Mac OS automatic reporting system:


Translated Report (Full Report Below)


Incident Identifier: 2F23778D-FD8F-40DB-9E6D-E13C0FDD3908 CrashReporter Key: 80EAB0EE-55AC-45FA-0039-1D0AE3B17B74 Hardware Model: MacBookPro18,2 Process: filezilla [81376] Path: /Applications/FileZilla Pro.app/Contents/MacOS/filezilla Identifier: org.filezilla-project.filezilla.sandbox Version: 3.59.0 (3.59.0) Code Type: X86-64 (Native) Role: Default Parent Process: launchd [1] Coalition: org.filezilla-project.filezilla.sandbox [75056]

Date/Time: 2022-04-15 14:31:52.7444 +0200 Launch Time: 2022-04-15 14:31:52.7292 +0200 OS Version: macOS 12.3.1 (21E258) Release Type: User Report Version: 104

Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x0000000000000001, 0x00007ff7ffe6d9c8 Exception Note: EXC_CORPSE_NOTIFY Termination Reason: SIGNAL 5 Trace/BPT trap: 5 Terminating Process: exc handler [81376]

Triggered by Thread: 0

Application Specific Information: rosetta error: /var/db/oah/279293133324288_279293133324288/941d88b9390edd2d635eea926ba3108843df4ea63af2c9e58467a75b3ba12c4f/filezilla.aot: attachment of code signature supplement failed: 1

Thread 0 Crashed: 0 runtime 0x7ff7ffe6d9c8 0x7ff7ffe50000 + 121288 1 runtime 0x7ff7ffe6da10 0x7ff7ffe50000 + 121360 2 runtime 0x7ff7ffe6426c 0x7ff7ffe50000 + 82540 3 runtime 0x7ff7ffe6534c 0x7ff7ffe50000 + 86860 4 runtime 0x7ff7ffe64ac4 0x7ff7ffe50000 + 84676 5 runtime 0x7ff7ffe53b40 0x7ff7ffe50000 + 15168 6 ??? 0x3 ???

Thread 0 crashed with ARM Thread State (64-bit):

x0: 0x0000000000000000 x1: 0x0000000000000003 x2: 0x000000000000003c x3: 0x000000000000002c x4: 0x0000000000000303 x5: 0x0000000000000000 x6: 0x0000000000000000 x7: 0x0000000000458ae0 x8: 0x00007ff7ffe8b000 x9: 0x0000000000000000 x10: 0x0000000000000000 x11: 0x00007ff7ffe8b938

x12: 0x0000000000000000 x13: 0x0000000000000000 x14: 0x000001b900000100 x15: 0x00007ff7ffe73828 x16: 0xffffffffffffffe1 x17: 0x00007ff7ffe7c6ee x18: 0x000000030d51e06b x19: 0x00007ff7ffe812e1 x20: 0x000000030d51e720 x21: 0x0000000104b7e000 x22: 0x0000000000000004 x23: 0x0000000104b7e000 x24: 0x0000000000000003 x25: 0x0000000000000001 x26: 0x000000030d51db80 x27: 0x0000000204da11c0 x28: 0x000000030d526950 fp: 0x000000030d51c980 lr: 0x00007ff7ffe6d9c0

sp: 0x000000030d51c960 pc: 0x00007ff7ffe6d9c8 cpsr: 0x60001000

far: 0x000000030d51c998 esr: 0xf2000001 (Breakpoint) brk 1

Binary Images:

0x7ff7ffe50000 - 0x7ff7ffe7ffff runtime (*) <24497be3-a1b4-360a-b90e-cde9ce78a93b> /usr/libexec/rosetta/runtime

0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???

Error Formulating Crash Report: dyld_process_snapshot_get_shared_cache failed

EOF


Full Report


{"app_name":"filezilla","timestamp":"2022-04-15 14:31:52.00 +0200","app_version":"3.59.0","slice_uuid":"14f6c892-9b0e-342b-92d3-12dcb2e758af","adam_id":"1298486723","build_version":"3.59.0","platform":0,"bundleID":"org.filezilla-project.filezilla.sandbox","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 12.3.1 (21E258)","incident_id":"2F23778D-FD8F-40DB-9E6D-E13C0FDD3908","name":"filezilla"} {

"uptime" : 750000, "procLaunch" : "2022-04-15 14:31:52.7292 +0200", "procRole" : "Default", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "MacBookPro18,2", "procStartAbsTime" : 18219607574055, "coalitionID" : 75056, "osVersion" : {

"train" : "macOS 12.3.1", "build" : "21E258", "releaseType" : "User"

}, "captureTime" : "2022-04-15 14:31:52.7444 +0200", "incident" : "2F23778D-FD8F-40DB-9E6D-E13C0FDD3908", "bug_type" : "309", "pid" : 81376, "procExitAbsTime" : 18219607832076, "translated" : true, "cpuType" : "X86-64", "procName" : "filezilla", "procPath" : "\/Applications\/FileZilla Pro.app\/Contents\/MacOS\/filezilla", "bundleInfo" : {"CFBundleShortVersionString":"3.59.0","CFBundleVersion":"3.59.0","CFBundleIdentifier":"org.filezilla-project.filezilla.sandbox"}, "storeInfo" : {"storeCohortMetadata":"10|date=1650024000000&sf=143443&rdom=filezilla-project.org&rapp=com.apple.Safari&pgtp=Software&pgid=1298486723&ctxt=Discover&lngid=2","itemID":"1298486723","deviceIdentifierForVendor":"FB46F929-2220-5E16-8AF8-3263D4EBA252","thirdParty":true,"softwareVersionExternalIdentifier":"848268890"}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "org.filezilla-project.filezilla.sandbox", "crashReporterKey" : "80EAB0EE-55AC-45FA-0039-1D0AE3B17B74", "wakeTime" : 916, "sleepWakeUUID" : "80201597-3852-4A8C-B622-F7BB34ED62C7", "sip" : "enabled", "isCorpse" : 1, "exception" : {"codes":"0x0000000000000001, 0x00007ff7ffe6d9c8","rawCodes":[1,140703126968776],"type":"EXC_BREAKPOINT","signal":"SIGTRAP"}, "termination" : {"flags":0,"code":5,"namespace":"SIGNAL","indicator":"Trace\/BPT trap: 5","byProc":"exc handler","byPid":81376}, "asi" : {"runtime":rosetta error: \/var\/db\/oah\/279293133324288_279293133324288\/941d88b9390edd2d635eea926ba3108843df4ea63af2c9e58467a75b3ba12c4f\/filezilla.aot: attachment of code signature supplement failed: 1}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":5553880},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"triggered":true,"id":5986084,"threadState":{"x":[{"value":0},{"value":3},{"value":60},{"value":44},{"value":771},{"value":0},{"value":0},{"value":4557536},{"value":140703127089152},{"value":0},{"value":0},{"value":140703127091512,"symbolLocation":208,"symbol":"crashreporter_info"},{"value":0},{"value":0},{"value":1894080577792},{"value":140703126992936},{"value":18446744073709551585},{"value":140703127029486},{"value":13108371563},{"value":140703127048929},{"value":13108373280},{"value":4374126592},{"value":4},{"value":4374126592},{"value":3},{"value":1},{"value":13108370304},{"value":8671334848,"symbolLocation":0,"symbol":"dyld_all_image_infos"},{"value":13108406608}],"flavor":"ARM_THREAD_STATE64","lr":{"value":140703126968768},"cpsr":{"value":1610616832},"fp":{"value":13108365696},"sp":{"value":13108365664},"esr":{"value":4060086273,"description":"(Breakpoint) brk 1"},"pc":{"value":140703126968776,"matchesCrashFrame":1},"far":{"value":13108365720}},"frames":[{"imageOffset":121288,"imageIndex":0},{"imageOffset":121360,"imageIndex":0},{"imageOffset":82540,"imageIndex":0},{"imageOffset":86860,"imageIndex":0},{"imageOffset":84676,"imageIndex":0},{"imageOffset":15168,"imageIndex":0},{"imageOffset":3,"imageIndex":1}]}], "usedImages" : [ {

"source" : "P", "arch" : "arm64", "base" : 140703126847488, "size" : 196608, "uuid" : "24497be3-a1b4-360a-b90e-cde9ce78a93b", "path" : "\/usr\/libexec\/rosetta\/runtime", "name" : "runtime"

}, {

"size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000"

}

],

"vmSummary" : "ReadOnly portion of Libraries: Total=840K resident=0K(0%) swapped_out_or_unallocated=840K(100%)\nWritable regions: Total=26.4M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=26.4M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nSTACK GUARD 56.0M 1 \nStack 8176K 1 \nVM_ALLOCATE 13.3M 4 \nVM_ALLOCATE (reserved) 5192K 3 reserved VM address space (unallocated)\nDATA 80K 3 \nDATA_CONST 80K 1 \nLINKEDIT 240K 4 \nTEXT 624K 2 \nmapped file 6.1G 27 \n=========== ======= ======= \nTOTAL 6.1G 46 \nTOTAL, minus reserved VM space 6.1G 46 \n", "legacyInfo" : { "threadTriggered" : {

}

},

"trialInfo" : { "rollouts" : [

{

"rolloutId" : "61301e3a61217b3110231469", "factorPackIds" : {

"SIRI_FIND_MY_CONFIGURATION_FILES" : "6216ae152a40e71046e16225"

}, "deploymentId" : 240000016

}, {

"rolloutId" : "6112dda2fc54bc3389840642", "factorPackIds" : {

"SIRI_DICTATION_ASSETS" : "624b730e273d707ffc05b1f5"

}, "deploymentId" : 240000104

}

], "experiments" : [

]

},

"reportNotes" : [ "dyld_process_snapshot_get_shared_cache failed"

] }

Model: MacBookPro18,2, BootROM 7459.101.3, proc 10:8:2 processors, 64 GB, SMC Graphics: Apple M1 Max, Apple M1 Max, Built-In Display: Color LCD, 3456 x 2234 Retina, Main, MirrorOff, Online Memory Module: LPDDR5 AirPort: Wi-Fi, wl0: Feb 8 2022 01:51:44 version 20.90.39.0.8.7.114 FWID 01-510a2aee Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en0 USB Device: USB31Bus USB Device: USB31Bus USB Device: USB31Bus Thunderbolt Bus: MacBook Pro, Apple Inc. Thunderbolt Bus: MacBook Pro, Apple Inc. Thunderbolt Bus: MacBook Pro, Apple Inc.

#12699 libfilezilla: undefined reference to __atomic_exchange_1 in the RISC-V platform new Bug report normal libfilezilla
Description

downstream report can be found here: https://bugs.gentoo.org/837740

libtool: link: riscv64-unknown-linux-gnu-g++ -std=c++17 -O2 -pipe -mabi=lp64d -Wall -g -Wl,-O1 -Wl,--as-needed -o timer_fizzbuzz timer_fizzbuzz-timer_fizzbuzz.o ../lib/.libs/libfilezilla.so -lpthread -Wl,-rpath -Wl,/var/tmp/portage/dev-libs/libfilezilla-0.36.0/work/libfilezilla-0.36.0/lib/.libs /usr/lib/gcc/riscv64-unknown-linux-gnu/11.2.1/../../../../riscv64-unknown-linux-gnu/bin/ld: ../lib/.libs/libfilezilla.so: undefined reference to `atomic_exchange_1' collect2: error: ld returned 1 exit status make[1]: * [Makefile:496: process] Error 1 make[1]: * Waiting for unfinished jobs.... /usr/lib/gcc/riscv64-unknown-linux-gnu/11.2.1/../../../../riscv64-unknown-linux-gnu/bin/ld: ../lib/.libs/libfilezilla.so: undefined reference to `atomic_exchange_1' /usr/lib/gcc/riscv64-unknown-linux-gnu/11.2.1/../../../../riscv64-unknown-linux-gnu/bin/ld: ../lib/.libs/libfilezilla.so: undefined reference to `atomic_exchange_1' collect2: error: ld returned 1 exit status collect2: error: ld returned 1 exit statu

#12700 Developer ego induced bottleneck over high latency long range wifi network new Bug report high FileZilla Client
Description

Hi. I am attempting to use Filezilla to transfer immensely large numbers of infinitesimally small files over a long range wifi network with incredibly high latency. I am aware of the developer stance of "If you feel you need more than 10 connections, there's something wrong with your internet connection.". Yes, my internet connection is utterly fu%%ed. That's the nature of long range agricultural IoT systems that at least one developer at Filezilla cannot seem to comprehend the potential existence of.

In case you don't believe me, here is a video that shows the bottleneck. Many connections are in a pending state, or a low speed state, because it takes time to initiate the connection and to start transmitting at maximum speed. Connecting multiple filezilla clients to the server so that there are 20 connections increases the transfer speed almost a full 100%.

https://www.youtube.com/watch?v=x1HwNOOOk-Q

Now, please, for the love of god, can you allow the max simultaneous file transfers parameter to be set to any user defined number rather than the hard cap of 10 so that my speeds are not arbitrarily limited by the ego of some Filezilla developer I will not name? Or at least limit to 32 to take advantage of my NVME (that's a new fancy storage device: imagine 32 hard drives in raid 0. Yeah i know, wild what these young whippersnappers are putting together these days, huh?) Thank you immensely.

If not, I will be forced to upgrade my company to another FTP software that does not place such ridiculous and arbitrary limitations on an otherwise almost unlimited application, solely because of the developers ego.

Thank you for your generous consideration.

Previous ticket on the issue for reference:

https://trac.filezilla-project.org/ticket/5062#:~:text=This%20limit%20is%20intentional.,wrong%20with%20your%20internet%20connection.

#12701 connection problems after updating to 3.59.0 new Bug report blocker FileZilla Client
Description

I updated FZ yesterday from 3.57.0 to 3.59.0 on Windows 10 and when I try connect to two different Ubuntu servers (sftp ssh protocol) I receive the same error message: Statut : Connexion à (IP):(port)… Réponse : fzSftp started, protocol_version=11 Commande : open "username@IP" port Erreur : Connection interrompue après 20 secondes d’inactivité Erreur : Impossible d’établir une connexion au serveur note that I have a second pc, with FZ still on 3.57.0, which work perfectly

#12702 I'm getting the behavior described in the closed ticket #4460 new Bug report normal FileZilla Client
Description

Same as they described in the original ticket. It respects the timeout on initial login fails but if it fails during the file transfer...hammer time.

My delay was set for 45 seconds, 99 retries, 30 second timeout.

#12708 Please Implement Dark Mode new Feature request normal FileZilla Client
Description

My OS, as well as most of my apps, are set to run in dark mode as it is easier on the eyes.

I cannot locate a way to turn on dark mode in Filezilla, nor can I find a setting that forces it to use the OS settings. Can this be added to the client interface?

#12709 change size overwrite window new Bug report high FileZilla Client
Description

when the directory of file has a lot of subdirectories and FileZilla asks to overwrite a file over an existing file, the options are moved out of window (because of long names in directory) and it's not possible to scroll horizontally or change the size of window.

#12711 Let's Encrypt certificate not accepted reopened Bug report normal FileZilla Client
Description

Hello,

It looks like I have the same problem as reported in #12691 (Trust ISRG Root X1 and ignore "cross-signature" DST Root CA X3 certificates)

I use FileZilla v3.59.0 (Windows 10.0 64b). The About box shows GnuTLS: 3.7.2

I am migrating from a VPS with Plesk to a more up-to-date config (also VPS with Plesk). Both use a Let's Encrypt certificate.

FileZilla connects correctly to the older VPS. It does not accept the certificate for the new VPS because of the expired DST Root CA X3 certificate.

#12712 Unable to connect to remote site, folder appears empty new Bug report normal FileZilla Client
Description

When connecting to a site it will initially connect but then when clicking on the first folder available it appears to be completely empty. There is no error code, the status says "directory listing of "/I-Drive" successful. Have tried to reconnect several times but no luck, the site was working normally until a few hours ago.

#12715 2FA Max Number of Connections = 1 fails with new update new Bug report normal FileZilla Client
Description

I have 2FA enabled on my server and so i need to have the 'Maximum number of simultaneous connections' set to 1, otherwise every file transfer triggers the 2FA request again. This has been working fine until the latest update (It is definitely working fine with version 3.57.0).

With the latest version (3.59.0) i can connect to my server but when i try and do the file transfer in the status window it just says 'Waiting for browsing connection' and never starts the download. If i change the simultaneous connections to 2 then it does work, but i need to constantly add the 2FA code.

Connection type - SFTP - SSH

#12718 A lot of Unsuccessful Transfers moreinfo Bug report normal FileZilla Client
Description

I've just started using FileZilla Pro. I am also a user of FileZilla with no problems. I transfer my Windows files to my OneDrive account. 5391 transfers in total. 4277 wwere Unsuccessful. What is wrong here?

#12721 FileZilla process does not terminate on exit new Bug report normal FileZilla Client
Description

FileZilla Client v3.59.0 Windows 7 Version 6.1 (Build 7601: Service Pack 1)

Steps to reproduce the bug:

  • start FileZilla
  • connect to a server
  • upload a file to that server
  • press "X" to close the FileZilla window

-> FileZilla still running in Process Explorer

#12722 Drag on local site causes duplicates new Bug report normal FileZilla Client
Description

Instead of moving items by dragging on the local side, it moves BUT leaves the original where it was, causing a duplicate to be developed.

#12724 Path length new Bug report normal FileZilla Client
Description

I have an issue with sFTP transferts with files using a very long path length. The transfert can't start, it just creates an empty file in the remote folder) If I move my file up in the tree, no problem to complete the transfert

#12725 Transfer queue section looks bad/hard to read in desktop dark mode new Feature request normal FileZilla Client
Description

Transfer queue section looks bad/hard to read in desktop dark mode.

Improvement would be nice.

#12726 GNU TLS error -110 new Bug report critical FileZilla Client
Description

This crash occurs at various place when in the program:

  1. GNU TLS error-110 connection not properly terminated.
  2. Connection could not be established ECONN aborted - connection aborted.

The encryption option I use is "explicit FTP over TLS, if available."

Sometime the connection will re=establish and let me proceed for a few more steps. This happens on both ftp servers at Go Daddy and Inmotion Hosting. te problem started in mid-late May I updated Filezilla and then reinstalled it later with Version 3.01.6.

Oh, sometimes when I manage to upload files they upload with 0 Bytes. I have been using Filezilla for many many years and never had a problem until now.

#12727 can't connect to ProFTPD server new Bug report critical FileZilla Client
Description

狀態: 正在連線到 192.168.0.51:21... 狀態: 連線已建立, 正在等候歡迎訊息... 回應: 220 ProFTPD 1.3.5e Server (J51 FTP server) [192.168.0.51] 指令: AUTH TLS 回應: 234 AUTH TLS 成功執行 狀態: 正在初始 TLS... 錯誤: GnuTLS 錯誤 -8: A packet with illegal or unsupported version was received. 狀態: 以 "ECONNABORTED - 中止連線" 嘗試連線失敗. 錯誤: 無法連線到伺服器 =========================== FileZilla 3.55.1 can connect to this server (remove 3.60.1 , install 3.55.1) 狀態: 正在連線到 192.168.0.51:21... 狀態: 連線已建立, 正在等候歡迎訊息... 狀態: 正在初始 TLS... 狀態: 正在驗證憑證... 狀態: TLS 連線已建立. 狀態: 記錄 狀態: 正在取得目錄列表... 狀態: 成功取得 "/cad" 的目錄

#12730 loungerie_6151427 new Bug report high FileZilla Client
Description

Estado: A porta selecionada é habitualmente usada por um protocolo diferente. Estado: A resolver o endereço de getsftp1.getnet.com.br Estado: Conectando 201.87.186.27:22... Erro: Conexão expirou após 20 segundos de inatividade Erro: Não foi possível conectar ao servidor Estado: Aguardando para tentar novamente... Estado: A resolver o endereço de getsftp1.getnet.com.br Estado: Conectando 201.87.186.27:22... Erro: Conexão expirou após 20 segundos de inatividade Erro: Não foi possível conectar ao servidor Estado: Desconectado do servidor Estado: A porta selecionada é habitualmente usada por um protocolo diferente. Estado: A resolver o endereço de getsftp1.getnet.com.br Estado: Conectando 201.87.186.27:22... Erro: Conexão expirou após 20 segundos de inatividade Erro: Não foi possível conectar ao servidor Estado: Aguardando para tentar novamente... Estado: A resolver o endereço de getsftp1.getnet.com.br Estado: Conectando 201.87.186.27:22... Erro: Conexão expirou após 20 segundos de inatividade Erro: Não foi possível conectar ao servidor Estado: Desconectado do servidor Estado: A porta selecionada é habitualmente usada por um protocolo diferente. Estado: A resolver o endereço de getsftp1.getnet.com.br Estado: Conectando 201.87.186.27:22... Erro: Conexão expirou após 20 segundos de inatividade Erro: Não foi possível conectar ao servidor Estado: Aguardando para tentar novamente... Estado: A resolver o endereço de getsftp1.getnet.com.br Estado: Conectando 201.87.186.27:22... Erro: Conexão expirou após 20 segundos de inatividade Erro: Não foi possível conectar ao servidor

a Loungerie precisa de suporte para os erros acima, pois não está sendo possível baixar os arquivos hoje.

#12735 need MimeType assosiation inside the 'filezilla.desktop' file new Feature request low Other
Description

Most of Desktop Environments, like GNOME, use 'MimeType=' line from *.desktop files inside the '/usr/share/applications' and '~/.local/share/applications' directories.

This line make mime-type assosiation between program and file types, which this program support.

For FileZilla, this assosiation may be like this:

MimeType=x-scheme-handler/ftp;

If this line placed into filezilla.desktop file:

[Desktop Entry] Name=FileZilla ... MimeType=x-scheme-handler/ftp;

then Desktop Environment will be know, that 'ftp://' links, which mime-type is 'x-scheme-handler/ftp', may be opened by FileZilla program. Desktop Environment will know this from /usr/share/application/filezilla.desktop file.

Then, all clicks to 'ftp://' links from browser (Chrome, Firefox, Opera, etc.) may be quickly opened in the FileZilla program.

Please, add this line to 'data/filezilla.desktop' file:

MimeType=x-scheme-handler/ftp;

#12736 FileZilla keeps forgetting my site names moreinfo Bug report normal FileZilla Client
Description

Everytime I rename my connected sites, once I close the FileZilla app and re-open it, it keeps showing New Site, New Site 2, New Site 3, etc.

#12737 Files are not uploaded to live server from temp folder to live after updated to latest version new Bug report critical FileZilla Client
Description

I am using VS Code and Live Sass Compiler. When I save the .scss file, It creates .css and .min.css files in temp folder on system but not uploading to live server. It was working fine on Last Friday in old version. Today I have downloaded the latest version facing this issue.

#12738 recursive delete fails on sync new Bug report blocker FileZilla Client
Description

Recursive delete fails if there are any files to be uploaded. I have to run it at least twice to clear out files that need to be uploaded then run it again to clear out deleted files.

#12739 Drag and drop of files with Swedish characters to local computer does not function after last update new Bug report normal FileZilla Client
Description

I cannot recall having any issues like this previously:


Status: Connecting to 194.68.59.6:21... Status: Connection established, waiting for welcome message... Status: Initializing TLS... Status: TLS connection established. Status: Logged in Status: Retrieving directory listing of "/domains/skglimma.se/public_html"... Status: Directory listing of "/domains/skglimma.se/public_html" successful Status: Retrieving directory listing of "/domains/skglimma.se/public_html/CatchSQL"... Status: Invalid character sequence received, disabling UTF-8. Select UTF-8 option in site manager to force UTF-8. Status: Directory listing of "/domains/skglimma.se/public_html/CatchSQL" successful Status: Connecting to 194.68.59.6:21... Status: Connecting to 194.68.59.6:21... Status: Connection established, waiting for welcome message... Status: Connection established, waiting for welcome message... Status: Initializing TLS... Status: Initializing TLS... Status: TLS connection established. Status: TLS connection established. Status: Logged in Status: Starting download of /domains/skglimma.se/public_html/CatchSQL/Errol_Fångster_2020-10-15_1559_Start.sql Status: Logged in Status: Starting download of /domains/skglimma.se/public_html/CatchSQL/Errol_Fångster_2020-10-15_1600.sql Command: CWD /domains/skglimma.se/public_html/CatchSQL Response: 250 OK. Current directory is /domains/skglimma.se/public_html/CatchSQL Command: TYPE A Response: 200 TYPE is now ASCII Command: PASV Response: 227 Entering Passive Mode (194,68,59,6,138,190) Command: RETR Errol_Fångster_2020-10-15_1559_Start.sql Response: 550 Can't open Errol_Fångster_2020-10-15_1559_Start.sql: No such file or directory Error: Critical file transfer error Status: Starting download of /domains/skglimma.se/public_html/CatchSQL/Errol_Fångster_2020-10-15_1600_Start.sql Command: CWD /domains/skglimma.se/public_html/CatchSQL Response: 250 OK. Current directory is /domains/skglimma.se/public_html/CatchSQL Command: TYPE A Response: 200 TYPE is now ASCII Command: PASV Response: 227 Entering Passive Mode (194,68,59,6,137,223) Command: RETR Errol_Fångster_2020-10-15_1600.sql Response: 550 Can't open Errol_Fångster_2020-10-15_1600.sql: No such file or directory Error: Critical file transfer error Command: PASV Response: 227 Entering Passive Mode (194,68,59,6,138,193) Command: RETR Errol_Fångster_2020-10-15_1600_Start.sql Response: 550 Can't open Errol_Fångster_2020-10-15_1600_Start.sql: No such file or directory Error: Critical file transfer error Status: Disconnected from server Status: Disconnected from server


Somewhere something has changed. Windows was updated yesterday to the latest version.

#12742 Show Dropbox team folders new Feature request low FileZilla Client
Description

Currently Filezilla Pro only show one's private folder, usually the same as the user's full name. It displays as the root (/) in the Filezilla client.

Dropbox Business has shared team folders but it's not possible to list them through the Filezilla Pro client. This would be a nice feature for Dropbox Business clients, which probably makes up for a good percentage of the users who wants to use your Dropbox integration.

Mer info about shared team folders: https://help.dropbox.com/teams-admins/team-member/team-folders

#12743 Is there another way to supress update notifications other than fzdefaults.xml? new Bug report blocker FileZilla Client
Description

In the beta of macOS that I can not mention here, Filezilla reports as "damaged, please Trash the app" due to Gatekeeper not liking the fact that we are putting an fzdefaults.xml file into the app package when building an app package that contains that.

Is there an alternate method of surpressing update notifications that does not involve modifying the contents of the app package?

(If not, there will need to be for said new macOS that I can't mention...)

#12744 Local file change monitoring only detects after file close on Windows 11 new Bug report normal FileZilla Client
Description

Hello,

On Windows 11 the local file change monitoring doesn't work. When I open the file and save it, the change popup in FileZilla doesn't appear. When I close the editing program and re-open it again, the popup apprears once the file editing software has re-opened.

I tested this with both Notepad++ and the built-in Windows Notepad.

I also tested this with Windows 10 and there I don't have the issue, I do however have this issue on all of my Windows 11 devices (3 different devices).

This issue is already there for at least a few months, I don't know exactly when it started but probably since Windows 11.

Regards, Bas

#12746 Filezilla Client randomly crashes on exit new Bug report normal FileZilla Client
Description

This seems to be happening at random when I close the client. Sometimes I will get a report like this, and other times it will exit with no issues. In both instances, I do not get a crash dialog, the program appears to exit just fine, but these events will show up in Event Viewer and Reliability report under Windows 10 and 11.

OS is Windows 11 64Bit. Platform is 12th Gen Intel Alder Lake, 12600K 32GB DDR4 Memory

I have attached crash dumps, so hopefully they reveal something.

Steps to reproduce the issue: Open Filezilla Client. Close Filezilla Client. You don't have to transfer or connect for the crash on exit to happen. It is intermittant.

Source FileZilla FTP Client

Summary Stopped working

Date ‎7/‎9/‎2022 1:18 PM

Status Report sent

Description Faulting Application Path: C:\Program Files (x86)\FileZilla FTP Client\filezilla.exe

Problem signature Problem Event Name: APPCRASH Application Name: filezilla.exe Application Version: 3.60.1.0 Application Timestamp: 00000000 Fault Module Name: libfilezilla-25.dll Fault Module Version: 0.37.2.0 Fault Module Timestamp: 00000000 Exception Code: c0000005 Exception Offset: 0006bfa0 OS Version: 10.0.22000.2.0.0.768.101 Locale ID: 4105 Additional Information 1: 0ae6 Additional Information 2: 0ae6a0829a15e53d618c7a5d1168fbf9 Additional Information 3: 5ee6 Additional Information 4: 5ee6bb8c36d6da3df6b1517d3eaecc1e

Extra information about the problem Bucket ID: 7fce7a87fd49ce6682ec8408d5ee4062 (1363609960670183522)

#12748 After uploading or downloading, the software crashes moreinfo Bug report high FileZilla Client
Description

After uploading or downloading, the software crashes

#12749 Major regressions over the past year new Bug report blocker FileZilla Client
Description

This issue probably isn't as specific as might be desired, but I feel obligated at this point to report this to the project.

I have been using FileZilla for many many years. Throughout the past year, the performance and usability of FileZilla has decreased significantly. It has gotten to the point where it has become a significant impediment to doing work, since I SFTP files very regularly in order to do work. Several major regressions have been introduced into the software in the past few months/past year or so, for example:

1) Permanent hangs. If you leave a tab alone for a while and then come back to it, after it has timed out, and then try to navigate on the server, it just will not. With synchronized browsing, you can try to navigate different folders and it will just whine "synchronized browsing operation already in progress" and never complete. If you try closing the tab, it will prompt for confirmation and then the dialog for creating a directory that isn't synchronized comes up, which is obviously completely out of place and wrong. Very messed up.

TL;DR - often times, if a session becomes "stale", then it is stuck that way and can't become "unstale" - you have to start ALL over.

Changing the timeout in settings from 20 to 0 has no effect.

The solution is to open an entirely new tab and then re-navigate to the path you were at. The new tab opens and connects instantly. However, this is very annoying as if you manually changed paths, you now have to find your way back to where you were, and when you have to do this dozens of times per day, that wastes A LOT of time. It got to the point where it was faster to just come back to FileZilla and open a new window and start all over again rather than trying to bother recovering the previous session.

  1. Infinite loops. There are serious bugs in the software that can cause infinite loops. On multiple occasions, CPU usage has gone to 100%, even after FileZilla was closed, and it turned out to be filezilla.exe consuming 100% of CPU. Clearly something went very wrong, as even when closing the window the process didn't exit as I told it. This doesn't happen super frequently, but it's happened enough times to be vexing.
  1. Corrupted transfers. Quite frequently, on certain servers especially, file transfers get truncated at some multiple of 256 bytes, and I might have to retry the transfer 2, 3, 4, 5, 6, 7, 8 etc. times before the entire file actually fully copies. (FileZilla does correctly show the transfer "failed").

As a result, I have been wasting 15+ minutes PER DAY just because of how broken FileZilla has become in the past year.

I have been able to notice the difference because I have been upgrading FileZilla normally on one system and I have a static copy of FileZilla Portable 3.44.1 on another system, from 2019. That system never has any issues, but the up-to-date one just gets worse and worse.

Today, I downgrade from the latest version that I had (3.60.1) to 3.44.1 and immediately noticed the difference. No hangs. No freezes. No issues. The software JUST WORKS as it used.

And then of course, a pop up comes up saying it's automatically downloaded 3.60.1 to the Downloads folder. No thanks - modern versions of FileZilla are no longer suitable for production usage. FileZilla has become so unusable these days I can't even stand it. As 3.44.1 works fine, I'll be using that indefinitely forever unless these issues are all resolved, as the software continues to perform noticeably worse with every upgrade.

Yes, I'm rating this "Blocker", because the fact is that the trunk release of FileZilla is essentially broken. Major functionality no longer works as it used to, and there are serious problems that need to be resolved before this project can carry on with releases as normal. There is zero point in you guys releasing any more versions of this software ever again unless all of these issues are fixed, because apparently the releases from 2019 will work much better anyways. I think the project should do a test of all the software releases since 2019 to find out where exactly these kinds of things went off the rails, as those issues need to be resolved if FileZilla in its current form is ever going to be usable in the future again.

#12750 IP blocked new Bug report blocker Other
Description

Hi team,

It appears that one of our IPs is blocked from accessing Filezilla. Can we have the following list of IPs, owned by Netskope, allow listed? At the very least it seems 163.116.135.120 is being blocked. Our IP scope includes 163.116.128.0/17. When trying to access filezilla-project.org the IP receives a Bad Gateway error while other IPs in the same /24 work well.

Thank you,

Wil Tranchell

#12751 Patches for libfilezilla 0.38.1 new Patch normal libfilezilla
Description

There's a few patches for libfilezilla that fixes the template order for the clang compiler in mingw mode and a fix for an include guard

#12752 MinGW-W64 compiler detection using clang and lld fix new Patch normal FileZilla Client
Description

Attached is a patch that allows filezilla to be compiled against clang in mingw mode and with lld

#12753 successful transfers are no longer displayed new Bug report normal FileZilla Client
Description

version 3.60.2

#12754 Upload progress bar jumps quickly to 100% yet upload is unfinished. new Bug report normal FileZilla Client
Description

Since updating to the most recent version I have noticed that the progress bar when uploading files runs quickly up to 100% but the upload has not finished and is continuing in the background.

While having task manager open to monitor my ethernet status, the Filezilla progress bar seems to be recording the files being read and loaded into memeory. as the progress bar reaches 100%, My RAM graph in Task manager then levels out and the disk then records 0% activity.

#12756 cannot hold down shift button and select multiple files new Bug report normal FileZilla Client
Description

After latest update i cannot hold down shift button and select multiple folders. I cannot hold down ctrl button and select multiple folders. Have been using filezilla for years and years and this is the first time this issue has happened. Assuming it is an issue with latest upgrade. below is cut and paste of info

FileZilla Client


Version: 3.60.2

Build information:

Compiled for: x86_64-w64-mingw32 Compiled on: x86_64-pc-linux-gnu Build date: 2022-07-22 Compiled with: x86_64-w64-mingw32-gcc (GCC) 10-win32 20210110 Compiler flags: -O2 -g -Wall -Wextra -Wno-deprecated-copy -ffunction-sections -fdata-sections -Wno-cast-function-type

Linked against:

wxWidgets: 3.0.6 SQLite: 3.35.5 GnuTLS: 3.7.2

Operating system:

Name: Windows 10 (build 19043), 64-bit edition Version: 10.0 Platform: 64-bit system CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi bmi2 adx lm Settings dir: C:\Users\jetsrus\AppData\Roaming\FileZilla\

windows version Edition Windows 10 Home Version 21H1 Installed on ‎6/‎20/‎2020 OS build 19043.1826 Experience Windows Feature Experience Pack 120.2212.4180.0

#12758 Support wxWidgets 3.2 new Feature request normal FileZilla Client
Description

It would be great if Filezilla supported wxWidgets 3.2 which has now been released. We would like to move to wx 3.2 in Fedora and Debian.

#12759 application crashes on close when master password was enabled moreinfo Bug report normal libfilezilla
Description

Filezilla Client crashes on close when master password is enabled. Only when connection was established.

Win7 SP1

Problem Event Name: APPCRASH Application Name: filezilla.exe Application Version: 3.60.2.0 Application Timestamp: 00000000 Fault Module Name: libfilezilla-29.dll Fault Module Version: 0.38.1.0 Fault Module Timestamp: 00000000 Exception Code: c0000005 Exception Offset: 00000000000100e6 OS Version: 6.1.7601.2.1.0.768.3 Locale ID: 1045 Additional Information 1: cc69 Additional Information 2: cc69876c548c15355061659444d1e512 Additional Information 3: 7869 Additional Information 4: 78693fc73ab27bebf3c26336ec29c4ae

#12760 FileZilla Pro Manual error new Bug report normal FileZilla Client
Description

Setting up Cloud Storage Connections says to select a service option from the drop-down menu when you click the "New site" button in Site Manager, but choosing a new service is actually performed via the drop-down menu Protocol at the right-hand side of the popup dialog.

#12761 When connected over VPN and connecting to remote server using TLS, Failed to retrieve directory listing new Bug report high FileZilla Client
Description

When I am connected over VPN to my corporate network, I cannot get past retrieving remote directory. other users on same VPN do not have this issue. I am connecting using TLS. Works fine if not on VPN. FileZilla 3.60.2

Status: Resolving address of delivery01-bld.dhe.ibm.com Status: Connecting to 170.225.126.67:21... Status: Connection established, waiting for welcome message... Status: Initializing TLS... Status: TLS connection established. Status: Server does not support non-ASCII characters. Status: Logged in Status: Retrieving directory listing of "/P730822/C"... Command: CWD /P730822/C Response: 250 CWD command successful Command: PWD Response: 257 "/P730822/C" is the current directory Command: TYPE I Response: 200 Type set to I Command: PORT 206,66,66,1,195,230 Response: 200 PORT command successful Command: MLSD Response: 425 Unable to build data connection: Socket is already connected Error: Failed to retrieve directory listing

#12763 Prevent date comparison between remote and local folders new Feature request normal FileZilla Client
Description

In windows (I'm using windows 10 but it's the same on all versions) the folder modification date is changed every time something inside is changed.

When using the "compare" tool FileZilla marks the remote and local folders as different, even though there are exactly the same files inside with nothing to change.

Would it be possible to put in an option so that FileZilla ignores the last modification dates of the folders? Obviously if a folder was not present on remote or local it should continue to highlight it in yellow as it does now.

Thanks

#12765 Shortfalls of FileZilla. new Bug report high FileZilla Client
Description

-There should be a menu setting so that before copying/pasting begins,

if FileZilla encounters a duplicate file with the same name and size, which it occasionally does, that the setting to overwrite with the newest copy of the file can be a default setting, so that its present menu does not ever pop up during copying.

-Occasionally FileZilla produces Failed Transfers. There should be a menu

setting to "retry until copies successfully", all failed transfers, even if re-copying/pasting of all failed transfers only begins at the end of copying/pasting all of the Queues files, at the end of an upload, or during that procedure.

#12767 Uninstall leaves back a registry key new Bug report normal FileZilla Client
Description

After uninstall FileZilla the registry Key "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\FileZilla Client" is still there even after a reboot.

Is that the way it's supposed to be?

#12771 Sorting Processing List new Bug report normal FileZilla Client
Description

The process list doesn't appear to be sorting. When you click the column headers the order changes the first time you click, but then subsequent clicks do nothing.

#12776 Filezilla closes out of nowhere new Bug report normal FileZilla Client
Description

I purchased the pro version. Thinking that the bug of closing alone was due to being the free version.

The bug happens as follows. I open fillezilla, do some transfers, when I open another application and go back to filezilla it simply closes everything.

#12781 FileZilla 3.61.0 unnecessarily prompts for password. new Bug report normal FileZilla Client
Description

After updating to 3.61.0, I get challenged for a password even after adding a .ppk key file in edit>settings>SFTP.

#12784 updated ftp this morning - now will not connect moreinfo Bug report normal FileZilla Client
Description

Since the update I get a critical error, tries to log on and then does not go through. Others here who have not updated do not have this issue.

#12785 Timeout value leads to certain directories not being downloaded new Bug report normal FileZilla Client
Description

The default timeout value of 20 means that certain directory listings, which take servers longer than 20 seconds, will be "silently" skipped.

They will appear red in the rolling log at the top, but will be lost when you are downloading thousands of files.

When you increase the timeout value the directories are correctly downloaded. This is a usb cable connection, so latency or bandwidth really aren't issues.

This has lead to data loss for me, as I use ftp and filezilla to make backups on my phone.

I have tried this with multiple servers and yes it is reproducible.

The problem are the Whatsapp image directories that just have too many entries and the servers on Android taking longer than 20 seconds to reply.

What I would expect is that at the very least an error is prominently displayed in red. It could be in failed transfers, though that is a bit of a misnomer.

BUT, that filezilla silently, without a popup or anything fails, while reporting to the user that all files have been successfully transfered, I consider wrong.

Perhaps you are aware of this. Please consider throwing a popup or toast or something that states, no the transfer didn't go through fine.

(The attached screenshot is of me trying this with the shortest timeout value, as you can see at the bottom all transfers supposedly went through fine)

#12787 default remote directory doesn save ending slash new Bug report normal FileZilla Client
Description

In Advanced tab, "Default remote directory" a spec of /homedir/user/ the ending slash used to be saved. Now you can specify it but it will be saved as /homedir/user (wo the slash).

According to POSIX the difference is with an ending slash it is considered to be only a reference to a directory. Without the slash it can be either a directory or the name of a file.

I found this to be a problem when using secure FTP versions at my new ISP, but not at my previous one. To compare your product some other ftp clients do save the ending slash.

#12790 Context Menu on Mac Inconsistent - Right Click doesn't select item in bottom panes (as expected), but does in top new Bug report normal FileZilla Client
Description

I expect right click to select an item and then give me the context menu for it.

That's how it works in the upper frames, but not the lower.

In the lower, you have to left click an item, then right click it. If you left click an item, then right click on another, the context menu relates to the first.

I nearly gave up using Filezilla because I was right-clicking to select view/edit, which was greyed out unless I left clicked first.

I hope this makes sense

#12791 need help to install CA certificate to SFTP server new Bug report high FileZilla Server
Description

I followed these steps:

1) create CSR and private key: $ openssl req -newkey rsa:2048 -keyout PRIVATEKEY.key -out MYCSR.csr Generating a RSA private key ...................................................+++++ .........................+++++ writing new private key to 'PRIVATEKEY.key' Enter PEM pass phrase: Verifying - Enter PEM pass phrase:


2) Copy+paste the CSR to request a new CA certificate (PKCS7b - *.pem format)

3) Download the certificate in *.pem format to the FTP server

4) Add the private key to the filezilla FTP server (see attached screenshot)

5) The FTP server is unable to read the certificate details (grayed) and connection failed with "Response: 504 TLS handshaking failed!"

#12793 Remove duplicated entries in Site Manager new Feature request normal FileZilla Client
Description

Another idea I guess worth thinking of.

#12794 OSX Icon! :) new Feature request normal FileZilla Client
Description

I believe the new icon should be updated to fit the other icons for MacOS. Right now it's larger then all of the other + there could be even an option to change to a simpler icon with normal, rounded corners :)

#12797 Implicit Encryption new Other normal FileZilla Client
Description

Hello Filezilla,

My Clinical Trial Management System is now requiring Implicit Encryption. Do you have this feature available on the Free version and if so, how do I enable that?

Thank you for your assistance in this matter, I look forward to hearing back from you.

Rosanne Palmieri

#12799 Password locked moreinfo Bug report normal Unknown
Description

I can't enter a password to upload a file because it is locked. When I click on the locked word, a place to enter my Filezilla password appears. After I enter my Filezilla password, I get a list of sites and usernames. When I select one, a "fill" sign comes up, presumably for me to fill in the password for that site. However, when I click on "fill" the list disappears and the password for Filezilla remains locked.

Help!

#12802 CSS file does not upload correctly moreinfo Bug report normal FileZilla Client
Description

Hi, the CSS file does not upload correctly. It may upload one change and not the others, or it does not upload any changes at all.

#12803 Connect count as active when actually dead on long run new Bug report normal FileZilla Client
Description

This bug exists very long time and look like nobody notice it, since most users not run Client for days, weeks and months. But I do.

It is look like - Client will be open with connection to some servers. You return here and start work with server. Like change directory. Client write in log something like "retrieving directory content" and not follow your requests anymore.

You need wait end timeout when Client realize there no connection and goes reconnect and command. Or you can press "interrupt connection" (yes, this button active when there no active connection), say yes. Client goes glitch and show some BS like travel on non sync dir, but after resolve it all goes fine.

As I see this happen because in code exists simple check connected server or no. It is done as 32-bit timestamp of last connection/action vs current timestamp. This timestamp overflowed on some intervals. Which leads to pass check and Client start work like there active connection.

I not sure what exact interval for appear this bug, but possible near 48 hour.

#12805 Folders / Directories new Feature request normal FileZilla Client
Description

I am not sure why it does not download empty folders.

If you set up filters to filter out all the files in a folder, it will not download the empty folder. That empty folder name is what I am looking for, which is why I would like to have it downloaded, but do not want to waste bandwidth downloading the contents of the folder.

When I say folder, I mean directory.

This would be a great help to me and will donate if fixed (or added I guess), thank you.

#12806 550 The system cannot find the file specified new Bug report normal FileZilla Client
Description

Downloaded files begin with a space and prompt 550 The system cannot find the file specified

#12815 Problem with graphic when renaming file/folder in Filzilla MacOS new Bug report high FileZilla Client
Description

Hello, i use the new dark theme and after update i see problem with graphic when i try to change the file/folder name in Filezilla MacOS and it make very difficult to rename a file/folder

#12816 Site Manager Sync is no longer opening a browser tab to authenticate/grant permission. new Bug report blocker FileZilla Client
Description

Can no longer sync site manager entries between machines because there is just a spinning loading icon and no browser tabs are being opened by Filezilla PRO to authenticate with the Google Drive sync that has been running smoothly for a year now.

I have purchased via the App Store. I can't sign up for the FileZilla pro forum due to not having an order number that is recognised from Apple to FileZilla.

FileZilla Pro


Version: 3.62.1

Build information:

Compiled for: x86_64-apple-darwin22.1.0 Compiled on: x86_64-apple-darwin22.1.0 Build date: 2022-11-17 Compiled with: Apple clang version 14.0.0 (clang-1400.0.29.202) Compiler flags: -O2 -g -Wall -Wextra -pedantic -O2 -g -Wall -Wextra -pedantic -mmacosx-version-min=10.13.0 -Werror=partial-availability

Linked against:

wxWidgets: 3.2.1 SQLite: 3.39.4 GnuTLS: 3.7.7

Operating system:

Name: macOS Ventura Version 13.0.1 (Build 22A400) Version: 13.0 CPU features: sse sse2 sse3 ssse3 sse4.1 sse4.2 avx avx2 aes pclmulqdq rdrnd bmi bmi2 adx lm Settings dir: /Users/--removed--/Library/Containers/org.filezilla-project.filezilla.sandbox/Data/.config/filezilla/

#12817 AWS (Amazon) S3 - Issues when accessing multiple instances on different tabs new Bug report normal FileZilla Client
Description

After accessing one instances S3 bucket and trying to view another AWS instance FileZilla is using the information for the first instance.

  1. Create S3+FTP logins for two different AWS instances
  2. Access the first instance
  3. Access the second instance - It will show the results of instance number 1

(it doesn't matter if the new tab or reuse - only way I found to fix was exit and restart)

#12818 When using the extended screen, the actions cannot be displayed new Bug report normal FileZilla Client
Description

When the file exists, there is usually a pop-up dialog box asking what to do it, and there are some actions on the right side of the dialog, such as "overwrite", "overwrite if source newer". But when using FileZilla on an extended screen, the pop-up dialog does not have these actions.

#12820 Malformed chunk data: Invalid chunk size moreinfo Bug report high FileZilla Client
Description

When using FileZilla/3.62.2 to download documents from Box, I see this message occasionally appear in my logs:

Error: Malformed chunk data: Invalid chunk size Error: File transfer failed

What causes this and what can be done to make the file download correctly?

#12822 By default, Filezilla Server does not register any exclusions in Windows Firewall, cannot connect until exclusions added to Windows firewall new Feature request normal FileZilla Server
Description

At install time, FileZilla Server does not register any exclusions in the Windows Firewall, so by default, it cannot perform its main role of acting as an FTP server.

Manually adding the program "C:\Program Files\FileZilla Server\filezilla-server.exe" to the Inbound rules in Windows Firewall will fix the issue, but the program really should be doing that at install time.

#12823 panes cannot be resized on load (macOS) new Bug report normal FileZilla Client
Description

Noticed in the previous version too: When starting the app on macOS (Ventura, but also Monterey) the panes for log, local and remote cannot be resized. The 'handles' for horizontal resize of local vs remote seem to be displayed on 50% of the local tree. When I enable or disable the Message log, the handles are back and I can resize the panes again.

#12825 Repeated images/files with various sizes new Other high FileZilla Client
Description

Hi, i noticed that on my Filezilla FTP that its showing the same file with different sizes, if you could explain why that is happening and how i can prevent that because it taking up space in the server. As on the wordpress backend, in media folder i do not see these and i only use wordpress uploader to upload it, neither have i uploaded them with different sizes. For example i have a pdf that i have upload on wordpress, in filezilla its stripping the images separately and creating a imaged of it with various different sizes. please see the attached screenshot. Also, the amount of media files do not match on wordpress and FileZilla because FileZilla is producing images with different sizes. Please let me know how i can prevent that from happening and how can i go about clearing these files from filezilla.

Thank you Shahroz

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