Support > General Discussions

help: upload files to FTP using cURL

(1/2) > >>

Script_test:
Hello,
I have a problem
I need to upload a file by ftp.
You could help me with this script, I can not find a way to change directory and upload the file.

thank you in advance



--- Code: ---
Import "c:\scriptbasic\include\curl.bas"


archivo = "C:\\Windows\\notepad.exe"
USER = "YOURftpuser"
password = "YOURftppassword"
ftpurl ="ftp://YOURSERVER.com/"
rem

CURL = curl::init()
curl::option CURL,"VERBOSE"
curl::option CURL,"URL",ftpurl
curl::option CURL,"USERPWD",USER & ":" & password
rem
rem server dir
rem logs
rem html
rem errors
rem cgi-bin


curl::option Curl,"QUOTE","cd /html"

curl::option CURL,"INFILE",archivo
curl::option CURL,"UPLOAD"


 
curl::perform CURL


curl::finish CURL

rem

--- End code ---

when run


--- Code: ---* About to connect() to myftpserver port 21 (#0)
*   Trying 000.00.000.220... * connected
* Connected to myftpserver (000.00.000.220) port 21 (#0)
< 220 Welcome to FTP service.
> USER myusername
< 331 Please specify the password.
> PASS mypass
< 230 Login successful.
> PWD
< 257 "/"
* Uploading to a URL without a file name!
* Uploaded unaligned file size (0 out of 179712 bytes)
* Closing connection #0
(0): error 0x00081103:Extension specific error: %s

--- End code ---

Support:

--- Code: Script BASIC --- Import "c:\scriptbasic\include\curl.bas"  
I'm supprised that Script BASIC is even loading the curl.bas file with the non-escaped \ you're using.

Have you tried using Script BASIC's CHDIR to define your working directory?

Script_test:
this is my sb version:

--- Code: ---c:\scriptbasic\bin>scriba -v
ScriptBasic v2.0
Variation >>STANDARD<< build 0
Magic value 859011890
Node size is 16
Extension interface version is 11
Compilation: Aug 22 2003 14:01:34
Executable: c:\scriptbasic\bin\scriba.exe
--- End code ---

curl::option CURL,"UPLOAD"This piece of code according to the manual, does not need additional parameters, and in this case generates the error.

--- Code: ---(0): error 0x00081103:Extension specific error: %s
--- End code ---




But ... any help

--- Code: ---* Uploading to a URL without a file name!
* Uploaded unaligned file size (0 out of 179712 bytes)
--- End code ---


some help about uploading a file using cUrl.

Support:

--- Quote ---ScriptBasic v2.0

--- End quote ---

That version was before my time and over 15 years old. Please install the current 2.2 Inno Windows install of Script BASIC.

Did you catch my point about using unescaped Windows path names? Try using / instead.

Script_test:
It is this time solving generating a file and run by external program ("EXECUTE")

print #39,"curl -p " & urlftp & imagftp_path & " --user ....... etc.

ty

Navigation

[0] Message Index

[#] Next page

Go to full version