|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-09-09 07:42 UTC] dro at mediaan dot nl
Description: ------------ After upgrading our PHP version from 4.4.9 to 5.2.10 we are experiencing problems with FTP. The example below used to return true for variable $login_result under PHP version 4.4.9. After migration to PHP version 5.2.10 the example below returns null for variable $login_result. Reproduce code: --------------- $conn_id = @ftp_ssl_connect($ftp_server); $login_result = @ftp_login($conn_id, $ftp_username, $ftp_password); Expected result: ---------------- true Actual result: -------------- null PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 01:00:01 2025 UTC |
"Well, there's your problem." -- Q:-{) Check the target ftp server if it actually supports such. Doesn't seem to be any bug per se.