How to Delete a domain in the Quick Connect??

Need help with FileZilla Client? Something does not work as expected? In this forum you may find an answer.

Moderator: Project members

Post Reply
Message
Author
ragweed
500 Command not understood
Posts: 1
Joined: 2009-07-04 11:12
First name: Joseph
Last name: Snurr

How to Delete a domain in the Quick Connect??

#1 Post by ragweed » 2009-07-04 11:31

I misspelled a connection in the Quick Connect, in v3.2.6.1, and now I'd like to delete that entry.

While I've looked everywhere, I didn't seem to find how to delete that entry. Can someone give me step by step directions on how to do this.

Thanks,

Joseph

User avatar
botg
Site Admin
Posts: 35555
Joined: 2004-02-23 20:49
First name: Tim
Last name: Kosse

Re: How to Delete a domain in the Quick Connect??

#2 Post by botg » 2009-07-04 12:06

Simply delete all.

harpervideo
500 Command not understood
Posts: 2
Joined: 2009-07-07 16:07
First name: Ron
Last name: Harper

Re: How to Delete a domain in the Quick Connect??

#3 Post by harpervideo » 2009-07-07 16:09

Me too.
I dont want to delete all of them, just the misspelled ones. Can that be done?

jdratlif
226 Transfer OK
Posts: 392
Joined: 2008-12-30 10:30
First name: John
Last name: Ratliff
Location: In a small white padded room.

Re: How to Delete a domain in the Quick Connect??

#4 Post by jdratlif » 2009-07-07 23:29

No, that is not possible.
http://jdrrant.blogspot.com/ - CODEpendent Blog

Cypress
226 Transfer OK
Posts: 121
Joined: 2008-09-13 19:39
First name: J

Re: How to Delete a domain in the Quick Connect??

#5 Post by Cypress » 2009-07-08 00:01

jdratlif wrote:No, that is not possible.
It is possible you just have to do it yourself via file editing.

Start -> Run
Type: Application Data\FileZilla
Click OK.

Should pop up windows explorer showing FileZilla's xmls.

Open "recentservers.xml" with notepad or an editor of your choice.

It will look like this in notepad:

Code: Select all

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<FileZilla3>
    <RecentServers>
        <Server>
            <Host>hi!=bye</Host>
            <Port>21</Port>
            <Protocol>0</Protocol>
            <Type>0</Type>
            <Logontype>0</Logontype>
            <TimezoneOffset>0</TimezoneOffset>
            <PasvMode>MODE_DEFAULT</PasvMode>
            <MaximumMultipleConnections>0</MaximumMultipleConnections>
            <EncodingType>Auto</EncodingType>
            <BypassProxy>0</BypassProxy>
        </Server>
        <Server>
            <Host>tyues</Host>
            <Port>21</Port>
            <Protocol>0</Protocol>
            <Type>0</Type>
            <Logontype>0</Logontype>
            <TimezoneOffset>0</TimezoneOffset>
            <PasvMode>MODE_DEFAULT</PasvMode>
            <MaximumMultipleConnections>0</MaximumMultipleConnections>
            <EncodingType>Auto</EncodingType>
            <BypassProxy>0</BypassProxy>
        </Server>
    </RecentServers>
</FileZilla3>
1. To delete a server find it by its host name then select everything from <Server> to </Server> for it. (Including the <Server> tags)
2. Simply press delete.
3. Clean up the format. (Make it look like the orignal did.. the identation style, no blank lines..)

Example I deleted server tyues:

Code: Select all

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<FileZilla3>
    <RecentServers>
        <Server>
            <Host>hi!=bye</Host>
            <Port>21</Port>
            <Protocol>0</Protocol>
            <Type>0</Type>
            <Logontype>0</Logontype>
            <TimezoneOffset>0</TimezoneOffset>
            <PasvMode>MODE_DEFAULT</PasvMode>
            <MaximumMultipleConnections>0</MaximumMultipleConnections>
            <EncodingType>Auto</EncodingType>
            <BypassProxy>0</BypassProxy>
        </Server>
     </RecentServers>
</FileZilla3>

User avatar
boco
Contributor
Posts: 26934
Joined: 2006-05-01 03:28
Location: Germany

Re: How to Delete a domain in the Quick Connect??

#6 Post by boco » 2009-07-08 01:52

Start -> Run
Type: Application Data\FileZilla
Click OK.
Type: %APPDATA%\Filezilla
No support requests over PM! You will NOT get any reply!!!
FTP connection problems? Please read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
FileZilla Pro support: https://customerforum.fileZilla-project.org

harpervideo
500 Command not understood
Posts: 2
Joined: 2009-07-07 16:07
First name: Ron
Last name: Harper

Re: How to Delete a domain in the Quick Connect??

#7 Post by harpervideo » 2009-07-08 21:04

Genius! :P
Thanks!!

Post Reply