Custom Query (8171 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (401 - 500 of 8171)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Summary Owner Type Priority Component Resolution
#1897 Add Command RNFR RNTO (RENAME) Feature request normal Other
Description

Please add the possibility to move on the server side a file or a folder using the drag and drop. Commands used to accomplish this are RNFR and RNTO.

Many thanks for this good product.

#4806 Add FTP over SSH (tunneling using a proxy server) Feature request normal FileZilla Client rejected
Description

It's a common problem to have a restricted Internet connection. Sometimes it's not possible to access FTP servers, or other times the FTP server can be located on a private network. In these cases, when an SSH connection is possible, it can be useful to have some type of SSH proxy act as a gateway to the FTP server.

SSH tunneling allows to encapsulate the FTP control connection: ssh -L 2121:ftp.someplace.net:21 myuser@… -N ftp localhost 2121

But there is still a problem with the data connection. In active mode, it requires a connection from server to client, which is impossible in most cases. In passive mode, Filezilla accesses the server using the IP specified in response to the PASV command, if it is routable, or the IP address used for the control connection, if the other one is not routable. The port number is specified by the server. With both IP addresses, it will be impossible to connect (myproxyserver.fr is not directly accessible, and localhost does not have an SSH tunnel on the specified port).

So, to solve the problem in passive mode, just after the answer to the PASV command, and before the RETR or directory listing command, the FTP client should create an SSH tunnel from localhost to ftp.someplace.net with the same port number on both sides (as specified by the server after PASV).

I tried to do that with Filezilla (trunk) on Linux. Since I don't know how to use Putty code for SSH port forwarding, I did it the dirty way, using the ssh command as in the shell. SSH authentication is handled by ssh using a public key in my case, so Filezilla does not care about it.

I don't send this code as a patch submission, because I know that it cannot be integrated in this way in FileZilla.

In CFtpControlSocket::ParsePasvResponse(CRawTransferOpData* pData) (src/engine/ftpcontrolsocket.cpp:3809):

// Create an SSH tunnel on the port specified by the server for the passive data connection
int error = 0;
static int tunnelPID = 0;
if( m_pSocket->GetRemotePort(error) == 2121 ) // I use this port only for SSH tunneling
{
        if ( tunnelPID )
        {       
                kill( tunnelPID, 15 ); // SIGTERM (include signal.h)
                waitpid( tunnelPID, &error, 0 ); // (include sys/wait.h)
        }       
        wxString portFw = wxString::Format("%d:%s:%d", pData->port, pData->host.c_str(), pData->port);
        if ( !( tunnelPID = fork() ) )
                execlp("ssh", "ssh", "-L", portFw.c_str(), "myuser@myproxyserver.fr", "-N", "-n", NULL);
        pData->host = peerIP; // Connect to localhost (SSH tunnel), not to the specified IP
        sleep(4); // myproxyserver is somewhat slow to create the tunnel
}

I use tunneling only on port 2121 (I want Filezilla to work as usual for port 21). Old SSH processes are killed because I assume that they are not used anymore (data transfer is terminated, and there is only one connection at a time). I fork filezilla to execute ssh, then the original filezilla process freezes ;-) during 4 seconds to be sure that the tunnel is created, because I don't have another way to know that. When the function returns, FileZilla connects to localhost:pData->port to create the data connexion. This process is repeated for each transfer.

All these things will necessarily be slower than a direct FTP connection, and since I did it badly, it's VERY slow (waiting 4 seconds for each transfer), but it does actually work, and allows me to access my FTP servers almost "as usual" with a connection that does not allow FTP.

I hope you will find this useful. It would be nice to have such option in a future version of FileZilla.

#1791 Add SCP Support Feature request normal FileZilla Client
Description

Please consider adding the ability to connect to a SSH (Secure SHell) server with SCP (Secure Copy Protocol) service.

#12073 Add SFTP protocol option to use sudo on login Feature request normal FileZilla Client rejected
Description

Sorry to say, but this is kind of a killer feature of WinSCP. On the other hand, it only understands putty private keys...

#5675 Add SSH functionality to FileZilla Server Feature request normal FileZilla Server duplicate
Description

I would like to add sFTP (FTP over SSH) to my FTP server, but this feature does not appear to be available in the current version of FileZilla server. Can it be added?

#1923 Add SSPI support Feature request normal Other outdated
Description

For Windows 2000/2003/XP add SSPI support for Kerberos instead of or in addition to the MIT GSSAPI. See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsecure/html/sspikerberos.asp for more details. Regards Markus

#2967 Add Server type as400 / Iseries Feature request normal FileZilla Client duplicate
Description

Can you please add support for server type AS/400 or Iseries.

Thanks

#2887 Add Site Name to Title Bar Feature request normal FileZilla Client
Description

Hi and thanks for great product. It would be a great help if you could add the "Site Name" to the Title Bar. Currently it says Username@192.168.1.1 It would help if it said MY_SITE_NAME - Username@192.168.1.1 This is because I sometimes use the same username for different sites and then I'm not sure which site I'm working on.

Thanks and keep up the great effort.

#7421 Add Support for Amazon AWS S3 Service as a Storage Target Feature request normal FileZilla Client fixed
Description

Add support for Amazon Web Service (AWS) S3 storage buckets as a file transfer target for FileZilla.

My search would indicate that this request was last addressed in tickets 2741 and 2648, which at the time the recommended path was requesting Amazon support FTP.

In the intervening timeframe, the userbase of AWS S3 has exploded, there have existed a number of architectural reasons why API based access provides significant advantage. The present climate of FileZilla's use would establish a case for the interface metaphor so well liked in FileZilla to target S3 storage buckets as well.

The developer documentation, including the S3 API and developer guides is available at: http://aws.amazon.com/documentation/s3/

#2878 Add USER@HOST FIREWALLID proxy option Feature request normal FileZilla Client
Description

Add a new proxy option: USER@HOST FIREWALLID The proxy option has the following script:

USER %u@%h %s PASS %p ACCT %w

#2994 Add a "Open Existing File" to edit existing file dialog Tim Kosse Feature request high FileZilla Client
Description

When one edits a file from the server and the file is already being edited, it would be nice if the dialog that asks "A file with that name is already being edited. Discard old file and download the new file?" also had an "Open existing file" button, rather than just a Yes or No.

The existing file is usually sitting somewhere in a hard to reach location, and I might not want to redownload it, such as in the case where I closed the editor by accident.

#1915 Add a description field in the site manager Feature request normal FileZilla Client
Description

The site details should include a text field when the user can add some description or notes about the site.

#3005 Add a directory lock Feature request normal FileZilla Client
Description

When browsing, it could be much more convenient to allow "directory lock", meaning that when I browse into dir "A" on local computer, the remote connection also opens "A" dir, and vice-versa.

#2365 Add a log analyzer to FileZilla Server Feature request normal FileZilla Server wontfix
Description

first, filezilla server is great software! it just needs a little addon which parses the logfiles, then its very nice. :-)

#3953 Add a save current local/remote path button Feature request normal FileZilla Client duplicate
Description

Instead of specifying the local or remote path to have upon connection in the Site manager it would be very handy to have 2 little buttons that will instantly save the current path location.

See attached image for a suggestion of button placement.

I installed FZ for the 1st time (after I had to find another free FTP client) and I have only setted up the basic info, host, port, name and password then connected.

I then browsed to find my local default path and same for remote path. It's not that I was looking for such a button to save those path so the nexty time I would connect the same site I would already be there.

Much easier than having to go write both path we want into the site manager.

Thanks!

#2455 Add ability to use mapped directories/drives Feature request normal FileZilla Server
Description

The one thing I like about Serv-U ftp server is that it can use both physical drives and mapped logical drives.

I'd like to request that mapped drives & shared

folders can be used in a future release. This is because not everyone has all the files they want on the FTP server machine, but they might be on a different machine that the admin gets to via a mapped drive or shared directory.

#2543 Add ability to use paswordless logins Feature request normal FileZilla Client
Description

Example: You have a shell account on example.com. You have generated a set of keys (ssh-2 rsa for example) and uploaded the public key to example.com and added it to the list of trusted keys so you will be able to login without a password. Private key caching facilities are already available on Windows and Linux, such as Pageant or the keychain tools.

PuTTy already implements this (to take an example). It would be nice if you could specify a public key.

Thanks. Vladimir

#8985 Add aes128-gcm@openssh.com and aes256-gcm@openssh.com Ciphers and umac-128-etm@openssh.com MAC support for SFTP Feature request normal FileZilla Client fixed
Description

These ciphers and MAC were added to OpenSSH 6.2 release. Unfortunately, FileZilla 3.7.3 wont connect via SFTP protocol to my servers that exclusively use these ciphers and MAC.

#2782 Add an ETA or "Remaining"-label Feature request normal FileZilla Client
Description

FileZilla 3 shows the queue's size at the bottom right of its main window (just to the left of the RX/TX-LEDs), but doesn't show an overall ETA for all queued files.

So, I'm requesting to add "Remaining: XX h, YY min, ZZ s" and/or something like "ETA: 11:56:33" to that informational area.

Thanks in advance,

Martin.. :)

#1502 Add an option to hide local hidden files Tim Kosse Patch normal FileZilla Client
Description

This patch makes showing the hidden local files optional, defaulting to the current behavior (of ignoring the hidden attribute).

This is exposed as a check box on the local view options page.

If hidden files are not shown, they will not be uploaded either.

The only outstanding issue is the now ambiguous view menu options "Show hidden files" I would recommend changing this to "Show Remote hidden files" or something similar. Leaving it as is just invites bug reports. This change is not included in the patch.

-Eric Moore

#1808 Add button for choosing transfer type Feature request normal Other
Description

First thanks for the wonderfull tool !

It would be usefull to have button in the toolbar to choose between the transfer types. (ASCII -> Binary -> Auto)

Have fun. Pascal

#11215 Add date and timestamp to message log Feature request normal FileZilla Client fixed
Description

It would be a lot more useful if the message log entries were time and date stamped. I had an error occur, but I have little idea which entries in the message log relate to this, well of course the last ones, but how far up?

e.g. if I have been trying to get something copied but it's silently failing, how do I know if the message log entries even have entries relating to my issue?

Also if an issue has been occurring for about 5 minutes, then I know roughly which errors in the message log relate to this.

p.s. Thanks for your continued efforts, in the best FTP app for OSX! :-)

#2039 Add favorites link for local directories Alexander Schuch Feature request normal FileZilla Client
Description

Would be nice to have my Windows "favorites" links available in local directories, or the "Links" folder on the desktop--easier navigation.

#4016 Add files to queue broken Do not touch Bug report normal FileZilla Client duplicate
Description

Filezilla version: 3.1.5.1

I have a multi-level folder directory that could not be added to the queue to be uploaded correctly. The folder structure is similar as follows:

 - www
   - _images
     - folderA
       - folderB
         - image1.jpg
         - image2.jpg
   - _templates
     - folderC
       - folderD
         - folderE
           - folderF
             - template1.tpl
             - template2.tpl

When in the local directory, and in the www level and right-clicking on www and choosing "add files to queue", not all the files get added to the queue.

More correctly, only the files in the _images directory get added to the queue.

This worked correctly with filezilla 2.2.30 but has broken with the current version.

#8928 Add git to default filter rules Feature request normal FileZilla Client fixed
Description

Add git a filter rule to ignore the .git directory to the filter "CVS and SVN directories". Probably we would also add mercurial at this point thus also ignore .hg directories. A rename then would be adequate: "Ignore source control directories (CVS, SVN, Git, Hg)"

#11052 Add new fatures Feature request normal FileZilla Client worksforme
Description

Hi, and thanks for this software

please add this features:

  1. can add multi default address for remote and local and can select quickly from top of folders tree.
  1. can define relation between this address, for example when i select public_html in remote -> go to public in local and ....
  1. with this 2nd feature is better to add a button to work like Back button in explorer to go to last address.

best regard.

#11233 Add new fatures Bug report normal FileZilla Client rejected
Description

Hello Why not zip or unzip the folder through FileZilla client? Add this fature in programm, please thank

#2704 Add option for Site Manager to appear on startup Feature request normal FileZilla Client
Description

Note: This is one of a few requests currently posted in the forum (http://filezilla.sourceforge.net/forum/viewtopic.php?p=14155#14155).

It would be nice if there were an option for the Site Manager to appear on startup (or not, as the user prefers).

#9841 Add option to force "LIST -a" instead of "MLSD" Feature request normal FileZilla Client rejected
Description

we have the issue that not all directory content on our ftp server is listed. Hidden Dot-Files are not shown and diretorys with hidden files can not be deleted. We already activated the "Show hidden files" option.

We observed that FileUilla uses the "MLSD" command to retrieve the directory content. But other clients, like WinSCP use the "LIST -a" command.

Can you add an option to force "LIST -a" instead of "MLSD"?

#11241 Add option to move files and dirs only if key is pressed Feature request normal FileZilla Client duplicate
Description

It's very easy to move files and dirs and destroy a site as there is no undo that I am aware of. It would help if there was a preference to only move files and dirs if a key was held down (for example, Command in Mac OS and Control in Windows).

IMV, it should be default and if user tries to move, show a preferences dialogue box in which user can uncheck and move files and dirs without pressing a key. For example:

[ x] Command/Control-drag to move. Cancel | Save [] Do not show again.

#4745 Add option to refresh local or remote only to Refresh button Feature request normal FileZilla Client duplicate
Description

Add a dropdown option to Refresh button on toolbar to 'Refresh local' and 'Refresh remote' only. Steps:

  1. Create a new file and save it in local location.
  1. Return to FileZilla - file does not show in current local pane.
  1. Click 'Refresh' button on toolbar to refresh view and see new file.

What happens:

  1. If the remote server is disconnected, FileZilla must take time to re-connect and grab a directory listing of remote server as well as local directory.

Wish:

  1. When I know I want to refresh local only, I can select to do this.
  1. This works equally in the other direction. Sometimes I only want to refresh the remote view (eg when someone else has dropped a file on the remote server).
#2978 Add option to sort files with natural/numerical order algorithm + select collation Patch normal FileZilla Client fixed
Description

It would be nice if you add an option to sort the folder and files with the natural order algorithm. So sort e.g. 1, 2, .., 8, 9, 10, 11 instead of 1, 10, 11, 2, [...], 8, 9.

#2707 Add options to configure display settings Alexander Schuch Feature request normal FileZilla Client
Description

Note: This is one of a few requests currently posted in the forum (http://filezilla.sourceforge.net/forum/viewtopic.php?p=14155#14155).

Add options to configure display settings, as it was implemented in FZ2 (i.e. Edit > Settings > Interface Settings), which was much more extensive than currently implemented in FZ3.

#2911 Add scp support to Filezilla Feature request normal FileZilla Client
Description

Many people are using WinScp (which I find has an inferior interface and is slower than filezilla) only because they need the Scp protocol and make calls to Putty.

If you implement this, we can just switch over to Filezilla!

Thanks and best regards, Cheski

#11017 Add site name in passphrase entering dialog window title Feature request normal FileZilla Client duplicate
Description

Is it possible to add site name in window title of passphrase entering dialog? It will help with KeePass' Auto-Type feature by identifying which passphrase is needed and not having to select from many sites.

#2156 Add some hotkeys/accesskeys/keyboard shortcuts to Filezilla Feature request normal Other
Description

This is one of the best ftp clients I have found; however, there are a few hotkeys I miss.

A key (such as <TAB>) to switch focus between local and remote panes.

Keys to upload and download the file(s) or folders that are currently selected in either local or remote panes.

#3002 Add support for IPv6 literal addresses RFC 2732 Feature request normal FileZilla Client
Description

Adding IPv6 support back into FileZilla was welcome. I have been using it. Supporting literal IPv6 addresses per RFC2732 - square brackets around the literal address is missing. IPv4 literal addresses are supported, so IPv6 should be as well.

#2825 Add support for deleting files after transfer Feature request normal Unknown
Description

Extend the FileZilla client with a file move option (similar to the CTRL-X CTRL-V action in Explorer). In other words instead of having to delete the file(s) in the source directory after the transfer manualy FileZilla could, through a new interface option/menu, perform the delete after transfering a file to it's destination.

#2931 Add support for scheduled transfers Feature request normal FileZilla Client
Description

For regular / re-occurring file transfers, it would be great to have either a dedicated scheduler, or at least be able to run FileZilla from a command line with all switches/options which could then be set up for regular-re-occurring execution by the Windows event scheduler. Thanks!

#3030 Add tabbing between panes Bug report normal Other
Description

I start FileZilla client, just press RET to go to my default ftp site. Everything works very fine except that after connect focus is in none of the panes so I can not use TAB to move around. I have to use the mouse for just that (which unfortunately is quite inconvenient).

This is v 2.2.21 from 2006-04-20.

#10174 Add the ability to do File Diffs from within the FileZilla UI Feature request normal FileZilla Client duplicate
Description

Directory comparison and synchronised browsing are great features in Filezilla but the one thing that is missing is the ability to quickly do a diff between the server and the client versions of a file.

This feature could be implemented by downloading the server version into a temporary file and then doing a diff using whatever diffing utility that the user has installed (meld, winmerge, beyondcompare, etc..)

FileZilla would need some UI to allow the user to be able to select their diff tool of choice.

If the user then makes changes to the temporary file then FileZilla should offer to upload those changes to the server. To implement this, FileZilla would need to watch the process that was opened for the diff tool and wait till it closes.

The request and the reasoning is described in this forum article quite well.

https://forum.filezilla-project.org/viewtopic.php?t=10824

I did a quick check and did not find any actual ticket for this issue.

#2021 Add the ability to filter out files and/or directories Feature request normal Other
Description

I would like to be able to filter out files (specifically or by wildcard, i.e. *.log) or directories (i.e. CVS). Would also be nice to be able to filter out by attributes (i.e. hidden files).

#8185 Add the ability to save and restore opened tabs Rahul Nanwani Patch normal FileZilla Client outdated
Description

Add the ability to save and restore opened tabs, and possibly modify command line argument "--site" so that it was possible to connect to multiple servers in a separate tabs.

#2817 Add the support os AS400 (aka i5 iSeries) platform Feature request normal FileZilla Client
Description

Hello,

I can see that FileZilla support the MVS platform. It would be nice if you could add the support of the AS400 platform in particular the QSYS filesystem.

For your information the AS400 is like the MVS platform a proprietary IBM platform with a specific OS called i5/OS (formerly OS400).

Thanks.

O.D.

#2821 Add the support os AS400 (aka i5 iSeries) platform Feature request normal Other
Description

Hello,

I saw that my previous feature request was closed because you lacked some information about the AS400 platform and the way the FTP was working with it. Well, as a start this is what I suggest what you could do to add this support . Add the following two commands when the AS400 platform os selected :

quote site namefmt 1 : this command is going to tell to the remote AS400 FTP server to put himself in a regular unix standard naming schema.

quote site listfmt 1 : this command is going to tell the remote AS400 FTP server to display the list (when you do the ls command) of its file like a unix machine.

Those 2 commands should be executed as soon as we are logged on the AS400 FTP server. This would be a very simple starting point which is going to give FileZilla software access to the AS400 server whatever the as400 file system is used. After that the support could be improved if fileZilla let the user to enter personalize d commands ( such as the above one). For your information the AS400 QSYS file system when you use its normal naming convention as a limited depth and does not go deeper than the following :

/QSYS.LIB/library_name.LIB/file_name.FILE/member_name.MBR

the above format is what the path is going to be if you run the "quote site namefmt 1" and "quote site listfmt 1" commands. the library_name, file_name and membr_name are no more than 10 characters long. in the previous path what you have in uppercase it is some constants that never change. So when you do a put in that file system you must write something like this :

put file_name.txt EXAMPLE.FILE/EXAMPLE.MBR

It can also be defaulted to

put file_name.txt EXAMPLE.FILE

In this case the member name (MBR part) will be EXAMPLE.MBR.

Anyway, you will find below some FTP session example :

230 xxxx logged on. Remote system type is . ftp> quote site namefmt 1 250 Now using naming format "1". ftp> quote site listfmt 1 250 Directory listing format (LISTFMT) option set to 1. ftp> pwd 257 "/QSYS.LIB/QGPL.LIB" is current library. ftp> ls 200 PORT subcommand request successful. 125 List started. d------r-x 1 QPGMR 0 114688 May 09 2007 QAAPFILE#.FILE d------r-x 1 QPGMR 0 139264 May 09 2007 QAAPFILE@.FILE drwx---r-x 1 QSYS 0 45056 May 09 2007 QAFCGRPH.FILE drwx---r-x 1 QSYS 0 36864 May 09 2007 QAFCPFDDTA.FILE drwx---r-x 1 QSYS 0 36864 May 09 2007 QAFCTUTDBF.FILE drwx---r-x 1 QSYS 0 151552 May 09 2007 QAFCTUTOR.FILE drwx---r-x 1 QSYS 0 307200 May 09 2007 QAFCTUTPFD.FILE ftp> cd QUSRSYS 501 Unknown extension in database file name. ftp> cd QUSRSYS.LIB 250 "/QSYS.LIB/QUSRSYS.LIB" is current library.

ftp> put test.txt example.file local: test.txt remote: example.file 200 PORT subcommand request successful. 150 Sending file to member EXAMPLE in file EXAMPLE in library QGPL. 226 File transfer completed successfully. 9 bytes sent in 0.00 secs (97.7 kB/s) ftp> ftp> put test.txt example3.file/test1.mbr local: test.txt remote: example3.file/test1.mbr 200 PORT subcommand request successful. 150 Sending file to member TEST1 in file EXAMPLE3 in library QGPL. 226 File transfer completed successfully. 9 bytes sent in 0.00 secs (94.5 kB/s) ftp> ftp> ls ex*.file 200 PORT subcommand request successful. 125 List started. -rwx---rwx 1 CGI_OD 0 9 Dec 25 01:21 EXAMPLE.MBR -rwx---rwx 1 CGI_OD 0 9 Dec 25 01:10 TEST.MBR -rwx---rwx 1 CGI_OD 0 9 Dec 25 01:22 TEST1.MBR 250 List completed. ftp> ls

drwx---rwx 1 CGI_OD 0 36864 Dec 25 01:01 EXAMPLE.FILE drwx---rwx 1 CGI_OD 0 36864 Dec 25 01:10 EXAMPLE2.FILE drwx---rwx 1 CGI_OD 0 36864 Dec 25 01:22 EXAMPLE3.FILE

There is only 2 extensions at the object level supported by the AS400 QSYS filesystem : .FILE and .SAVF. For the latter one, only binary transfer is valid

Some additionnal information can be found in the following IBM book : http://www.redbooks.ibm.com/redbooks/pdfs/sg245190.pdf at the chapter 6. another IBM book about FTP on the AS400can be found here : http://publib.boulder.ibm.com/infocenter/systems/scope/i5os/topic/rzaiq/rzaiq.pdf.

There is also this link but you must dig a little bit : http://search400.techtarget.com/generic/0,295582,sid3_gci1049532,00.html

Hope this help

I can see that FileZilla support the MVS platform. It would be nice if you could add the support of the AS400 platform in particular the QSYS filesystem.

For your information the AS400 is like the MVS platform a proprietary IBM platform with a specific OS called i5/OS (formerly OS400).

Thanks.

O.D.

#8191 Add to toolbar: delete queue, new folder Feature request normal FileZilla Client outdated
Description

The commands I need most often are "delete all files in the queue" and "new folder". I have discovered that by right-clicking I can get both of these options, but as you undoubtedly know from the many help requests, beginning users do not know about the right-clicking. Please add these two important items to your toolbar. They are more commonly needed than any of the other toolbar items.

#1504 Add two more commandline arguments to FAQ doc Tim Kosse Patch normal FileZilla Client
Description

Add to this page

http://filezilla.sourceforge.net/cmdline.htm

the following commandline arguments, which have been available in filezilla for a couple of years, since the developer kindly accepted my patches to add them for automated use (in 2004 I think).

Add the below descriptions -- or some variation, these are just my off-the-cuff attempts :)


/overwrite

This argument causes FileZilla overwrites any existing

file without prompting (for automated and script use).

/close

This argument causes FileZilla to close after the

upload is complete (for automated and script use).

#2559 Add/fix logical mapped drive support Feature request low FileZilla Server outdated
Description

When using mapped drives in Windows Server as home directories, unable to access via FTP client.


server\share domain resident mapped drives used as ftp directories fail to be accessable in both writing and reading functions. First errors were permission violations. Tested this configuration with multiple mapped drives with up to domain administrator credentials. Once the permissions violations were resolved, FileZilla began giving internal error messages.

Drives hard-mounted to the same machine as the FileZilla server lives work perfectly.

Thanks guys

#3319 Added ASCII filetype not used until restart Bug report normal Other
Description

When adding a new file type to the Automatic Detect of ASCII transfer mode. It is not detected until you close and open the program.

#1531 Added file exist actions Tim Kosse Patch normal FileZilla Client
Description

Hi,

I've added a couple of options that I find sometime useful to the file exist actions. The new options are:

  • overwrite if size is different
  • overwrite if size is different or source is newer

I also made some changes around the code in order to allow future new option easy to add; I changed all (all the ones I found) refernces to fie exist actions as integer in actions as "enum CFileExistsNotification::OverwriteAction"

I tested the changes compiling the code under mingw, they seem to work fine.

Cheers, Paolo.

#12232 Added new directory does not show in structure after refresh. Bug report normal FileZilla Client worksforme
Description

My php program can create directories via code. When I generate a new directory and do a refresh, the new directory does not show up in the listing.

But if I open another instance of Filezilla, there it is.

#2064 Adding IDN support Feature request normal Other
Description

I am the technical director here at Verisign responsible for the development of a plug-in to IE, Outlook and Outlook Express to provide support for IDNs ("International Domain Names") As part of our development effort we have packaged an open source C library that can be integrated into application such as FileZilla. This completely free library provides all the necessary encoding/decoding required when taking a domain name in non-ASCII characters and converting it so that DNS can understand it.

Companies such as SmartFTP (www.smartftp.com) and CoreFTP (www.coreftp.com) have taken this library and have integrated it into their products with others currently under development.

With Netscape, Mozilla, Firebird and Camino now also support IDNs natively based on the suggestion of a collegue I am posting this request. IDNs are now being offered by most of the major gTLDs as well as ccTLDs.

IDNs being supported in dotCom and dotNet they are now also supported by the following ccTLDs: dotNo, dotSe, dotDk, dotDe, dotCh, dotCn, dotHk, dotJp, dotKr, dotTw, dotVn, dotCc and dotTv. Shortly dotLt, dotInfo and dotAt will also be making IDNs available in their respective markets.

Attached to this message is our SDK which can be reviewed for suitability of purpose. Unfortunately the attached ZIP file includes both our Java as well as C implementations so you'll need to sort through to pick out the pieces of the C lib.

Finally, we have set up an external FTP Server to faciliate testing and I would be pleased to provide suitable information should it be of value.

Thank you for your consideration.

#2110 Adding a file filter Feature request normal FileZilla Client
Description

A file filter addition to the filezilla would be appreciated. right now if there are too many files in the directory there is no way to filter out the file except trying to find out visually.

e.g if I just want to see the file type with the sql extension there is no place to specify this as of now.

#2566 Adding a general password Feature request normal FileZilla Client
Description

It seems me that it's dangerous to store directly all passwords. Is it possible to add a general password for more security ?

Sorry for my english, I'm french. Filezilla Client and Server are real good stuffs !!

Don't hesitate to delete this request if it isn't followe d posting rules.

#3812 Adding a link onto my site Other normal FileZilla Client invalid
Description

A 'friend' created my site and he has now vanished. I wish to put in a page of links to other sites and I am just learning Filezilla. Apologies for being a newbie but I can learn.

Many thanks

Stephanie Holland-Hill

#11554 Adding a new sige. Bug report normal FileZilla Client worksforme
Description

I imported a new site with info and needed to remove and start again. It would not allow me to remove the existing imported sites. Please info on how to remove. Thanks

NF

#4763 Adding file filters causes FileZilla Windows Client to Crash Bug report normal FileZilla Client fixed
Description

I am trying to create a Filter following the directions outlined at http://wiki.filezilla-project.org/Filename_Filters however whenever I click the "Ok" button on the Filter Creation dialog box the software crashes. I attempted to get the log by setting it to Verbose but the file does not seem to be saved or I can't find it

Here are the steps to recreate it (it does not matter if one is connected to a site or not):

1) Launch FileZilla 2) Go to View menu 3) Select Filename Filters 4) Select Edit filters 5) Select New 6) Give the filter a name

-Notice how the "+" button is off the edge of the dialog box

7) Select a "Filename" that "ends with" ".pdf" or "pdf" does not seem to matter 8) Click "Okay"

That is what happens to make it crash. I have a video capture of the crash process if that would be helpful.

Thank you.

Software and OS Info:

FileZilla Client


Version: 3.2.7

Build information:

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

Linked against:

wxWidgets: 2.8.10 GnuTLS: 2.8.3

Client/Workstation info

OS Name Microsoft Windows XP Professional Version 5.1.2600 Service Pack 2 Build 2600 OS Manufacturer Microsoft Corporation System Name BENN System Manufacturer LENOVO System Model 64575KU System Type X86-based PC Processor x86 Family 6 Model 15 Stepping 11 GenuineIntel ~2394 Mhz Processor x86 Family 6 Model 15 Stepping 11 GenuineIntel ~2393 Mhz BIOS Version/Date LENOVO 7LETB7WW (2.17 ), 4/25/2008 SMBIOS Version 2.4 Windows Directory C:\WINDOWS System Directory C:\WINDOWS\system32 Boot Device \Device\HarddiskVolume1 Locale United States Hardware Abstraction Layer Version = "5.1.2600.2180 (xpsp_sp2_rtm.040803-2158)" User Name CROWNINTL\bbenn Time Zone Eastern Daylight Time Total Physical Memory 4,096.00 MB Available Physical Memory 1.99 GB Total Virtual Memory 2.00 GB Available Virtual Memory 1.96 GB Page File Space 4.31 GB Page File C:\pagefile.sys

#1125 Adding log files to remote server Alexander Schuch Bug report normal FileZilla Client
Description

It is adding remote files to the remote server. Like this...

.pureftpd-upload.44a53e4f.15.47de.881c5357

I can't delete or rename them.

I have the logging turned of in the setting panel. Using xp sp2 to a linux kernel ver. 2.6.9-22.ELsmp with cpanel build 10.8.2-STABLE 120

Looked for this problem elsewhere couldn't find any thing on this...

Bob

#4071 Adding transfert mode button in tools bar Feature request normal FileZilla Client duplicate
Description

Very first, I appologize if this request has already been post; but I haven't be able to found any trace in tickets. I use Fz 3.1.6 to load OS/9 targets from a windows server with both binary and ASCII files (without any extension :-( The "automatic transfert mode" fail to resolve the type of file with my files. So I must change manually, for each transfert queue, the 'transfert mode' from the 'transfert menu'. That why I request you to add a shortcut button in the tools bar to switch quickly from ACCSI to binary mode.

#821 Additional Name for January Bug report normal Other
Description

In Austria (Lang de_AT) is the January named "Jänner" or in short form "Jän" Please insert this in the month table, because the files and directories created in january are not shown in the filelist.

Regards Helmut

#3729 Additional interface layout Feature request normal FileZilla Client outdated
Description

I would like to see another filelist view. Just like FlashFxp.

The normal Filelist (classic) without the directory tree. local left / remote right.

and at the bottem the file queue left (or right) and the message log also on the bottom (next to the queue) right (or left).

#9834 Address bar for FTP/SFTP/FTPES links Feature request normal FileZilla Client worksforme
Description

I often want to connect to an FTPES service, and FileZilla is proving cumbersome to do so--QuickConnect seems to default to FTP (unsecured), and the standard FileZilla interface for creating new, remembered connections has many fields to enter one at a time. Wouldn't it be great if users could just paste in FTP/SFTP/FTPES links into a sort of address bar, as we do all the time in Web browsers?

#349 Address incorrectly identified Ver 2.17 Bug report normal Other
Description

I copy and paste ftp://ftp.sk.debian.org/.mnt3/tucows/windows/files7/Grea tStellaDemoInst.exe into the ADDRESS input box. FILEZILLA looks for ftp://ftp.sk.debian.org/.mnt3/tucows/windows/files7/Grea tStellaDemoInst.exe/ thinking the last part is a folder not a file. A connection is made but an error message folder not found is reported. Now it would be great if the common extensions where recognised. eg. doc, zip, html, exe,....

Or have I missed something?

#1077 Admin interface cannot connect to a remote server Bug report normal FileZilla Server
Description

Just as the summary says.

Local network, FZS running on one machine, Admin interface launched from another can't access it. With or without password. No firewall etc. While looking with netstat (I know, I know, but this is the only thing I have here) I can't see it making a connection.

Also when launching the server interface and pointing to the local machine (127.0.0.1) the wordage on the dialog box suggests that you have to type the password only if you're connecting to a remote server. Which is not true. The password needs to be typed for local connection too.

#926 Admin password Bug report normal FileZilla Server outdated
Description

Hello,

FileZilla server doesn't ask for admin password for administration interface when connecting from local machine. I want to run FileZilla server on Terminal Server, so everyone could admin the server without password supplied.

Regards, VooDooMan

#935 Admin password plaintext Bug report normal FileZilla Server
Description

Why is the Admin password in plaintext? Why isn't crypted like the user passwords (in md5)?

Please encrypt this ADMIN password.

Thanks.

#2799 Advanced Logging Feature request normal FileZilla Server duplicate
Description

i'd love to see logging options, such as keeping one log file per user or for different time intervals (not only per day, but per month for instance). as a combination of the above, saving log-files per day/week/month in subfolders for each user.

#1619 Advanced Refresh Feature request normal FileZilla Client outdated
Description

In the last release the Refresh option refreshes both the local and the remote folders. It will be nice to be able to refresh these independently, for exemple with the right mouse button.

Denis

#11650 Affichage Feature request low FileZilla Client invalid
Description

On devrais pouvoir afficher les fenêtres en liste et multi colones.

Comme dans l'image join

#9998 After 3.10.0 Update, can no longer update files Bug report normal FileZilla Client duplicate
Description

After installing v3.10.0, every file upload attempt fails with "Could not start transfer".

#10447 After 3.11.0 update-data connection could not be established Bug report normal FileZilla Client duplicate
Description

We updated our filezilla clients to 3.11.0 but then could not establish a conection to FTP server. Several users were connected earlier in the day. All failed after update to 3.11.0. No change to server or firewall. Other FTP clients will work. Error message below:

Error: The data connection could not be established: ENETUNREACH - Network unreachable.

#5034 After I upgraded to 3.3.0.1 when loading it can not find mingvm10.dll Bug report low FileZilla Client fixed
Description

Hello I am running windows 7 and was using version 3.2.8.1 which was working OK, then I upgraded to 3.3.0.1 and it ran after the upgrade. But after closing the program, I always get the message missing mingvw10.dll and please reinstall the program. The mingvm10.dll is in the FileZilla folder. I have tried to reinstall the old version and now I have the same problem. I have to reinstall the program to get it to work one time.

Any Ideas?

Thanks

Ray

#5322 After N files transferred through SFTP using FileZilla, the queue slows down Bug report normal FileZilla Client outdated
Description

After N files transferred through sftp using FileZilla, the queue slows down. It happens when I'm transferring one file at a time or 2 files at a time or N files at a time. It usually slows down when the third or fourth file in the queue has finished transferring.

And when it's happening, all I need to do is restart the queue after a few minutes and the speed will go back to normal.

I'm using Buffalo WHR-G125, just in case it has something to do with it.

#5667 After a successful transfer filezilla became unresponsive on Fedora_14_x86_64 Bug report blocker FileZilla Client outdated
Description

When I transfer a file from my Fedora 14 64bit machine it became unresponsive with grey screen after successful file transfer to server. Then I can only Force Quit it.

My machine details is: Machine: Dell Latitude D620 Laptop Processor: Intel Core2Duo T7200 @ 2.0GHz Ram: 2GB Operating System: Fedora 14 (Laughlin) Kernel: Linux 2.6.35.6-48.fc14.x86_64

#10801 After action queue completion feature request/return Feature request normal FileZilla Client rejected
Description

I use the disconnect from server option seen in this screenshot, http://i.imgur.com/p6pPS6q.jpg , when downloading files. That way I can start the download and walk away. Then when it's finished it will disconnect but not close the application. Then later I can check and make sure I have no failed transfers. If so I can restart them easily from that tab.

The latest version of filezilla has removed this option and stays connected after your queue has completed unless you choose to close the app when done. Then you lose your failed transfer tab data.

Can you please put this option back into that menu? I use this on both windows and Linux.

#10890 After downloading (but not installing) update, FileZilla keeps warning about data loss Bug report high FileZilla Client rejected
Description

FileZilla just downloaded update 3.19.0-rc1 (2016-06-20). This update has not yet been installed. It's just sitting there in my Downloads folder. However, ever since the download of the update, when I try to open the Site Manager, it gives me this very scary warning:

Detected newer version of FileZilla

The file 'C:\...\FileZilla\sitemanager.xml' has been created by a more recent version of FileZilla. Loading files created by newer versions can result in loss of data. Do you want to continue?

First of all, we cannot copy-paste the error message, which sucks. Second of all, the error message is obviously wrong. The newer version is only downloaded, not installed yet, so how on earth can we ever have used it to create a new sitemanager.xml?? Third, *why* would data loss ever ensue from *loading* a file?? Data loss normally happens when we save a file...

This error message is very scary, because it basically tells you: Either press No and be unable to use FileZilla, or press Yes and ignore this warning at your own peril...

Took me some time to gather the courage to just press Yes...

Now today it happened again and I'm pretty sure now that this dialog is actually just testing the presence of something silly (such as a folder existing, or reg key or whatever) and is not actually looking at which version is installed. Once I install the downloaded update, the error disappears..

Maybe save the version of FileZilla in the sitemanager.xml? And maybe just make reading/writing sitemanager.xml more robust? It's XML. There is no real reason it should ever go corrupt just because some flag was not saved or was saved but not recognized...

I'd say prio is high because this happens every time you guys push an update and it's giving a very scary warning message that talks of corrupted data...

#10505 After downloading vers 3.11.0.2 cannot connect to sever Bug report normal FileZilla Client rejected
Description

I receive a Connection attempt failed with "EACCES - Permission denied".

I have changed nothing in my setup or login parameters.

Log says:

Status: Connecting to 116.213.5.25:21... Status: Connection attempt failed with "EACCES - Permission denied". Error: Could not connect to server

#4216 After installing 3.2.1 I couldn´t edit my index.html file Bug report normal FileZilla Client fixed
Description

After installing 3.2.1 I couldn´t edit my index.html file And no other files as well . After uninstalling and installing 3.2.0 everything works great again . See message enclosed Regards - great program !!! Benke

#8931 After reinstalling Windows Vista, then reinstalling Filezilla, connecting impossible Bug report normal FileZilla Client rejected
Description

I have had to reinstall all my softwares after having reinstalled Windows Vista on my computer. Since then, I cannot log to Filezilla. I wonder why. Here find the log: Status: Resolving address of ftp.centreparamita.org Status: Connecting to 67.205.22.147:21... Error: Connection timed out Trace: CFtpControlSocket::ResetOperation(2114) Trace: CControlSocket::ResetOperation(2114) Error: Could not connect to server Status: Waiting to retry... Status: Resolving address of ftp.centreparamita.org Status: Connecting to 67.205.22.147:21... Error: Connection timed out Trace: CFtpControlSocket::ResetOperation(2114) Trace: CControlSocket::ResetOperation(2114) Error: Could not connect to server

Can you answer me to helene@… please?

#11697 After renaming a file with FileZilla the file reverts to it's original name until you select refresh. Bug report normal FileZilla Client fixed
Description

I use the rename feature quite often within FileZilla and just recently it seems to not work properly. I change the name and it reverts back to the original name. After I select refresh the new name appears. So it seems to be updating the name but not showing on the screen. Please let me know if there is a fix. This just started with the latest update I downloaded.

#4407 After successfull connection attempt the server fails to send the list of files Bug report normal FileZilla Server rejected
Description

First, the problem does seem to occur randomly, but often since the version 0.9.26 or so. I'm using the version 0.9.31. The server gets the connection attempt by the client, seems to reply correctly, until the client requests the filelist. The client never receives the list, and a timeout is the consequence.

Heres a short log of a client who encountered the problem:

answer: 150 Connection accepted answer: 226 Transfer OK command: MDTM fenster.png error: connection timed out error: directory could not be received

On my side (the server): (000001) 24.03.2009 17:17:42 - (not logged in) (93.212.190.161)> Connected, sending welcome message... (000001) 24.03.2009 17:17:42 - (not logged in) (93.212.190.161)> USER Armin (000001) 24.03.2009 17:17:42 - (not logged in) (93.212.190.161)> 331 Password required for armin (000001) 24.03.2009 17:17:42 - (not logged in) (93.212.190.161)> PASS * (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> 230 Logged on (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> SYST (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> 215 UNIX emulated by FileZilla (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> FEAT (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> 211-Features: (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> MDTM (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> REST STREAM (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> SIZE (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> MODE Z (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> MLST type*;size*;modify*; (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> MLSD (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> UTF8 (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> CLNT (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> MFMT (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> 211 End (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> PWD (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> 257 "/" is current directory. (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> TYPE I (000001) 24.03.2009 17:17:42 - armin (93.212.190.161)> 200 Type set to I (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> PASV (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> 227 Entering Passive Mode (192,168,0,2,9,96) (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> LIST (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> 150 Connection accepted (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> 226 Transfer OK (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> MDTM fenster.png (000001) 24.03.2009 17:17:43 - armin (93.212.190.161)> 213 20090321171339 (000002) 24.03.2009 17:18:09 - (not logged in) (93.212.190.161)> Connected, sending welcome message...

[Now the person tried again, but the result was the same...]

The problem doesn't occur every time, and it doesn't seem to be about specific files, as the files change, with which the problem happens. It also doesn't seem to be related to specific FTP clients, as we tried it with several, including the FileZilla Client. Sometimes it works quite well, so I suppose it has nothing to do with my personal firewall on my computer, or the NAT/firewall of my router (port 21 TCP is configured, and as I said, sometimes it works really well). In earlier versions this problem never occured, but I don't know the exact version with which I the issue began.

#10485 After update to 3.11 only one directory is not listen Bug report normal FileZilla Client fixed
Description

Using a ftp server for long time, after update to 3.11 they show all directory except one ????

Thank's for help walter

#11592 After updating Win 10 Pro to build 1803 on 1 May Cannot Drag&Drop snapshots Bug report normal FileZilla Client duplicate
Description

After updating Win 10 Pro to version 1803 on 1 May I can no longer Drag&Drop snapshots out of FileZilla to a file on my desktop. I am using FileZilla 3.32.0. I get this message when I attempt to Drag&Drop "Could not determine the target of the Drag&Drop operation. Either the shell extension is not installed properly or you didn’t drop the files into an Explorer window."

I downloaded 3.32.0 to a laptop which uses an earlier version of Win 10 and the Drag&Drop function worked perfectly. I suspect a mismatch between the latest version of Win 10 and FileZilla.

#9695 After updating cant drag and drop files from fielzilla onto my desktop Bug report high FileZilla Client fixed
Description

Hi,

my issue is as the title says. I rebooted my computer and still wont work. I tried re-registering the shell extension and i get an unknown error saying it may incompatible. What can i do?

Thank you.

#11710 After updating client to version 3.36.0 it routinely crashes retrieving directory listing from one site Bug report normal FileZilla Client fixed
Description

I routinely use FileZilla client with two FTP servers. Immediately after updating the client to version 3.36.0 it started routinely crashing while "Retrieving directory listing..." from one of these servers. With the other server, I see no problem.

#10054 After updating to 3.10.0.1 cannot update our busness website Bug report low FileZilla Client rejected
Description

Updated to version 3.10.0.1 and after updating I cannot update our business website because it says it not connect to the server. I had no problem updating our website with the previous version which I think was 3.10.0. I checked with the server and the server Tech support says the problem is with File Zilla and not with the server. This is urgent to get fixed as we have wrong information for customers on our website.

#11616 After upgrade to 3.33.0 downloading XMI file from z/OS to PC data is corrupted. Bug report normal FileZilla Client rejected
Description

I just upgraded recently to 3.33.0 and at the end of the month I download an XMI file from z/OS which is an unloaded PDS file. I then run a check after the download using a tool called XMI Explorer to confirm the file is readable. Today the file is not. I then used standard DOS FTP to download same file and was ok. So what has changed in 3.33.0 that caused the corruption in the XMI files? I tried 6 other XMI files that worked in previous versions of FileZilla and they were corrupted using 3.33.0. I asked a colleague to try it as well and they too had the issue. The files are 39 meg so I can't attach to this record.If there is anything you need me to do let me know.

#1002 After using sftp:// a plain address does no ftp connection Alexander Schuch Bug report normal FileZilla Client
Description

A filezilla user asked me to report to you this bug:

He sees an inconsistency on how the address field is handled. When you type in just a host name, filezilla makes an FTP connection.

But in this sequence of events things are different (note: you need to use for ftp.example.com a host which supports FTP but no SFTP):

  1. Start up FileZilla version 2.2.17a
  2. Fill in an Address like sftp://ftp.example.com
  3. Discover, that ftp.example.com does not support

SFTP, so Click on the STOP icon in the Toolbar.

  1. Remove the sftp:// prefix in front and try to

connect to ftp.example.com instead. It still will not connect.

This happens, because filezilla still tries to establish connections to port 22. You would need to extend the address to ftp://ftp.example.com to get a connection.

This is irritating to unexperienced users, because for them it looks like the situation in step 4 is the same as if they had gone through this sequence of events:

  1. Start up FileZilla version 2.2.17a
  2. Fill in an Address like ftp.example.com
  3. An FTP connection is set up.
#1081 After using view/edit, Filezilla doesn't upload changed file Bug report normal FileZilla Client
Description

After doing a view/edit on a remote file, Filezilla would normally prompt you to upload the file back to the server. I'm now running FileZilla 2.2.23 on Windows XP Pro (SP2) w/ ZoneAlarm Security Suite 6.5.677, and it no longer asks to save the file and upload the changed file back to the server.

#7449 Alarm sound when finished transferring the queue Feature request normal FileZilla Client duplicate
Description

It would be very useful to hava an option to tell FileZilla that it should play a system sound when it finishes transferring its current queue.

#1782 Alert on connect Feature request normal FileZilla Client
Description

I frequently set a ftp connection going, minimise the client, and continue elsewhere. It also frequently happens that while connecting to a BUSY site (try Red Hat after a new release ;-) the connection is established... and timed out!

  1. An alert feature would be really helpful

Not necessarily sound, a flashing minimised icon

would be equally helpful.

PS - You are probably sick of hearing this, but this a GREAT ftp client! Thanks.

#11909 Alias Not Working for Shared OneDrive Folder Bug report critical FileZilla Server fixed
Description

When I goto Users -> Shared Folders and try to create an alias to this OneDrive folder, it allows me to make the entry, but it does NOT work when connecting remotely to the server:

f:\OneDrive - company-tech.net

When connecting remotely to the shared folder, it will display the folder contents, but it won't allow a file transfer and fails. Filezilla Server reports this error:

550 Could not open file for reading.

But if I create the alias to this folder name, it will work:

f:\OneDrive

So I believe Filezilla Server is having an issue with the hyphen or period in the folder name.

I would use the simpler folder name, however, OneDrive does not allow me to change the name of the folder as that belongs to the OneDrive account name, which in this case is "company-tech.net".

#5650 Alias don't work after a restart server or reboot Bug report normal FileZilla Server fixed
Description

Well,

When im setting some alias, it's look like good.

But when i restart the server or i reboot my OS, it doesn't work.

If i go back to check the configuration, nothing have change...

If i delete the user and do the same configuration with the alias, it will work until i restart again...

Thank for the support !

#2809 Aliases Feature request normal FileZilla Server rejected
Description

When adding a shared folder, other than the home folder, the user should be forced to enter a name and the vitual FTP path. The way it is now (v0.9.24), adding a shared folder without an alias, is meaningless, since it doesn't appear in the client's list.

#10320 All UserName and Password Information Lost (Site Manager) Bug report normal FileZilla Client outdated
Description

After the last update of File Zilla, all of my UserName and Password information is no longer in FileZilla. It looks to have defaulted all of the file transfer information to blank. My three co-workers are also having the same issue for the files that they are trying to send.

After you reenter all of the information it seems to be saving now, but we now need to track down all of the information that is missing.

#11682 All command line options are not working in 3.35.1 Bug report high FileZilla Client duplicate
Description

From version 3.35.1, all command line options are not working, except -h and --help.

At least I have confirmed -s, --site-manager, -c, --site=<str>, -a, --loal=<str>, --close, and not even -v nor --version are not working, and FileZilla client just starts as no command line option is fed.

#9106 All files fail to transfer to server Bug report normal FileZilla Client rejected
Description

I recently used the FTP with no incident, so this error came out of nowhere. When I try to transfer PDF images as a folder containing several (7) files, I get the following error message and it says it could not start the transfer:

Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Connexion November.pdf Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: CWD / Response: 250 OK. Current directory is / Command: MKD November 2013 FTP Response: 550 Can't create directory: Disk quota exceeded Command: MKD /November 2013 FTP Response: 550 Can't create directory: Disk quota exceeded Command: CWD /November 2013 FTP Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/Alternative Energy Magazine November.pdf Command: CWD /November 2013 FTP Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/Connexion November.pdf Response: 550 Can't check for file existence Command: TYPE I Response: 550 Can't check for file existence Command: TYPE I Response: 200 TYPE is now 8-bit binary Command: PASV Response: 200 TYPE is now 8-bit binary Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,23,199) Command: STOR /November 2013 FTP/Alternative Energy Magazine November.pdf Response: 227 Entering Passive Mode (207,179,90,222,89,168) Command: STOR /November 2013 FTP/Connexion November.pdf Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Energy Tech November.pdf Command: CWD /November 2013 FTP Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Energy Tech Online November.pdf Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: CWD / Response: 250 OK. Current directory is / Command: MKD November 2013 FTP Response: 550 Can't create directory: Disk quota exceeded Command: MKD /November 2013 FTP Response: 550 Can't create directory: Disk quota exceeded Command: CWD /November 2013 FTP Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/Energy Tech November.pdf Command: CWD /November 2013 FTP Response: 550 Can't check for file existence Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,229,92) Command: STOR /November 2013 FTP/Energy Tech November.pdf Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/Energy Tech Online November.pdf Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\EP&T November.pdf Command: CWD /November 2013 FTP Response: 550 Can't check for file existence Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,15,128) Command: STOR /November 2013 FTP/Energy Tech Online November.pdf Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: CWD / Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Industry Today November.pdf Response: 250 OK. Current directory is / Command: MKD November 2013 FTP Response: 550 Can't create directory: Disk quota exceeded Command: MKD /November 2013 FTP Response: 550 Can't create directory: Disk quota exceeded Command: CWD /November 2013 FTP Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/EP&T November.pdf Command: CWD /November 2013 FTP Response: 550 Can't check for file existence Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,20,52) Command: STOR /November 2013 FTP/EP&T November.pdf Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Robotics Tomorrow November.pdf Command: CWD /November 2013 FTP Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/Industry Today November.pdf Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: CWD / Response: 550 Can't check for file existence Command: PASV Response: 250 OK. Current directory is / Command: MKD November 2013 FTP Response: 227 Entering Passive Mode (207,179,90,222,123,99) Command: STOR /November 2013 FTP/Industry Today November.pdf Response: 550 Can't create directory: Disk quota exceeded Command: MKD /November 2013 FTP Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Response: 550 Can't create directory: Disk quota exceeded Command: CWD /November 2013 FTP Response: 550 Can't change directory to /November 2013 FTP: No such file or directory Command: SIZE /November 2013 FTP/Robotics Tomorrow November.pdf Response: 550 Can't check for file existence Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,49,214) Command: STOR /November 2013 FTP/Robotics Tomorrow November.pdf Response: 553 Can't open that file: No such file or directory Error: Critical file transfer error Status: Disconnected from server Status: Disconnected from server

If I try to upload the files individually, it tells me that the file already exists (it does not), so I can choose to overwrite it or rename it (I've tried both)and it says it transferred successfully, but the client cannot find the files on the server and it is reported as 0MB.

Status: Resolving address of FTP.ACD.net Status: Connecting to 207.179.90.222:21... Status: Connection established, waiting for welcome message... Response: 220---------- Welcome to Pure-FTPd [privsep] [TLS] ---------- Response: 220-You are user number 3 of 50 allowed. Response: 220-Local time is now 12:52. 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 15 minutes of inactivity. Command: USER FTPaccess@… Response: 331 User FTPaccess@… OK. Password required Command: PASS Response: 230 OK. Current restricted directory is / Status: Server does not support non-ASCII characters. Status: Connected Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Alternative Energy Magazine November.pdf Command: CWD / Response: 250 OK. Current directory is / Command: PWD Response: 257 "/" is your current location Command: TYPE I Response: 200 TYPE is now 8-bit binary Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,75,96) Command: STOR Alternative Energy Magazine November.pdf Response: 150 Accepted data connection Response: 226-Error during write to file Response: 226 Transfer aborted Error: File transfer failed after transferring 262,144 bytes in 1 second Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Alternative Energy Magazine November.pdf Status: Retrieving directory listing... Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,230,107) Command: MLSD Response: 150 Accepted data connection Response: 226-Options: -a -l Response: 226 140 matches total Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,17,42) Command: STOR Alternative Energy Magazine November.pdf Response: 150 Accepted data connection Response: 226-Error during write to file Response: 226 Transfer aborted Error: File transfer failed after transferring 262,144 bytes in 1 second Status: Starting upload of C:\Users\jparis\Desktop\November 2013 FTP\Alternative Energy Magazine November.pdf Status: Retrieving directory listing... Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,108,244) Command: MLSD Response: 150 Accepted data connection Response: 226-Options: -a -l Response: 226 140 matches total Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,181,113) Command: STOR Alternative Energy Magazine November.pdf Response: 150 Accepted data connection Response: 226-Error during write to file Response: 226 Transfer aborted Error: File transfer failed after transferring 262,144 bytes in 1 second Status: Retrieving directory listing... Command: PASV Response: 227 Entering Passive Mode (207,179,90,222,165,154) Command: MLSD Response: 150 Accepted data connection Response: 226-Options: -a -l Response: 226 140 matches total Status: Directory listing successful

I have uploaded files and folders to the FTP for months exactly the same way without incident. Please let me know if you can help me.

Thank you

#4769 All folder content loads before it is displayed. Bug report normal FileZilla Client rejected
Description

I use Filezilla 3.2.7.1.

  1. I connect to some ftp site.
  2. Then I double click on a folder which contains ~10 000 files.
  3. (Filezilla wants to open the folder and list all files now)
  4. So I get a response:

"Odpowiedź 125 Data connection already open; Transfer starting."

  1. I wait a looong time and nothing happens.

I think that before Filezilla opens a folder, it loads all file names to the memory. If folder has 10000 files, there is a problem.

My suggested solution: ...make some cashe? or load only those file names, which are on the first screen?

Compare: Total commander doesn't have this problem.

#9423 All my passwords were deleted for no reason Bug report normal FileZilla Client rejected
Description

FileZilla turned off the storing of passwords (including ticking the box in settings) which led to me losing all my passwords.

This is what I did:

  1. Use the Site manager as usual.
  2. Connected to site A. Downloaded some files.
  3. Connected to site B, choosed to not use a new tab for the new connection.
  4. Downed and upped some files.
  5. Opened Site manager and renamed one item (site C) in the list on the left.
  6. Tried to connect to site D, was asked to enter password - soon realized all my passwords were gone.

When googling I found this forum thread (https://forum.filezilla-project.org/viewtopic.php?f=1&t=29878&start=15&sid=35e6379be2d519696199a78e6d9dbf14). The same thing happened to me as to the people in the thread. But I did not today and haven't for weeks used the quick connect toolbar.

I realize this is not enough information for anything. And my simple attempt to recreate the problem resulted in nothing. I'm putting this here in hope someone else who is affected by this problem has more information.

My installation of FileZilla is from regular FileZilla update, I don't think there was one very recently.

Heres my system information: FileZilla Client


Version: 3.8.0

Build information:

Compiled for: i586-pc-mingw32msvc Compiled on: x86_64-unknown-linux-gnu Build date: 2014-03-28 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.2.12 SQLite: 3.7.16.2

Operating system:

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

#3046 All sizes aren't remembered.. Tim Kosse Bug report normal FileZilla Client
Description

Maximizing the main window, changing column's sizes - these are things I can do without problems, but as soon as the application is closed and then re-launched again, all those set sizes are gone..

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.