Custom Query (8144 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (106 - 108 of 8144)

Ticket Resolution Summary Owner Reporter
#5264 rejected some files with chinese name can't upload yanruichen
Description

When I failed to upload some files to server by IE, meanwhile some others can be uploaded. If I change the chinese names of the files to english names or some other chinese names , they can be uploaded. According to the log, the file names in the command STOR is wrong. (But the file names in the command DELE is right.) Although the file can be uploaded by other ftp clients, I don't think IE is wrong. I can upload the same files to other ftp server by IE. STOR 2010?月装机统?xls DELE 2010年1月装机统计.xls

(000023) 2010-03-11 21:23:23 - share (134.33.5.51)> TYPE I (000023) 2010-03-11 21:23:23 - share (134.33.5.51)> 200 Type set to I (000023) 2010-03-11 21:23:23 - share (134.33.5.51)> PASV (000023) 2010-03-11 21:23:23 - share (134.33.5.51)> 227 Entering Passive Mode (134,33,5,252,14,169) (000023) 2010-03-11 21:23:23 - share (134.33.5.51)> STOR 2010?月装机统?xls (000023) 2010-03-11 21:23:23 - share (134.33.5.51)> 150 Connection accepted (000023) 2010-03-11 21:23:23 - share (134.33.5.51)> 550 can't access file. (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> Connected, sending welcome message... (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> 220-FileZilla Server version 0.9.34 beta (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> 220-written by Tim Kosse (Tim.Kosse@…) (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> 220-Please visit http://sourceforge.net/projects/filezilla/ (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> 220 Welcome to yanruichen' FTP site (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> USER share (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> 331 Password required for share (000025) 2010-03-11 21:23:23 - (not logged in) (134.33.5.51)> PASS * (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> 230 Logged on (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> opts utf8 on (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> 200 UTF8 mode enabled (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> PWD (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> 257 "/" is current directory. (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> DELE 2010年1月装机统计.xls (000025) 2010-03-11 21:23:23 - share (134.33.5.51)> 550 File not found (000025) 2010-03-11 21:23:25 - share (134.33.5.51)> disconnected.

#8523 rejected Correct the IP replied in passive mode (227 Entering Passive Mode) Qian Yan
Description

Filezilla Client Version: 3.6.0.2 Windows 7 SP1, on Intel Core i5

I posted the same issue in the forum, here is the link. http://forum.filezilla-project.org/viewtopic.php?t=14750#p108006

Now I will describe this briefly, what I need is an enhancement of the following option in filezilla client.

Connection > FTP > Passive mode, "Use the serveris external IP address instead"

Regarding the opposite side of what the option said, When client located inside company, but server reply a public IP address. Filezilla client (latest version) could not handle this case, it will reply error as below.

Error:	Connection timed out
Error:	Failed to retrieve directory listing

I also attached log file of this issue. So, Could filezila client correct the IP in passive mode reply when it is not same as server's IP ? no matter is private IP or Public IP.

Thanks for your great work!

#11285 fixed libfilezilla doesn't build with cppunit 1.14 yan12125
Description

With cppunit 1.14, make check fails with:

make[2]: Entering directory '/home/yen/Projects/tmp/libfilezilla-svn/tests'
/bin/sh ../libtool  --tag=CXX   --mode=link g++  -g -O2 -Wall  -no-install  -o test test-test.o test-dispatch.o test-eventloop.o test-format.o test-iputils.o test-smart_pointer.o test-string.o test-time.o ../lib/libfilezilla.la  -lpthread 
libtool: link: g++ -g -O2 -Wall -o test test-test.o test-dispatch.o test-eventloop.o test-format.o test-iputils.o test-smart_pointer.o test-string.o test-time.o  ../lib/.libs/libfilezilla.so -lpthread -Wl,-rpath -Wl,/home/yen/Projects/tmp/libfilezilla-svn/lib/.libs
test-string.o: In function `string_test::test_conversion()':
/home/yen/Projects/tmp/libfilezilla-svn/tests/string.cpp:40: undefined reference to `CppUnit::SourceLine::SourceLine(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int)'
(and much more "undefined reference" errors)
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:617: test] Error 1
make[2]: Leaving directory '/home/yen/Projects/tmp/libfilezilla-svn/tests'
make[1]: *** [Makefile:1019: check-am] Error 2
make[1]: Leaving directory '/home/yen/Projects/tmp/libfilezilla-svn/tests'
make: *** [Makefile:457: check-recursive] Error 1

The compilation command is missing -lcppunit. A deeper looking into libfilezilla reveals that the latest cppunit breaks it. In m4/cppunit.m4, cppunit-config binary is used to determine compiling and linking flags. However, cppunit-config is dropped upstream in favor of pkg-config. [1] As a result, cppunit detection fails silently and compilation of test programs doesn't work.

A workaround is specifying the necessary flag manually:

LDFLAGS="-lcppunit" ./configure

Note that cppunit 1.14 is libreoffice's fork. According to Wikipedia, [2] the version is used by Debian, Ubuntu, Gentoo and Arch. I believe the issue will affect other distros sooner or later.

[1] https://cgit.freedesktop.org/libreoffice/cppunit/commit/?id=c81afa737307ef525258cfae24eb3f2845ce7208 [2] https://en.wikipedia.org/wiki/CppUnit#cite_ref-6

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.