ftp_get don't work on a 64 bits php release
| Bug #27328 | ftp_get don't work on a 64 bits php release | ||||
|---|---|---|---|---|---|
| Submitted: | 2004-02-20 03:12 UTC | Modified: | 2004-02-20 16:02 UTC | ||
| From: | rouet at in2p3 dot fr | Assigned: | |||
| Status: | Closed | Package: | FTP related | ||
| PHP Version: | 4CVS, 5CVS (2004-02-20) | OS: | * | ||
| Private report: | No | CVE-ID: | None | ||
[2004-02-20 03:12 UTC] rouet at in2p3 dot fr
Description:
------------
we have to use a 64 bits compiled version of php 4.3.4
to solve a limitation problem with popen.
an i discover that ftp_get function don't work.
i looked at the file ftp.c in ext/ftp and the problem is
the length of a long (8 bytes) in 64 bits mode.
that's the portion of code i modified to solve ftp
problem :
/* IP and port conversion box */
union ipbox {
unsigned int l[2];
/* unsigned long l[2];*/
unsigned short s[4];
unsigned char c[8];
};
i recompile php and now ftp-get work.
Reproduce code:
---------------
<body>
<?php
error_reporting(E_ALL);
ini_set("display_error",1);
$ftpc=ftp_connect($host);
$ftpl=ftp_login($ftpc,$user,$password);
ftp_pasv($ftpc,FALSE);
ftp_get($ftpc,$distfile,$localfile,FTP_BINARY);
ftp_pasv($ftpc,TRUE);
ftp_get($ftpc,$distfile,$localfile,FTP_BINARY);
?>
Expected result:
----------------
with passive mode off the error is
PORT required to be upper to 1024
with passive mode on the error is a timeout
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2004-02-20 16:02 UTC] pollita@php.net