-
From the logs, it may be that your server doesn't like extended passive mode. You may try disabling that: -o disable_epsv.
Also, you don't want to use curl 7.16.4 nor 7.16.3. They both have bugs that crash the library. The safe versions are 7.16.2 or 7.17.0.
2007-10-06 00:19:02 UTC in CurlFtpFS
-
See http://sourceforge.net/tracker/index.php?func=detail&aid=1765581&group_id=160565&atid=816357.
2007-09-10 13:53:41 UTC in CurlFtpFS
-
Thanks for all the debugging. Unfortunately, I had already went through the same pain. See #1765581
.
2007-09-07 18:11:44 UTC in CurlFtpFS
-
This is not a filesystem issue. Try using cp -p.
2007-08-22 20:48:16 UTC in CurlFtpFS
-
See bug #1765581.
2007-08-20 01:11:38 UTC in CurlFtpFS
-
With libcurl 7.16.4, asking for a FTP directory with NOBODY set to 1 causes libcurl to issue a "SIZE (null)" command. It's mostly harmless, but it is possible to have a file in the server with this name and get a wrong answer.
2007-08-17 12:57:11 UTC in curl and libcurl
-
In ftp.c the following call causes a crash:
result = Curl_client_write(conn, CLIENTWRITE_BOTH, (char *)"Accept-ranges: bytes\r\n", 0);
Just seeing that you need a type conversion there is a very huge sign that something is wrong. It actually crashes when it tries to modify the string inside Curl_client_write.
2007-08-17 12:53:10 UTC in curl and libcurl
-
I'm glad you have a working solution. Are you still interested in helping me debugging the problem with curlftpfs or should I close this bug?.
2007-08-16 14:59:46 UTC in CurlFtpFS
-
Thanks a lot for all the testing, Daniel.
Another option is to downgrade libcurl to version 7.16.2. This is a bug with the newest versions (7.16.3 and 7.16.4). I'll send them a patch so that it will be fixed for their next release.
2007-08-16 12:53:26 UTC in CurlFtpFS
-
I found it to be a bug with curl 7.16.3 and 7.16.4. You can workaround it by using 7.16.2 or by setting ftpfs.safe_nobody = 0 in ftpfs.c if you're compiling curlftpfs.
2007-08-10 19:17:22 UTC in CurlFtpFS