Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 16 online users. » 0 Member(s) | 16 Guest(s)
|
Latest Threads |
CDB will not load in Live...
Forum: General
Last Post: stamatis
04-16-2025, 03:11 PM
» Replies: 0
» Views: 34
|
using cdb_auth with Live...
Forum: General
Last Post: JereMiami
12-19-2024, 01:58 AM
» Replies: 0
» Views: 496
|
BLOBs - not possible to a...
Forum: General
Last Post: stamatis
10-06-2024, 06:28 PM
» Replies: 0
» Views: 474
|
Allow users to change the...
Forum: General
Last Post: mark_talluto
01-18-2024, 01:09 AM
» Replies: 8
» Views: 13,026
|
cdb_sendEmail
Forum: General
Last Post: mark_talluto
11-07-2023, 09:57 PM
» Replies: 0
» Views: 871
|
cdb_sync & cdb_lookupvalu...
Forum: General
Last Post: mark_talluto
11-07-2023, 09:45 PM
» Replies: 1
» Views: 1,564
|
cdb cdb_sendEmail
Forum: Bug Reports
Last Post: JereMiami
10-05-2023, 01:57 PM
» Replies: 0
» Views: 2,015
|
LCM: "Please inform Canel...
Forum: General
Last Post: mark_talluto
07-12-2023, 07:58 PM
» Replies: 24
» Views: 28,104
|
San Franciso Region Outag...
Forum: Announcements
Last Post: mark_talluto
05-09-2023, 03:31 AM
» Replies: 1
» Views: 3,359
|
Error, CDB_Header checksu...
Forum: General
Last Post: cpuandnet
02-01-2023, 05:00 AM
» Replies: 4
» Views: 4,743
|
|
|
Error: cdb_batchCreateCloud |
Posted by: JereMiami - 02-13-2020, 10:56 AM - Forum: General
- Replies (4)
|
 |
After creating (either create or batch create) a record for two tables, and then immediately: (1) querying those tables; (2) reading those records; (3) and deleting those records ---
I get these three errors in combination:
1) "The server response could not be downloaded at this time"
2) "Error: There was a problem getting a response from the server for cdb_batchCreateCloud request"
3) "Could not create record in cloud"
Any suggestion on how to avoid these errors?
|
|
|
user authentication via hash |
Posted by: mkakeshyft_tom - 02-10-2020, 02:22 AM - Forum: Getting Started
- Replies (2)
|
 |
Hi Livecloud,
I'm trying to create a auto-login scheme, and i'm realizing that unless I store my user's actual password, I can't do it.
Any chance you could allow the option of submitting the hash instead of the password? ... maybe a "sending hash" parameter.
Thanks,
Tom
|
|
|
Putting specific keys into the text of a option menu |
Posted by: sid - 02-08-2020, 07:52 PM - Forum: General
- Replies (11)
|
 |
Hi Guys
I'm stuck on something. I want to store a list of options in the livecloud database that i will insert into the text of an option menu , or combo Box Menu control (Basically a dynamic drop down list)
It works fine if there id only one record in the table, for example:
Code: put cdb_read("companySetup","*","local") into tBranchData
//there is only one record in the companySetup table
set the text of button "branchTaxAppliedTo" of me to tBranchData[the keys of tBranchData]["brnCode"] && "-" && tBranchData[the keys of tBranchData]["companyName"]
// this works provided that there is only one record in the table
--I tried to convert the array with return (as per documentation, I also tried return and tab) on the next piece of code that has more than 1 record
put cdb_read("taxTypes","*","local") into tTaxTypes
put tTaxTypes[the keys of tTaxTypes]["taxTypes"] into tTaxTypes2 // there is only one row called taxTypes in the table
combine tTaxTypes2 using return and tab
set the text of button "taxType" of me to tTaxTypes2
I added the combine command in the hope that it will work, but it didnt
|
|
|
South Africa region available |
Posted by: mark_talluto - 01-27-2020, 07:05 PM - Forum: Announcements
- No Replies
|
 |
Here is a quick update on regions and datacenters. We recently built a region in South Africa.
It is being hosted in a Microsoft Azure datacenter. As we have stated in the past, we normally use Digital Ocean regions as they are a good fit for LiveCloud. Our experience with Azure will allow us to look into other locations where Digital Ocean is not providing service.
The new region will be available in our next update to LiveCloud Manager. We are aiming to release the update later today.
Our current list of regions:
San Franciso, USA
New York, USA
Toronto, Canada
London, UK
Johannesburg, Africa
|
|
|
LCM Update |
Posted by: clarencemartin - 01-27-2020, 01:50 PM - Forum: General
- Replies (2)
|
 |
This is a good update. THUMBS UP!
Can you expand some information on the section:
" We are now using the industry standards when deleting you project,aka child proof.(Credit Tom Glod)"
Is this a reference to "Relational Integrity"? Where you cannot delete a table that has some kind of child record links?
|
|
|
Sample Application question |
Posted by: clarencemartin - 01-25-2020, 08:30 AM - Forum: General
- Replies (3)
|
 |
Under the Sample ion the LCM, I am trying to build the Notepad application. Specifically, because of the description, that states: it works locally without user authentication. Is this still true? I have run into an error on line 233 of the Stack "notepad_main_behavior.
which throws the following error: stack "notepad_main_behavior": execution error at line 233 (Chunk: can't find background), char 1.
what am I missing?
Also an added comment:
The reason that I like LiveCode is its versatility in being able to accomplish the various task, sometimes using, what I might call, abstract programming methods.
I call these "Rabbit Hole" programming methods. I am a person that uses Abstract Programming methods all the time. But I try to comment these "Rabbit Hole" scripts because I don't always remember why I take these detours in my scripts, especially when I have to go back at a later time. One of the most popular Abstract Programming methods is "behaviors" which I completely support. It's like exploring a cave, you need to have bread crumbs so you don't get lost.
Sample applications need to have commented sections so the users cannot fall into what I call "Rabbit Hole" or "Abstract" programming areas.
Please add comments, especially in Sample Programs, to explain what is going on.
I know for the authors of these Sample Programs, the need to complete and provide these samples is paramount, but so is the need for users to understand how and why these samples work.
Please don't take this as a negative comment. but samples are learning tools.
|
|
|
cdb delete |
Posted by: JereMiami - 01-24-2020, 08:50 PM - Forum: General
- Replies (2)
|
 |
On using the cdb delete tTable, tRecordIds, tTarget command I receive the following error message in the text box:
"Table '________' has not been loaded"
Where:
tTable = the table name (e.g., "myTableName");
tRecordIds = a line delimited list of recordIds; and
tTarget = "cloud"
It does give the correct tableId number in the error message. Any thoughts on what went wrong?
|
|
|
|