Search found 10 matches
- Mon Nov 17, 2025 4:16 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: LiveCode Indy 9.0.5 can't be opened
- Replies: 5
- Views: 841
LiveCode Indy 9.0.5 can't be opened
Hello, I have a license for an older version of LiveCode Indy 9.0.5, which I’m trying to install on a MacBook Air running macOS Monterey 12.6. After installation, when I try to launch LiveCode, I receive the message: “LiveCode Indy 9.0.9 can’t be opened because Apple cannot check it for malicious so...
- Mon Aug 19, 2019 5:27 pm
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
I finally found the solution on the url below:
http://lessons.livecode.com/m/4071/l/85 ... r-ssl-ftps (at the bottom)
thanks.
http://lessons.livecode.com/m/4071/l/85 ... r-ssl-ftps (at the bottom)
thanks.
- Mon Aug 19, 2019 3:44 pm
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
I tested both true and false at "use_ssl" setting, however, both tResult is: "tsneterr: (28) server response timeout". put true into tSettings["use_ssl"] put "NLST" into tCmds put tsNetSendCmdSync(ftpfolder, tCmds, tResultCode, tBytes, tSettings) into tResult put false into tSettings["use_ssl"] put ...
- Mon Aug 19, 2019 1:42 pm
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
Hi Klaus, From our IT dept, we can now use ftp, so when i sent the command: put tsNetSendCmd("1", ftpfolder, tCmds, "transferComplete") into tResult the tResult is: "tsneterr: (28) server response timeout" It's timeout maybe because we need to set implicit connection? How? Thank you. Regards, Maynard
- Wed Aug 14, 2019 3:21 pm
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
Hi Klaus,
In the documentation of tsNetSendCmd, it support ftps but why there's an error.
I'm using LiveCode Indy 9-0-4
Thanks.
In the documentation of tsNetSendCmd, it support ftps but why there's an error.
I'm using LiveCode Indy 9-0-4
Thanks.
- Wed Aug 14, 2019 2:53 pm
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
Thanks Klaus for the code.
When I tested it, unfortunately, the result shows "tsneterr: Only ftp:// and sftp:// URLs allowed for tsNetSendCmd"
And ours is ftps://...
When I tested it, unfortunately, the result shows "tsneterr: Only ftp:// and sftp:// URLs allowed for tsNetSendCmd"
And ours is ftps://...
- Wed Aug 14, 2019 9:34 am
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
Sorry, I'm not able to answer your question.
Going back to my inquiry - how to get the directory list on ftps with implicit connection on port 990. Based on the example, the setting for tsNetGet is "use_ssl", to Enable TLS for explicit FTPS. How about for implicit FTPS, what is command?
Thank you.
Going back to my inquiry - how to get the directory list on ftps with implicit connection on port 990. Based on the example, the setting for tsNetGet is "use_ssl", to Enable TLS for explicit FTPS. How about for implicit FTPS, what is command?
Thank you.
- Tue Aug 13, 2019 8:21 am
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
Our IT dept decided to secure our ftp server with ftps with implicit connection on port 990.
- Mon Aug 12, 2019 3:08 pm
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
Re: How to list files on ftps
Thanks bogs for your reply. From the examples you've listed, the command tsNetGet was used to get the directory list. There's a setting "use_ssl" for FTPS explicit connection. However, ours is FTPS implicit connection. Nonetheless, I tried it but it failed, see code below. How can we set it to impli...
- Mon Aug 12, 2019 8:17 am
- Forum: Internet
- Topic: How to list files on ftps
- Replies: 16
- Views: 18870
How to list files on ftps
Hi, I'm using the ftp command below (with slash at the end) to list the files and folders on our ftp. Please note, there's spaces between the command because email or url links can't be posted. put URL "ftp://username:password@ourftp .ourftpserver. com/folder/" into tData Now, our ftp was recently u...