|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-11-22 10:29 UTC] ts dot serveroperations at wmdata dot com
Description: ------------ The ftp function always transfer files in binary mode which results in textfiles being corrupted with no newlines. The configure line we used is ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --enable-module=so --enable-ftp We have not made any changes to php.ini. We tested on both the latest CVS snapshot and PHP 4.4.4 The code below expects a file named testfile.txt to be located in /var/www/html/ and a ftp server on localhost with user test, password test, address localhost and a folder named testdir. When we look in the logfile of the ftp server we see that the file actually was transferred in binary mode, we tried 2 different ftp servers with the same result. The ftp server and webserver are on the same machine (Linux Redhat), the php page is browsed from a windows XP computer and testfile.txt is downloaded and viewed in windows XP with notepad. This bug resembles Bug #19036 but this is between windows and linux which uses different newline characters. Therefore we must use ascii mode. Reproduce code: --------------- <?php // set up basic connection $ftp_server = "localhost"; $ftp_user_name = "test"; $ftp_user_pass = "test"; $conn_id = ftp_connect($ftp_server); // login with username and password $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); // check connection if ((!$conn_id) || (!$login_result)) { echo "FTP connection has failed!"; echo "Attempted to connect to $ftp_server for user $ftp_user_name"; exit; } else { echo "Connected to $ftp_server, for user $ftp_user_name"; } $source_file = "/var/www/html/testfile.txt"; $destination_file = "/testdir/testfile.txt"; // upload the file $upload = ftp_put($conn_id, $destination_file, $source_file, FTP_ASCII); // check upload status if (!$upload) { echo "FTP upload has failed!"; } else { echo "Uploaded $source_file to $ftp_server as $destination_file"; } // close the FTP stream ftp_close($conn_id); ?> Expected result: ---------------- That the file was transferred in ascii mode and that the ftp server logfile would confirm that. Actual result: -------------- The file was transferred in binary mode. This was verified when opening the textfile and the newlines are gone, replaced by 3 squares. Also the ftp server logfile states that the transfer was in binary mode. This is true for both uploads and downloads. FTP server works as expected when using a regular ftp application e.g. flashfxp, filezilla etc. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 26 03:00:01 2025 UTC |
Is this what you wanted? I just breaked at the breakpoints, didn't do any steps. I did this in command-line php. I recompiled PHP (CVS version) with the following configure: ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --enable-module=so --enable-ftp --enable-debug If you want I can redo it with php 4.4.4. # gdb /usr/local/bin/php GNU gdb Red Hat Linux (6.1post-1.20040607.62rh) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-redhat-linux-gnu"...Using host libthread_db library "/lib/tls/libthread_db.so.1". (gdb) break ftp_put Breakpoint 1 at 0x807bd51: file /usr/local/src/php4-STABLE-200611211330/ext/ftp/ftp.c, line 759. (gdb) break ftp_type Breakpoint 2 at 0x807abc4: file /usr/local/src/php4-STABLE-200611211330/ext/ftp/ftp.c, line 539. (gdb) run /var/www/html/mupp/index.php Starting program: /usr/local/bin/php /var/www/html/mupp/index.php Connected to localhost, for user temp Breakpoint 1, ftp_put (ftp=0x8628d1c, path=0x8628bfc "/tempdir/testfile.txt", instream=0x8625f4c, type=FTPTYPE_ASCII, startpos=140656052) at /usr/local/src/php4-STABLE-200611211330/ext/ftp/ftp.c:759 759 { (gdb) c Continuing. Breakpoint 2, ftp_type (ftp=0x0, type=140656052) at /usr/local/src/php4-STABLE-200611211330/ext/ftp/ftp.c:539 539 { (gdb) c Continuing. Uploaded /var/www/html/testfile.txt to localhost as /tempdir/testfile.txt Program exited normally. (gdb)