0
votes

I try to upload a video file to my download server with FTP file system in laravel but I have a this error: League\Flysystem\ConnectionRuntimeException: Could not connect to host: myip, port:21 in file /home/test/domains/myhost/laravel/vendor/league/flysystem/src/Adapter/Ftp.php on line 140

in my filesytem.php

 'ftp' => [
            'driver'   => 'ftp',
            'host'     => 'myip',
            'username' => 'myusername',
            'password' => 'mypass',
            'port'     => 21,
        ],

how to fix this error

2

2 Answers

0
votes

FTP port:21 is for pass control information. Did you try port:20 ?

0
votes

I fix this issue by enabling an FTP extension in my server.