A question from my submarine .. a stupid question of course ...

If you buy the Indy version of LC, the server scripts are also "protected"?

Thank you all!
Mariasole
( ^..^)ノ
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Thanks Richard!FourthWorld wrote:Unless someone has shell or FTP access to your server, all server-side scripts are protected. You would only need to use the Indy or Business edition of LiveCode Server if you want to distribute protected stack files for others to use on their servers with their own Indy or Business edition of LiveCode.
Code: Select all
<!doctype html>
<html>
<head>
<title>Hello</title>
<meta charset="UTF-8">
</head>
<body>
<p> LiveCode: </p>
<?lc include "hello.lc" ?>
</body>
</html>
Code: Select all
<?lc
put "Hello"
?>
Thanks Richard and thanks Jacque!jacque wrote: Anyone with access to the server will be able to read the scripts in hello.lc. If you want to password protect that file (encrypt it) then you need to use the commercial Indy server to open it.
Almost. Since .lc files are plain text, there's nothing LiveCode can do to protect those. But you can keep code in stack files that can be called from .lc files, and with any of the proprietary-licensed versions of LC those stack files can have their scripts encrypted using the stack's password property.Mariasole wrote:Thanks Richard and thanks Jacque!jacque wrote: Anyone with access to the server will be able to read the scripts in hello.lc. If you want to password protect that file (encrypt it) then you need to use the commercial Indy server to open it.
So, summarizing:
Live Code Community Server ---> hello.lc file is open to anyone with the credentials to access the server can open it and read its contents
Live Code INDY (or Business) Server ----> hello.lc file can be encrypted and password protected, so that only those who have the password can open it.
I can give as a fact?![]()
Bon voyage! Be sure to surface here now and then to let us now how the ocean's treating you.Mariasole wrote:Many thanks to all!
Now I get it. I return to the submarine and study some more!![]()