Inetc Upload Issue
Hi.
I have a website and i'm trying to write a NSIS script to upload a single file to FTP.
My host need the following adress to directly acess FTP folder:
ftp://username@tribogamer.com:Password@tribogamer.com
If I paste it into web browser, the FTP folder sucesfully opens.
But using same adress in the script with Inetc plugin, it fail and gives this error:
"URL Parts error".
If I change the script to this:inetc
::put "ftp://username@tribogamer.com:password@tribogamer.com" "$EXEDIR\file.xml" /end
Pop$0 # return value = exit code, "OK" if OK
MessageBox MB_OK "Status: $0"
The "URL Parts error" disappear, but the authentication fail in the server.inetc
::put "ftp://username:password@tribogamer.com" "$EXEDIR\file.xml" /end
Pop$0 # return value = exit code, "OK" if OK
MessageBox MB_OK "Status: $0"
Any help?