Cute FTP Error - Page 2
Register

We are the best invite forum on the internet! Here you will find free invites, free seedboxes, free bonuses, and much more. Our members know the true meaning of sharing and have created a truly global bittorent community! Our site has the most up to date information on all private trackers and our members will guide you and introduce you to this truly secretive and enlightened club. Ready to get started? Register now!


Page 2 of 2 FirstFirst 1 2
Results 11 to 18 of 18

Thread: Cute FTP Error

  1. #11

    Join Date
    Apr 2012
    Posts
    64

    Default

    win 7 I've also got avast av and I've forwarded ports 21 and 22 in my router.

    disabled av. no joy



    thanks

    ---------- Post added at 01:06 PM ---------- Previous post was at 10:25 AM ----------

    I'm awaiting a reply from xirvik support.

    in the meantime any other suggestions?


  2. To remove ads become VIP. Inquire about advertising here.
  3. #12

    Join Date
    Apr 2012
    Posts
    64

    Default

    Tried an earlier version of CuteFTP still no joy.

    Xirvik make me laugh here is there reply to my latest update to them:

    ME

    On Sun, May 6, 2012 at 12:33 PM, x wrote:
    Hi It already is set to resume if the connection is lost but it only does it 3 times then after that it just stops. I dont see an option to change the number of resumes in cute ftp. The only way i have gotten a continuous transfer is to disable encryption and just use plain ftp. Which i think u will agree isnt very secure. Any other ideas? Thanks There reply


    Hi, Well - use a different program or contact GlobalScape for assistance with CuteFTP Xirvik
    LOL even tho they advise to use cute ftp it works everywhere else ive used

    NOT Helpful

  4. #13

    Join Date
    Nov 2012
    Posts
    2

    Default

    I too keep getting this error on a...modified..version of 8.1.4 and also the last version. This makes it so I always have to restart connections and sftp is simply not working at all.

    I am no longer on xirvik, i am now on a much cheaper and to me even better service even if they dont offer plans as "awesome" as Xirvik. Extremely poor customer service was one of a few reasons why I left them in august.

    Im trying to find another client with segmented downloading for windows. SmartFTP is another option, but im not paying for anything until i have tried it for a while with full functionality. The only other that I know of that has segmented downloading for windows is iGetter (yeah, theres also a windows version), but as with most mac programs, it is nowhere to be found on the 4 private trackers I am on.

    I also use debian linux and my provider tells me lftp does segmented downloading, but it is one of those command line types of program I detest because they are absolutely not intuitive, like say grub or a windows xp repair cd in command prompt mode...and the gui I found for lftp doesnt seem to have anything related to segmented downloading so it is useless...

    Anyway, it seems like a cuteftp issue and not a xirvik issue, I will reply to this if i get to work correctly with smartftp, once i am out of hirens boot dvd due to some maintenance I absolutely have to do.

  5. #14

    Join Date
    Oct 2012
    Posts
    254

    Default

    Got a pastebin of the logs? It's kind of hard to tell what's wrong from the short logs you posted. Server side logs would be better, as it seems the server is disconnecting you for some reason. Should be kept in /var/log (for Debian anyhow, I think Ubuntu is the same). I've heard some rumblings of recent issues with FTP clients due to TLS renegotiations, but it shouldn't apply to this since you are being disconnected immediately. Is it possible you are setting your default directory to somewhere you don't have permission to enter in the FTP conf?
    +++"Torrent Smarter."+++

    For there is nothing either good or bad, but thinking makes it so.
    -Shakespeare (Hamlet 2,2)

    Intelligence is the ability to avoid doing work, yet getting the work done.
    -Linus Torvalds

  6. #15

    Join Date
    Jan 2012
    Location
    Mars
    Posts
    208

    Default

    By default under properties, connection type is usually set to automatic. I Had the same problem until I started using (PASV) passive mode. I had this problem on two different seedboxs after changing to passive mode I generally don't have any more problems with connections being closed by the server.
    I'm not sure this will help you too but it's worth a try

  7. #16

    Join Date
    Feb 2012
    Location
    Yugoslavia
    Posts
    436

    Default


    FTP debugging is probably the third most asked new user question on our service ( after "Why isn't it really, really fast?" and what is the "RUTorrent says 100% Memory/CPU, What is up with that?"), and number one in time spent answering.


    Both Darkslider and Blackhat have approached this systematically, you need to do some debugging. And Xirvik, though not the most helpful tend to competent, if not very competent. Regretfully, Xirvik appears to be saying "Not our problem."


    First, understand the basics of FTP, there is one control channel, this is used to tell FTP what you want to do, command & control. Then there are multiple data channels, one is opened each time to transfer data between the server and you.

    How data connections are opened is determined by the mode of FTP. Two modes, passive and active, in passive mode your server opens a bunch of data connections, and tells you which one to use. In active mode the server opens a connection that is provided by client FTP app. So passive refers to the client application, does it actively provide connections. For this reason passive is most common, you don't need a hole in your firewall, or ports forwarded to handle passive, all the logic is on the server.

    As Herr Slider says, you put encryption on top of that, either SSL or TLS. Unless this is explicitly set in the server configuration, the encryption is only on the control channel, the data channel is cleartext.


    Most seedbox vendors provide FTP thru one of three packages, ProFTPD, vsftpd, ore pureftpd. Each has their advantages and disadvantage. ProFTPD is the oldest, and crankest., most resource intensive. VSFtpd is the lightest weight, easiest to configure, but has compatibility issues especially around encryption. PureFTPD is in the middle, very flexible, but like a flight cockpit with all the labels peeled off, a major pain to configure, there is no simple default configuration.

    So from cuteftp message, it appears as though the control channel is just dropping. You need to know why, to do that you need to, as Black Hat suggests, look at the system server logs. The logs are not public readable, and they are most likely in the directory '/var/log/proftpd', of the logs that proftpd keeps, you want the system log. Here is a mini-HowTo on logging for Pro.

    If you don't have access to these logs, ask Xirvik to send them to you. Generally seedbox vendors like specific tasks that are straight forward, so you shouldn't have an issue. They hate questions like "Why isn't it working?", "Why is it slow?" , "What is your home address?" - the more a question is a short definable, achievable goal, the better.

    Ideally you want to look at the log, then induce your failure and look again, see what it claims are its reasons for dropping the control connection.

    There are a few things you can do that might further illuminate this, that don't require a access to the logs. These are basic debugging, eliminatory steps. When debugging systematically, you want to identify which of the parts is having a problem, in this case there are three to four parts, by eliminating them you can see where to focus:


    • is it the server, proftpd? [low probability]
    • is it the client, cuteftpd?
    • Is it your network connection?
    • Is it your home machine?


    You can eliminate them thru simple comparison and eliminate it as the source of the problem, try a different client, like FileZilla. Try another machine at home. Ask someone here on a different network to see if they get different results (change the password afterwards). In this way you can see if it is CuteFTP, The network, your machine, or what is left over, the server. Seedbox vendors like it when you have done your homework, and will be much more willing to work on a solution if you tell them where you think the problem is.


    Hope this helps.



    Chmuranet.com - Where No One Knows Your Name

    Premium Seedboxes - 1G Unmetered VPS & Seedbox, Your Own 2TB Drive, Anonymous Sign-up $66USD/Month

  8. #17

    Join Date
    Oct 2012
    Posts
    254

    Default

    Another possibility I found while I was searching around on an unrelated issue was with vsftpd, but the same concept should apply.

    The 2 common errors they mentioned were:
    1) chroot.list didn't exist, you can't be chrooted without such a list.
    2) chroot directory didn't exist

    You may have one of these two issues
    +++"Torrent Smarter."+++

    For there is nothing either good or bad, but thinking makes it so.
    -Shakespeare (Hamlet 2,2)

    Intelligence is the ability to avoid doing work, yet getting the work done.
    -Linus Torvalds

  9. #18

    Join Date
    Aug 2012
    Location
    Southeast , USA
    Posts
    275

    Default

    I know I am joining a little late and forgive me if this has been covered. Secure transfers via CuteFTP will not work after v8.0 if you have modified your version in any way. This seems to break the link between sftp21.dll and zlib.dll (needed for ssh/ssl) and the executable.

    Maybe this helps.

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. Filezilla FTP error
    By REST in forum Help
    Replies: 13
    Last Post: January 14th, 2012, 03:51 AM
  2. Filezilla FTP error's
    By HQtorrents in forum Help
    Replies: 5
    Last Post: January 4th, 2012, 07:48 AM
  3. cute ftp pro question
    By DaveLegacy in forum Help
    Replies: 4
    Last Post: June 23rd, 2011, 10:21 PM
  4. Understanding Common BitTorrent Errors
    By Addicted in forum Software
    Replies: 13
    Last Post: January 19th, 2009, 01:45 AM
  5. common Torrent Errors and Why it happened
    By snake in forum BitTorrent Discussion
    Replies: 10
    Last Post: August 8th, 2008, 06:34 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •