Search found 12 matches

by adea
Mon Dec 22, 2025 6:27 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Codesign error: Operation not permitted
Replies: 9
Views: 11705

Re: Codesign error: Operation not permitted

Thank you.
Here is the solution I found:
Click on Apple symbol top left and select "System Preferences"
Open "Security & Privacy"
Select the "Privacy" menu
On the left-hand side, select "Full Disk Access"
on lower left, click the lock and enter your MacOS password or swipe your finger (eyes).
Click ...
by adea
Thu Dec 04, 2025 3:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Codesign error: Operation not permitted
Replies: 9
Views: 11705

Codesign error: Operation not permitted

Hello,

I’m a beginner and currently trying to follow the code-signing steps outlined below.

https://lessons.livecode.com/m/4071/l/1122100-codesigning-and-notarizing-your-lc-standalone-for-distribution-outside-the-mac-appstore

In Step 3 (Codesigning), after replacing the variables, I encountered ...
by adea
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: 10662

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 ...
by adea
Mon Aug 19, 2019 5:27 pm
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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.
by adea
Mon Aug 19, 2019 3:44 pm
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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 ...
by adea
Mon Aug 19, 2019 1:42 pm
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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 ...
by adea
Wed Aug 14, 2019 3:21 pm
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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.
by adea
Wed Aug 14, 2019 2:53 pm
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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://...
by adea
Wed Aug 14, 2019 9:34 am
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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.
by adea
Tue Aug 13, 2019 8:21 am
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

Re: How to list files on ftps

Our IT dept decided to secure our ftp server with ftps with implicit connection on port 990.
by adea
Mon Aug 12, 2019 3:08 pm
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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 ...
by adea
Mon Aug 12, 2019 8:17 am
Forum: Internet
Topic: How to list files on ftps
Replies: 16
Views: 31304

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 ...