Custom Query (10426 matches)
Results (2701 - 2800 of 10426)
Ticket | Summary | Status | Owner | Type | Priority | Component |
---|---|---|---|---|---|---|
#1491 | Updated Slovenian translation (sl) | closed | Patch | normal | FileZilla Client | |
Description |
Here is the updated Slovenian translation, in sync with the latest pot. |
|||||
#1492 | Updated Slovenian translation (sl) | closed | Patch | normal | FileZilla Client | |
Description |
Here is the updated Slovenian translation, in sync with the latest pot. |
|||||
#1493 | lost UTF8 after close connection | closed | Patch | normal | FileZilla Client | |
Description |
The default value for m_bUTF8 set to true in class's constructor, and set it to false when the server didn't support UTF8. If server support UTF8 by Auto or Force, this value will keep true, but in DoClose(), it will reset to false. After that, next connect won't call constructor again, so this value will always be false. We should change it to true in Connect() to avoid this bug. |
|||||
#1494 | Patchs for adding Desktop folders... | closed | Patch | normal | Other | |
Description |
Hi, First, thank you for FileZilla, my favorite ftp client :D I have make some patchs for FileZilla these days. The following are what I have done. Would you consider adding these new features into next release? I think it is very useful for people using FileZilla
`My Computer', etc)
Computer')
Screenshot: http://moon.cse.yzu.edu.tw/~s922254/applet/FileZilla.2 223-3.png Patch files: http://moon.cse.yzu.edu.tw/~s922254/applet/FileZilla.2 223-3.diff.rar Cole, TW |
|||||
#1495 | problem with desktop location changed by user | closed | Patch | normal | FileZilla Client | |
Description |
If user changed the desktop with Tweak UI(or something else), the desktop location would be wrong. The parameter of SHGetSpecialFolderPath() should be CSIDL_DESKTOPDIRECTORY instead of CSIDL_DESKTOP to get the correct desktop location. |
|||||
#1496 | full-row-select in listview | closed | Patch | normal | Other | |
Description |
Full-row-selection would be useful when check out file information on the right side :p screenshot http://moon.cse.yzu.edu.tw/~s922254/applet/FileZilla.fullrow.png patch files for 2.2.24 http://moon.cse.yzu.edu.tw/~s922254/applet/FileZilla.fullrow.2224.rar |
|||||
#1497 | Arraysort in DirTreeCtrl | closed | Patch | normal | FileZilla Client | |
Description |
Both quicksort and insertsort work incorrectly :X Quicksort sorts [1,5,7,6,3,2,4] into [1,2,3,6,]4[5,7]. I have re-written it :p And the sorting result in FileZilla is kind of different in Windows Explorer with some Chinese words. I think it may be the problem of CollateNoCase(), but I don't know how to solve it :( |
|||||
#1498 | transfer queue didn't save server's UTF8 value | closed | Patch | normal | FileZilla Client | |
Description |
When exit FileZilla, save QueueItem, the server's UTF8 value didn't save to file, so next time, we won't know the server of the file is support UTF8 or not. This patch will fix this problem. |
|||||
#1499 | FileZilla didn't remember maximized status at beginning | closed | Patch | normal | FileZilla Client | |
Description |
be maximized.
normal window, not a maximized window. This patch will fix this problem. |
|||||
#1500 | sometimes, FZ don't ask for overwrite, just resume it | closed | Patch | normal | FileZilla Client | |
Description |
I'm not sure this is a bug in original FZ or not, because I didn't meet this problem when I use the build download from sourceforge site. But in my personal build, I've this problem sometimes. Sometimes, when I add a file for transfer from local to remote site, if there is a file with same filename exists, FZ will won't ask me to overwrite it or resume it (My setting is Ask in option). I trace this problem for a long time, finally, I found, sometimes, in CQueueCtrl::SetProgress(), it will set bTransferStarted to true if pTransferStatus->bFileTransfer is true. then, bTriedAutoResume will be true, then the file will be resume. If this happen when we've file already in queue, need to transfer, yes, no problem. But, if it happen, set bTransferStarted to true, but there is no file in transfer state, that will cause the problem I meet. After trace the code, I found bFileTransfer flag will set to true in CTransferSocket::UpdateStatusBar() if m_nTransferState is STATE_STARTED. then FZ will set bFileTransfer to true always. But, there are some code will call UpdateStatusBar(), this problem will happen if CTransferSocket::CheckForTimeout(), if we just set m_nTransferState to STATE_STARTED, then FZ will post a message, then start to transfer it, during the time,from the time we set it to STATE_STARTED to the time the file start transfer, if we call CTransferSocket::CheckForTimeout() again, then bFileTransfer will set to true before we really start the transfer. so this file will be consider already in transfer state, it should be auto resume, not ask us to choose the action. My patch will fix this problem, just change the code in
bFileTransfer to true if the is really in transfer state.
|
|||||
#1501 | Transfer file with folder in GeeXbox's bftpd | closed | Patch | normal | FileZilla Client | |
Description |
GeeXbox's bftpd will return 421 if CWD folder failed. FileZilla will retry to CWD always. This patch will try to use MKD command even CWD get 4xx code. |
|||||
#1502 | Add an option to hide local hidden files | closed | 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.
|
|||||
#1503 | Implement friendly byte counts | closed | Patch | normal | FileZilla Server | |
Description |
Code to display, eg, "200000" as "200,000", and code to alternatively display it as "195Kb" (it switches on an option boolean which is of course never set, as FileZilla Server currently does not have such an option). This is to implement my RFE [ 1558084 ] Comma-separated byte counts http://sourceforge.net/tracker/index.php?func=detail&aid=1558084&group_id=21558&atid=372244 |
|||||
#1504 | Add two more commandline arguments to FAQ doc | closed | 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
file without prompting (for automated and script use). /close
upload is complete (for automated and script use). |
|||||
#1505 | Fix outgoing port on data connections in active mode | closed | Patch | normal | FileZilla Server | |
Description |
This patch addresses the problem described in the bug report [ 1575413 ] Active mode data connection is made from the wrong port. |
|||||
#1506 | UTF-8 patch for FileZilla3's sftp mode | closed | Patch | normal | FileZilla Client | |
Description |
This patch allow force UTF-8 option in FileZilla3's sftp mode. |
|||||
#1507 | fix FZ3 sftp upload/download directory | closed | Patch | normal | FileZilla Client | |
Description |
Create local/remote directory in sftp mode when the directory not exist. |
|||||
#1508 | let FZ3 create empty directory also | closed | Patch | normal | FileZilla Client | |
Description |
When we try to transfer whole directory, empty directory won't be created in FZ3. This patch will let FZ3 create directory even it is empty. |
|||||
#1509 | Nepali Translation | closed | Patch | normal | FileZilla Client | |
Description |
I am attaching Nepali translation for filezilla 3 in .gz format. Please accept the file. Thanks, Subir |
|||||
#1510 | Updated Nepali Translation | closed | Patch | normal | Other | |
Description |
Updated Nepali Translation from the latest POT file. |
|||||
#1511 | "Users" table in "Users" window correction. | closed | Patch | normal | FileZilla Server | |
Description |
"Users" table in "Users" window has been moved at left side from all. Remaining stuff moved by 93 pixels to the right. Button "OK" moved few pixel higher, that be on higher distance from the button "Cancel". Users list table maked bigger height. Help strings are maked shorter, sorry, that was possible to avoid, but better by another patch ... |
|||||
#1512 | IDR_MAINFRAME accelerator remove. | closed | Patch | normal | Other | |
Description |
The IDR_MAINFRAME accelerator blocks work of ordinar Ctrl+C copy operation. Recommended : remove it fully. No any references from .cpp files to it I found. In .diff a relative to it string tables are removed too. |
|||||
#1513 | "Users" table in "Users" window, version 1 | closed | Patch | normal | Other | |
Description |
Same as before. Buttons OK, Cancel are moved to empty place. Tab "Users" maked full height of dialog box (some users may fill it full easy, I think). |
|||||
#1514 | FZ2 VS2005 compile fix | closed | Patch | normal | FileZilla Client | |
Description |
This fixes the following VS2005 compile error on the misc/HyperLink.* files: Error 1 error C2440: 'static_cast' : cannot convert from 'UINT (thiscall CHyperLink::* )(CPoint)' to 'LRESULT (thiscall CWnd::* )(CPoint)' d:\development\temporary\filezilla\filezilla\source\misc\hyperlink.cpp 71 |
|||||
#1515 | Fix serverpath autodetect | closed | Patch | normal | FileZilla Client | |
Description |
This fixes partially bug [ 1690530 ] Paths without leading '/' character won't work in FTP/SFTP. Current code in CServerPath::SetPath() will think that: "AAAA/" is a DOS path while "aAAA/" is a UNIX path, while both of them should be detected as UNIX paths, because DOS path requires ':' in the path, which neither of these have. |
|||||
#1516 | New icons | closed | Patch | normal | FileZilla Client | |
Description |
Hi around, you do a pretty good job and I often use your program! :) But as I tested your beta for 3.0, I saw that you still use the old squared icon. I thought about something web2.0-like and created a set of icons for you - hope you like it! I created them with the gimp and saved every layer in a xcf-gimp-file, so that it can be changed in any direction (So it is GPL-compatible :) - all sources available) I thought of creating a squared one (with similiar look), too - you'll here from me, if I created them. :) |
|||||
#1517 | Stratus VOS listing support | closed | Patch | normal | FileZilla Client | |
Description |
This is a patch for Stratus VOS. I've tested it in my own servers, sadly I can't find any public VOS Server for testing but you can see some documentation here http://stratadoc.stratus.com/vos/16.2.0/r098-13/wwhelp/wwhimpl/js/html/wwhelp.htm?context=r098-13&file=lr098-13c.html |
|||||
#1518 | remember UI position for FZ3rc1 | closed | Patch | normal | FileZilla Client | |
Description |
this is a patch for filezilla 3.0 rc1 to remember the UI position and size. |
|||||
#1519 | keepalive for FZ3rc1 | closed | Patch | normal | FileZilla Client | |
Description |
This patch allow FileZilla 3 RC1 enable the keepalive function for FTP. No option setting now, it will always enable keepalive for FTP, randomly send command every 30-60 seconds. SFTP in FZ3 seems already with keepalive, so I just add this for FTP. (It's easy to enable it for another protocol, just modify the KeepAlive() for protocol's ControlSocket.) |
|||||
#1520 | (Repeated) action after queue completion | reopened | Other | normal | FileZilla Client | |
Description |
This patch lets users do various actions after queue completion. It is accessed by right-clicking on the "Queued files" frame and implements the following functionality from RFE# 1707774:
This initial version is not properly tested on various systems, and should not be applied before more bug testing. It's posted here to get feedback on patch quality, and if I'm on the right track with this. More information will be posted on the already mentioned RFE. |
|||||
#1522 | Fench translation - Fz 3.0 | closed | Patch | normal | FileZilla Client | |
Description |
For Filezilla 3.0 : I corrected a lot of translations, accents, incorrectly spelt words or translations. |
|||||
#1523 | fr_FR.po update for FileZilla-3.0.0 | closed | Patch | normal | FileZilla Client | |
Description |
Everything is in the title .... Anyhow the preceeding translation file was quite complete. But it contained several typos, erroneous translations, no respect of the FR conventions for the special characters (! ? : " and …)... I hope this version can be used, as I always try to take a lot of time to verify that it is correct (and in line with the other translations). BTW I created a RPM file for Fedora 7. Spec file is available here: http://rpmfarm.free.fr/7/i386/SPECS.farm/filezilla.spec RPM and SRPM will be available here ASAP (because I can not access my "ftp" server from my work - even with filezilla !!!): http://rpmfarm.free.fr/7/i386/RPMS.farm/filezilla-3.0.0-1.EL.fc7.i686.rpm http://rpmfarm.free.fr/7/i386/SRPMS.farm/filezilla-3.0.0-1.EL.fc7.src.rpm |
|||||
#1524 | show server information in window title | closed | Patch | normal | FileZilla Client | |
Description |
show current connected server information in window title. |
|||||
#1525 | configure assumes that wxrc is named wxrc | closed | Patch | normal | FileZilla Client | |
Description |
configure assumes that the program wxrc is named wxrc and it doesn't check wx-config for it |
|||||
#1526 | GetPathEllipsis() | closed | Patch | normal | FileZilla Client | |
Description |
This function takes excessively large path strings in the "File already exists" dialog box and removes characters from the middle of the path until its short enough, and replaces the middle with an ellipsis. also updated fileexistsdlg.h with the prototype. |
|||||
#1527 | Pointer comparison using < and > is gcc-specific | closed | Patch | normal | FileZilla Client | |
Description |
In the source file src/putty/timing.c in FileZilla 3.0.4 (apologies here that I haven't got the CVS version...), there is code specific to only lcc around line 44 onwards. In fact, it's likely to apply to all non-gcc compilers, because pointer comparison using "<" and ">" operators appears to be a gcc-specific extension. Hence, this patch simply widens the lcc check to include all non-gcc compilers instead. By doing this, it allows the source file to compile using HP's ANSI C compiler on HP-UX 11. There could be an argument to actually ditch the gcc-only version too and use the generic one, but that's up to you... |
|||||
#1528 | Bypass proxy settings feature | closed | Patch | normal | FileZilla Client | |
Description |
Hi, the bypass proxy feature was really useful to me in version 2.x but was lost in the version 3.x So here are the patches that made this feature "alive" again. I build the patched filezilla under mingw (cygwin) and all works fine. Cheers, Paolo PS. thanks guys for this very good tool. |
|||||
#1529 | New FTP Sub-Category in the "Connection" Dialog | closed | Patch | normal | FileZilla Client | |
Description |
Added a FTP category in the optionsdialog which contains the whole FTP Settings. |
|||||
#1530 | Handling DEL key in queue window | closed | Patch | normal | FileZilla Client | |
Description |
Hi, here is a patch to let delete a selection in queue window just through DEL key (I simply made a copy of your previous change to LocalView window). Cheers, Paolo. |
|||||
#1531 | Added file exist actions | closed | 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:
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. |
|||||
#1532 | socket.cpp and win2000 compatibility problem | closed | Patch | normal | FileZilla Client | |
Description |
Hi, I've seen the workaround you placed on top of socket.cpp ( MinGW needs this for getaddrinfo) in order to have filezilla compiling under mingw. Unfortunately this is only an half workaround, I mean, in this way the program compiles perfectly but it doesn't work under win2000; defining _WIN32_WINNT as 0x501 means WinXP. On win2000 WS2_32.dll doesn't include function getaddrinfo and freeaddrinfo so, when you try to run filezilla you only got en error window telling you that getaddrinfo is not available in WS2_32.dll. Here is a patch (based on rev. 2434) that adds an include file (wspiapi.h) that redefines the functions that are unavailable under win2000. Cheers, Paolo. |
|||||
#1535 | Feature suggestion: update only if newer | closed | Feature request | normal | Other | |
Description |
I have been gladly impressed by FileZilla. I'd never found an ftp program so good... and it is even better considering its wonderful price ;). There is a feature that I have been looking for from long time ago in an ftp program that I haven't found yet. I think it could be a great complement for FileZilla. This is a "backup mode". I think it could be very helpful for webmasters with slow dial-up connections like me that want to make backups of our websites, but without wasting the time of downloading all the files that haven't changed since the last backup. It could be implemented as a new feature or simply as a new option in the dialog box that appears when a downloaded file is already in the local computer. In addition to the current "Overwrite", "Rename" and "Skip" options, this new button could be called something like "copy only if newer". |
|||||
#1539 | More control of file transfer | closed | Feature request | normal | Other | |
Description |
I've seen other softwares doing this, is it possible to control the transfer speed, both download and upload? This feature already exist in LeechFTP, NetAnts, GoZilla, FlashGet, etc. |
|||||
#1540 | More than one download | closed | Feature request | normal | Other | |
Description |
Hi, great Program so far, but one improvement would be nice: Is it possible to add functionality to download/upload more than one file at a time?? Like in leechftp. (www.leechftp.de) There are up to 16 threads for transfers. This speeds up transfer sometimes. Would be nice.. greetz hackman 2001 |
|||||
#1541 | CHMOD of a group of files and/or dirs | closed | Feature request | normal | Other | |
Description |
Ver 1.3 doesn't allow to change the CHMOD of a selected group of files and/or directories, you can only CHMOD one by one. Please allow that in the next release. Thanks for this great program! |
|||||
#1544 | Last Connected Site on Site Manager | closed | Feature request | normal | FileZilla Client | |
Description |
As with everyone else who has posted on this forum, I agree, your program is amazing! Seriously nice work! Two features that I think would be nice is to have the site manager, instead of having a default site, remember the last site you connected to via the site manager. And finally, it would be cool if instead of a list box, the site manager was a tree view that allowed you to categorize the sites into directories. Keep up the great work Tim! FileZilla is awesome. |
|||||
#1545 | Queue-level Overwriting | closed | Feature request | normal | Other | |
Description |
When I drag multiple files to be uploaded or downloaded, it would be nice to be able to select an action (such as overwriting, resuming, skipping, etc.) that will apply to only those files selected. Instead, now if I select Overwrite and check "Always use this action when a file already exists" I have to restart the program in order to see the "File already exists" window again. Does that make sense? |
|||||
#1549 | Clipboard entry parsing | new | Feature request | normal | FileZilla Client | |
Description |
Hi. First off, your work really kicks ass =) It's a great replacement for WS_FTP, CuteFTP and all that other commercial crap. But i miss one feature though: When i have some ftp address in the windows clipboard, CuteFTP for instance parses this information and automatically connects to the server. Or the browser integration thing would also be a great feature. Then it would REALLY replace the commercial crap.. =) Good luck.. |
|||||
#1555 | Connect to default site on startup | closed | Feature request | normal | Other | |
Description |
Nice program, replaced my CuteFTP on the day I got it =) It would be nice to have an option to let the program to connect to the default site on startup, rather than bringing up the site manager and pressing "connect" each time. |
|||||
#1557 | show percentage of transfers in system tray | new | Feature request | normal | FileZilla Client | |
Description |
Hi, i would like to see the percentage of an active transfer in the system tray and some 'mouseover',"What's this ?" or "TollTipText" quickhelp for the toolbar ( whatever you call it ). Funny how SourceForge pickes exactly the right category :-) nice FTP-Client so far ! |
|||||
#1558 | move files within remote area | closed | Feature request | normal | Other | |
Description |
It would be nice if has feature to move files on current directory view to any folder that visible or to parent directory by dragging selected file and drop over directory name or icon... |
|||||
#1559 | move files within remote area | closed | Feature request | normal | Other | |
Description |
It would be nice if has feature to move files on current directory view to any folder that visible or to parent directory by dragging selected file and drop over directory name or icon... |
|||||
#1560 | Copy URL to clipboard | closed | Feature request | normal | FileZilla Client | |
Description |
Keep up the good work! 'Copy URL to clipboard' (as a button) will be a good thing for wintegration with download managers! |
|||||
#1561 | Compiling error?? | closed | Feature request | normal | Other | |
Description |
D:\FileZilla\FileZilla\source\stdafx.h(25) : fatal error C1083: Cannot open include file: 'htmlhelp.h': No such file or directory Compiling error?? |
|||||
#1562 | Changing Password | closed | Feature request | normal | Other | |
Description |
Something that I find that not to many clients have is the ablity to change your password. I only know of one client so far. I think this would be an ablity that would be valuable. The command to change your password if it is not to well know is: SITE PSWD "OldPassword" "NewPassword" |
|||||
#1563 | FTP Searching | closed | Feature request | normal | FileZilla Client | |
Description |
I find that went browsing FTP sights for file can be very time consuming and lengthy. The ablity to search a FTP sight is a valuable one. SITE INDEX filename.ext SITE INDEX *.txt SITE INDEX filename.* |
|||||
#1564 | Duplicate timestamp of downloaded files | closed | Feature request | normal | Other | |
Description |
The remote sites I've encountered are notoriously bad at keeping their system clocks accurate. Although my local Windows clock may be correct, I cannot use the "Overwrite if newer" feature with the mismatch between the remote's site clock and my local clock. I propose adding an unix-like touch feature to the code to synchronize the timestamp of the downloaded file with that of the file on the remote ftp site. In this way the files downloaded will use the timestamp of the ftp site regardless of when they are downloaded, and use of the "Overwrite if newer" feature will be enhanced. For the GNU licensed code of a touch for windows see: http://guesswork.org/software/wtouch/ and see the attached upload Keep up the great work, FileZilla is the best! |
|||||
#1565 | custom welcome message | closed | Feature request | normal | Other | |
Description |
it would be great to have a custom welcome message for the filezilla server to give the user a few informations about the system or the max. number of possible connections. thx :) |
|||||
#1566 | set passive mode for each site. | closed | Feature request | normal | Other | |
Description |
I want to set whether using passive mode for connecting the ftp server. each time I need to go to setting page to change it among login to different sites. thank you |
|||||
#1567 | Choose password for anonymous login | closed | Feature request | normal | Other | |
Description |
It would be nice to be able to set the password sent to remote server when doing anonymous logins. However, the default anon@<local address> is fine for most sites |
|||||
#1568 | Choose font for message log window | closed | Feature request | normal | Other | |
Description |
Currently the message log window has a font the user cannot change, Arial I think. But it would be nice to be able to change it, for example to a fixed width font. |
|||||
#1569 | Remove from Queue | closed | Feature request | normal | Other | |
Description |
In the remote window an additional menu-item on the right mouse button pull-down menu "Remove Frome Queue" would edit out any entries from the queue having the path of the selected directory (or file), mark, the directory (or file) as having been excluded in the remote window and prevent the opening that directory. This would be a time saver over having to remove items from the queue manually and allow the user to select a secific branch from a directory tree and then prune away any unwanted sub-branches easily. thanx Jeff Peters |
|||||
#1570 | Column Widths Not Saved | closed | Feature request | normal | Unknown | |
Description |
FileZilla does not save the widths of columns in either the remote or local panes. Every time I restart FileZilla and connect it sets the column widths back to default. And the default wastes tremendous space in the date, time, and permissions columns, resulting in horizontal scroll bars. Every time I have to manually change the column widths back, which is annoying. This has been around since 1.6 or before, and it doesn't seem like it should be hard to add. It would be VERY helpful. |
|||||
#1571 | Toolbar and QC Bar on Same Line | closed | Feature request | normal | Unknown | |
Description |
It would be very nice if the toolbar and quick connect bar could be on the same line, like Windows does with toolbars in Explorer and Internet Explorer. On high- resolution screens there is a lot of wasted space next to the toolbar, and the QC bar would fit in that space just fine. As it is now I don't even display the QC bar because it takes away valuable space in other parts of FileZilla. |
|||||
#1572 | Show hidden files (.) | closed | Feature request | normal | Other | |
Description |
It would be really nice to add a "show hidden files" option that shows files beginning with a dot so for example I could manage my .htaccess files with that. |
|||||
#1573 | Drag n Drop support on connected server. | closed | Feature request | normal | Other | |
Description |
It would be nice if you could drag and drop files and folders within the remote file list. |
|||||
#1574 | Site Manager Drag and Drop | closed | Feature request | normal | Unknown | |
Description |
A really handy new feature would be the ability to drag and drop the different ftpsite into different folders. What do you think? |
|||||
#1575 | a few small things | closed | Feature request | normal | Other | |
Description |
Hi guys, great work Here's a few things I noticed in the couple of hours I've been using the program and I'd like to see (preferably all implemented as options rather than as hard-coded settings)
double-clicking action on a local file? I do this and I expect to view it but FileZilla tries to upload it
files immediately update? When I upload/download the new file size is shown as 0 or ??. It would be better if it would automatically register the copied file's size
sizes in Mb are not very helpful
password rather than showing . I am the only one using my machine at home and it is annoying trying to remember what the password was when I need to get the site details
suppose...) The Host textbox on the site manager appears to be disabled-like. You cannot copy from it and the cursor does not blink when you focus on it.
connection alive could be shown in different color to the ones initiated by the user. For that matter, you could extend this to all the commands issued by the program Thank a lot! |
|||||
#1576 | ... and a few more while I'm at it | closed | Feature request | normal | Other | |
Description |
Hello again, Have been playing with the program a little more since the last message and would like to ask for the following:
to a site. Similarly, choose a sound to play for disconnecting and for completing an ftp session
pressing DEL will erase the currently selected site even if all you wanted to do was to delete a character when editing one of the fields. Deleting a site should only be executed if the site tree has focus
should display the name of the site instead of "FileZilla version xxx" (or at least have it somewhere on the title)
aplhabetically, but they should appear at the top of the list, before individual site entries. Also, have an option to sort or not sort the entries
is not possible to drag existing entries into it, so I have to manually copy them - not convenient really Once again, thanks for this great program - I'll probably be back for more wishes... |
|||||
#1577 | ...... here I go again | closed | Feature request | normal | Other | |
Description |
Well, further on with my adventures I noticed the following:
on the transfer rate of that particular instance and as a result it jumps up and down wildly, at least in the early stages. Averaging the transfer rate of the last, say, 5 seconds would make it look more smooth
some text space for each site where one could simply record a few notes? Thanks |
|||||
#1578 | ...... here I go again | closed | Feature request | normal | Other | |
Description |
Well, further on with my adventures I noticed the following:
on the transfer rate of that particular instance and as a result it jumps up and down wildly, at least in the early stages. Averaging the transfer rate of the last, say, 5 seconds would make it look more smooth
some text space for each site where one could simply record a few notes? Thanks |
|||||
#1579 | Compare remote and local directories | closed | Feature request | normal | FileZilla Client | |
Description |
A command for compare local and remote directories will be usefull. Such a comparison may be limited to the files size. |
|||||
#1580 | Use more than one ftp proxy | closed | Feature request | normal | Other | |
Description |
I work for more than one customer and I have to use a different ftp proxy for each one. Is is really boring and prone to mistakes changing the settings each time. The ability to use a differnt proxy for each connection would be usefull in my case. If the effort is small and enough people are interested it would be a nice inprovement :-) |
|||||
#1581 | An option to leave a desktop shortcut | closed | Feature request | normal | Unknown | |
Description |
I've tried tons (well, mb's)of ftp clients, I'm currently using 1.8 version, the one that has the slight refresh problem, Well to get to the point. I would think it great option to be able to have at the users request, a desktop shortcut for a particular ftp account, ie. ftp.netscape.??? on the desktop to auto open that site when clicked or ftp.mydomain.com, to open my personal domain directory. Thanks, Mercedes Lopez |
|||||
#1582 | Automatic subdirectory support | closed | Feature request | normal | FileZilla Client | |
Description |
I think a really killer feature would be to add a Dreamweaver-like automatic subdirectory support. Dreamweaver allows you to view the content under the site root in a tree-view fashion. When you choose to upload a file, it automatically uploads the file in the corresponding directory in the remote site directory hierarchy. I'm telling this because I'm dealing mainly with applications. I upload lots of asp, php and java files but don't need Dreamweaver editing features. I'm almost forced to use it because no other app I know supports it. I think FileZilla offering that could be a real killer app. |
|||||
#1583 | up-dir Button | closed | Feature request | normal | FileZilla Client | |
Description |
It would be very nice to have a "up-dir" button next to local site and remote site label. If you click this button you will get to the parent directory (same as "cd .."). |
|||||
#1584 | site management | closed | Feature request | normal | Unknown | |
Description |
Make the ability to move sites from one subfolder to another in the site manager. |
|||||
#1585 | Possibility to view files | closed | Feature request | normal | Other | |
Description |
It would be really useful for me to have a way of viewing a file directly in FZ. Maybe a selection in the pop-up menu for 'View file'. This could either send the file (through a temp- directory or something) to windows default file- viewer, or an editor of the users choice, or just a very simple text-viewing window. This would save me alot of time, and is a real showstopper for us. Thank you in advance. |
|||||
#1586 | display hidden files option | closed | Feature request | normal | Other | |
Description |
it would be nice if filezilla would support this feature. in sitemanager there should be an option to display files starting with . for every ftp entry like .htaccess (those files are invisible on unix machines) it's not possible to delete these files or directories with include such a file with filezilla. |
|||||
#1587 | Filezilla Sever - Run as a service | closed | Feature request | normal | Other | |
Description |
It would be great if Filezilla Server could run as a service. |
|||||
#1589 | Connection retries | closed | Feature request | normal | FileZilla Client | |
Description |
Connection retry count and delay in settings would be nice. Nice work, anyway. Giedrius |
|||||
#1590 | Timezone settings | closed | Feature request | normal | FileZilla Client | |
Description |
In Site Manager in the Site Details group there should be a way to specify the time zone of the server. Also under general settings you should be able to specify the time zone of the client. This way the time offset can be calculated and timestamps can be properly checked to see if you are overwriting a newer file. An alternative implementation would be to specify the time offest directly in Site Details. |
|||||
#1591 | Automatic Folder Subtree Synchronization | new | Feature request | normal | FileZilla Client | |
Description |
A command that synchronizes a local with a remote folder would be neat. Time zone settings would be needed for this in order to properly compare timestamps. See request 542700 for time zone settings. |
|||||
#1592 | Disconnect when transfer complete | closed | Feature request | normal | FileZilla Client | |
Description |
I'm often away from my computer when a long file transfer is happening, but I don't like sitting idle after long transfers are complete and idling out, or staying online sending keepalive commands. Could an option be added in the Queue or Transfer menus to automatically disconnect from the server when the queue has finished been processed? Naturally, the default would be off. \/\/\/ |
|||||
#1593 | displaying SSL encryption key length | closed | Feature request | normal | FileZilla Client | |
Description |
Hi, it would be very nice if FileZilla, will be display the SSL encryption key length, e.g. 40, 56, 128 Bit. So the user is able to check the strengthen of the encryption. Regards Michael |
|||||
#1594 | Support for SSH tunnelled ftp. | closed | Feature request | normal | Other | |
Description |
Could I suggest that the FileZilla Client ignores the IP address returned by an FTP server in response to the PASV command, and just uses the port number returned with the original IP address for the connection? Or that this is at least an configuration option?? This would enable to use SSH port forwarding to connect to an ftp server behind a firewall in passive mode with all traffic encrypted. (This does assume that the ftp server concerned has a small defined range of ports it uses for passive mode.) eg, Suppose I have a SSH link between Box A and Box B, with port 21 and the defined range of passive ports port forwarded from A to B (ports 4096-5000 say). Suppose Box B has an internal IP address of 192.168.3.47. On Box A, if I connect to 'localhost:21', everything is fine until the PASV command, when Box B returns: 227 Entering Passive mode (192,168,3,47,16,0). If FileZilla ignored the IP address returned, and just used the IP address of the original connection (in this case 127.0.0.1) with port 4096 (as returned by the passive command) then everything would be really cool, and ftp over a ssh forwarded connection would work! Rasjid. |
|||||
#1595 | Remote directory tree | closed | Feature request | normal | Other | |
Description |
It is possible to implement a remote directory tree same of local tree? |
|||||
#1596 | 8 Improvements/Perspective of WSFTP User | closed | Feature request | normal | FileZilla Client | |
Description |
Although FileZilla is a superior program to WSFTP in many ways, for the meantime I'm going to stick with WSFTP for a while. However, FileZilla shows so much merit that I thought I should take the time to point these issues out to you:
Thanks for taking the time to listen. I know it sounds like what I want is WSFTP, but I'm in the process of leaving all "pay" software behind. And FileZilla looks like it has the most merit by far. It's hard to believe that it all fits in 1.1mb. |
|||||
#1597 | Queue, drag&drop | new | Feature request | normal | FileZilla Client | |
Description |
Hi! It wold be good, if I could drag&dropp URL -s from other programs (eg. internet explorer) into queue. It wold be good, if URL could be pasted from clipboard to queue. It wold be good, if fileorder in queue could be changed. Regards:
|
|||||
#1598 | rename in remote site manager | closed | Feature request | normal | Other | |
Description |
It would be very handy to be able to rename a remote site in the site manager. |
|||||
#1599 | SSL for FileZilla Server | closed | Feature request | normal | FileZilla Server | |
Description |
Please add SSL to the filezilla server !!! |
|||||
#1600 | Time Completed/Stopped to message log | closed | Feature request | normal | FileZilla Client | |
Description |
Downloading 3 linux ISOs = 3 * 650Mb. Connections timeout and stop. 1) Can current time on (local box) client be added to the stopped/timeout or completed message to the message log, so that I can tell how long ago the work stopped? 2) Also I agree with connection retries feature request #540935. More control of connection resumption would be great. Also time lapse between reconnect attempts would be nice. FYI: I am using FileZilla 1.9.3 -Nathaniel |
|||||
#1602 | Urgent Dialog Box connection timesout | closed | Feature request | normal | FileZilla Client | |
Description |
I like FileZilla in the background, but I need an "Urgent Message" dialog box to pop-up to the front, when the connection timesout, or file/que download finishes. Timeouts need a complete fix (see other's recommendations), but an optional dialog box would reduce my surprise that I had not noticed timeouts. 0) Dialog that pops up to front of current app on top. 1) Make ONLY optional! (but useful e.g., 650Mb ISO downloads, select "urgent message" dailog box) 2) If the FTP clears status and reconnects after a e.g., 30 second wait, clear the dialog box, to avoid thousands of boxes. 3) Don't spawn a new dialog box each time a problem occurs, 1000 dialog boxes is a hassle. Create one, and update it if need be. e.g., "Connection timeout: 7th timeout on 3:30:23s PM, Tuesday, April 23, 2002." and best yet, "Download complete: 7:32:41s PM, Tuesday, April 23, 2002" -Nathaniel |
|||||
#1604 | Edit files on a FTP-site directly | closed | Feature request | normal | Other | |
Description |
I would like to be able to right-click from within FileZilla and then select "edit file" thereby opening the relevant editor. When my editing is finished the edited file will automatically be uploaded to the FTP-site. |
|||||
#1605 | optionally show passwords in Site Manager and in Quickconnect | reopened | Feature request | normal | FileZilla Client | |
Description |
I would like to have an option to NOT hide the passwords in sitemanager. I know this is a security risk and of course the default should be hidden, but in my case my accounts are not that super classified. By showing passwords in the sitemanager I will have a "personal database" (or address book if you like) of my ftp- accounts, and if I need to use another program or in any other way use an account outside of FileZilla, I can always look to FileZilla for the correct account-information. Otherwise I would have to look for the account-information in mails, hardcopies from ISPs, ICQ messages - u name it. |
|||||
#1606 | WS_FTP Import | new | Feature request | normal | FileZilla Client | |
Description |
The ability to import all of my account settings from WSFTP to Filezilla would make the transition a whold lot easier. Thanks again for great software! |
|||||
#1607 | Multi-theaded upload | closed | Feature request | normal | Other | |
Description |
To upload as quickly as possible (reducing the telephone bill), please provide the ability to upload several files (eg 5) concurrently. Similar to LeechFTP (abandonware). Thank you |
|||||
#1608 | cut, copy, and paste | new | Feature request | normal | FileZilla Client | |
Description |
I would like to see the ability to cut, copy, and paste files between both, local and remote directories. Accordingly, cut/copy/paste icons should appear in the toolbar and in the right-click (drop-down) menu. If this feature is ever implemented, then FileZilla would become, for my uses, a replacement for Windows Explorer. |
|||||
#1609 | FileZilla Client | closed | Feature request | normal | FileZilla Client | |
Description |
Two feature request! Integration/Remote File Editing Make on-the-fly changes to your documents without having to download your file. Right-Click Change File Attributes (CHMOD) Brings up a graphical user interface for easy modification of file attributes. Thank you very much! Thank you very much! Thank you very much! |
|||||
#1610 | save setting in a file | closed | Feature request | normal | Other | |
Description |
I think it would be better to save the setting and ftp configuration in a file instead of in the registery |