laravel ftp works on windows but not in linux

317 Views Asked by At
#config\filesystems.php
'ftp' => [
    'driver' => 'ftp',
    'host' => '52.221.127.xx',
    'username' => 'xxx',
    'password' => 'password',
    'passive' => false,
    'timeout' => 100,
],


#vsftpd config 

listen=YES
anonymous_enable=NO
local_enable=YES
local_umask=022
write_enable=YES
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
chroot_local_user=NO
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list

allow_writeable_chroot=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key

port_enable=YES
connect_from_port_20=YES
data_connection_timeout=100

pasv_promiscuous=YES
utf8_filesystem=YES

my laravel code:

$document = $request->file('document');
$attributes['courseware_data'] = $document->storeAs($save_path, $save_name, 'ftp');

I have run command :chmod 777 -R /var/ftp on the linux server.

It works in my windows computer ,but when I push the code to the production environment, I receive the following error:

ftp_fput(): Illegal PORT command.

I turn the passive true and false, it always turn out this error.

Thank you stranger.

0

There are 0 best solutions below