ScriptBasic

Support => General Discussions => Topic started by: Script_test on May 22, 2017, 07:04:00 AM

Title: help: upload files to FTP using cURL
Post by: Script_test on May 22, 2017, 07:04:00 AM
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: [Select]

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

when run

Code: [Select]
* 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
Title: Re: help: upload files to FTP using cURL
Post by: Support on May 23, 2017, 04:02:33 PM
Code: Script BASIC
  1.  
  2. Import "c:\scriptbasic\include\curl.bas"
  3.  

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 (http://www.scriptbasic.org/docs/ug/ug_25.20.html) to define your working directory?
Title: Re: help: upload files to FTP using cURL
Post by: Script_test on May 26, 2017, 07:52:38 AM
this is my sb version:
Code: [Select]
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

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: [Select]
(0): error 0x00081103:Extension specific error: %s



But ... any help
Code: [Select]
* Uploading to a URL without a file name!
* Uploaded unaligned file size (0 out of 179712 bytes)


some help about uploading a file using cUrl.
Title: Re: help: upload files to FTP using cURL
Post by: Support on May 27, 2017, 11:15:34 AM
Quote
ScriptBasic v2.0

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.

Title: Re: help: upload files to FTP using cURL
Post by: Script_test on June 08, 2017, 04:13:39 AM
It is this time solving generating a file and run by external program ("EXECUTE")

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

ty
Title: Re: help: upload files to FTP using cURL
Post by: Support on June 08, 2017, 07:24:36 PM
Would SYSTEM be a better choice?