Не удается загрузить папку на FTP-сервер: ftp_put (): сбой SSL_shutdown - PullRequest
0 голосов
/ 26 июня 2019

Я пытаюсь загрузить все папки, которые находятся в определенной папке («Отправка»), на FTP-сервер с этим кодом PHP:

$conn_id = ftp_ssl_connect($ftp_server, 11876);

$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_password);
if ((!$conn_id) || (!$login_result)) {
    echo "FTP Connection failed to server $ftp_server for user $ftp_user_name";
    exit;
} else {
    echo "Connected to Server $ftp_server, for user $ftp_user_name \r\n";
}

$remoteDir = "/Disque dur/Téléchargements/";
$dir = 'Sending';
$files = array_diff(scandir($dir), array('..', '.'));
$directories = array();
foreach ($files as $file) {
    if (is_dir($dir . '/' . $file))
        $directories[] = $file;
}
ftp_pasv($conn_id, true);

foreach ($directories as $directory) {
    if (ftp_chdir($conn_id, $remoteDir . $directory)) {
        echo "Current directory is now: " . ftp_pwd($conn_id) . "\n";
    } else {
        echo "Couldn't change directory\n";
        ftp_mkdir($conn_id, $remoteDir . $directory);
        ftp_chdir($conn_id, $remoteDir . $directory);
    }
    foreach (glob($dir . "/" . $directory . "/*.*") as $filename){
        ftp_put($conn_id, basename($filename), $filename, FTP_BINARY);
    }

}

ftp_close($conn_id);

Но у меня есть ошибка в этой строке:

ftp_put($conn_id, basename($filename), $filename, FTP_BINARY);

А журналы

Connected to Server MYSERVER, for user USER
Current directory is now: /Disque dur/Téléchargements/DIRECTORY/
Warning: ftp_put(): SSL_shutdown failed
Warning: ftp_put(): Data channel closed.

Для моего FTP-сервера есть что-то специфическое: порт подключения: 11876 не совпадает с портом пассивной передачи: 9317.

Когда я пытаюсь подключиться напрямую к порту передачи, соединение возвращает false.

Редактировать: Я только что выяснил: файл все равно загружен, есть ли способ удалить это предупреждение и почемуон появляется?

Но я могу отправлять папки через Filezilla через порт 118976. Что я делаю не так?Кто-нибудь может мне помочь?

Журналы из FileZilla:

2019-06-26 18:12:30 13664 1 Status: Resolving address of ADRESS
2019-06-26 18:12:30 13664 1 Status: Connecting to IP:11876...
2019-06-26 18:12:30 13664 1 Status: Connection established, waiting for welcome message...
2019-06-26 18:12:30 13664 1 Response: 220 Welcome to Freebox FTP Server.
2019-06-26 18:12:30 13664 1 Command: AUTH TLS
2019-06-26 18:12:30 13664 1 Response: 234 Proceed with negotiation.
2019-06-26 18:12:30 13664 1 Status: Initializing TLS...
2019-06-26 18:12:30 13664 1 Status: Verifying certificate...
2019-06-26 18:12:30 13664 1 Status: TLS connection established.
2019-06-26 18:12:30 13664 1 Command: USER USERNAME
2019-06-26 18:12:30 13664 1 Response: 331 User name okay, need password.
2019-06-26 18:12:30 13664 1 Command: PASS ********************
2019-06-26 18:12:30 13664 1 Response: 230 User logged in, proceed.
2019-06-26 18:12:30 13664 1 Command: SYST
2019-06-26 18:12:30 13664 1 Response: 215 UNIX Type: L8
2019-06-26 18:12:30 13664 1 Command: FEAT
2019-06-26 18:12:30 13664 1 Response: 211-Extensions supported:
2019-06-26 18:12:30 13664 1 Response:  UTF8
2019-06-26 18:12:30 13664 1 Response:  EPRT
2019-06-26 18:12:30 13664 1 Response:  EPSV
2019-06-26 18:12:30 13664 1 Response:  REST STREAM
2019-06-26 18:12:30 13664 1 Response:  SIZE
2019-06-26 18:12:30 13664 1 Response:  CLNT
2019-06-26 18:12:30 13664 1 Response:  AUTH TLS
2019-06-26 18:12:30 13664 1 Response:  PBSZ
2019-06-26 18:12:30 13664 1 Response:  PROT
2019-06-26 18:12:30 13664 1 Response: 211 End
2019-06-26 18:12:30 13664 1 Command: CLNT FileZilla
2019-06-26 18:12:30 13664 1 Response: 200 Command Okay.
2019-06-26 18:12:30 13664 1 Command: OPTS UTF8 ON
2019-06-26 18:12:30 13664 1 Response: 200 Command Okay.
2019-06-26 18:12:30 13664 1 Command: PBSZ 0
2019-06-26 18:12:30 13664 1 Response: 200 Command Okay.
2019-06-26 18:12:30 13664 1 Command: PROT P
2019-06-26 18:12:30 13664 1 Response: 200 Command Okay.
2019-06-26 18:12:30 13664 1 Status: Logged in
2019-06-26 18:12:30 13664 1 Status: Retrieving directory listing...
2019-06-26 18:12:30 13664 1 Command: PWD
2019-06-26 18:12:30 13664 1 Response: 257 "/"
2019-06-26 18:12:30 13664 1 Command: TYPE I
2019-06-26 18:12:30 13664 1 Response: 200 Command Okay.
2019-06-26 18:12:30 13664 1 Command: PASV
2019-06-26 18:12:30 13664 1 Response: 227 PASV OK (IP)
2019-06-26 18:12:30 13664 1 Command: LIST
2019-06-26 18:12:30 13664 1 Response: 150 File Status OK.
2019-06-26 18:12:30 13664 1 Response: 226 Closing data connection.
2019-06-26 18:12:30 13664 1 Status: Directory listing of "/" successful
...