530 Login authentication failed when using lftp to upload static website

Website URL

https://capchange.infinityfree.me/

Error Message

530 Login authentication failed

Other Information

Ftp works fine with FileZilla.

I’d like to upload my hobby web sites using lftp in a Makefile. (Works on OVH…)

lftp :~> open ftpupload.net
lftp ftpupload.net:~> user if0_4053721 XXXXXX
lftp [email protected]:~> ls
ls: L’authentification a échoué.: 530 Login authentication failed
lftp [email protected]:~>```


Thanks for yor help.

Did you read?

6 Likes

Yes, of course!

To deploy my website:

  • File Manager: OK
  • FileZilla: OK
  • lftp: KO :frowning:

My problem is only with lftp!

I would like to know if someone had this problem and how it was solved.

Since you can connect with Filezilla, I assume you’ve double checked your FTP password?

I don’t suppose you can see the IP address that LFTP is trying to connect to? ftpupload.net should resolve to 185.27.134.11 and then uses port 21…

Thats the only thing I can think of…

2 Likes

Thanks for your suggestion!

lftp ``[email protected]``:~> debug 3
lftp ``[email protected]``:~> ls
---- Connexion à ``ftpupload.net`` (185.27.134.11) port 21
<— 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
<— 220-You are user number 588 of 6900 allowed.
<— 220-Local time is now 10:29. Server port: 21.
<— 220-This is a private system - No anonymous login
<— 220 You will be disconnected after 60 seconds of inactivity.
ls: L’authentification a échoué.: 530 Login authentication failed

It works, but with the RIGHT user :innocent:

lftp :~> open ``ftpupload.net
lftp ``ftpupload.net``:~> user if0_40253721 PASSWORD
lftp ``[email protected]``:~> debug 3
lftp ``[email protected]``:~> ls
---- Connexion à ``ftpupload.net`` (185.27.134.11) port 21
<— 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
<— 220-You are user number 557 of 6900 allowed.
<— 220-Local time is now 11:02. Server port: 21.
<— 220-This is a private system - No anonymous login
<— 220 You will be disconnected after 60 seconds of inactivity.
<— 230-Your bandwidth usage is restricted
<— 230 OK. Current restricted directory is /
drwxr-x–x 4 40253721 40253721 143 Oct 28 17:56 .
drwxr-x–x 4 40253721 40253721 143 Oct 28 17:56 ..
-r–r–r-- 1 0 0 534 Oct 25 11:49 .htaccess
-rw-r–r-- 1 0 0 0 Oct 25 11:49 .override
-rw-r–r-- 1 0 0 0 Oct 25 11:49 DO NOT UPLOAD FILES HERE

Thanks dan3008!

2 Likes

Glad it’s working for you

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.