Re: SSL cPanel mySql setup

2020-10-17 Thread Sean Cole (Pi) via use-livecode
Neville, Sorry for your pain but I'm glad it's been brought to light for you too before someone heinously exploits it. Looks like we've both got some work on our hands. From what I have worked out and been advised, using php over https is the easiest route to switch to. I say easiest. But it's

Re: SSL cPanel mySql setup

2020-10-17 Thread Sean Cole (Pi) via use-livecode
Jacqueline wrote: > > just rewrite it from scratch Hehe :) Just to give you an idea of the behemoth of a monstrous beast I have taken on, here are some stats I just ran a script to collate: 1 Main Stack 95 Substacks (Excl Data grids) 786 Cards 76779 Controls (Excl Data grids) 376377 Lines of

Re: Odd data in message box

2020-10-17 Thread J. Landman Gay via use-livecode
If there's an errorDialog handler, errors bypass the IDE. That's one way it could happen. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On October 17, 2020 4:06:03 PM Richard Gaskin via use-livecode wrote: J. Landman Gay wrote: On

Re: SSL cPanel mySql setup

2020-10-17 Thread Stephen Barncard via use-livecode
Dreamhost never did install LC ... but several of us have made it work. Just get the right server executable and permissions. I could never get it work account wide but it rocked for individual web site installation. -- Stephen Barncard - Sebastopol Ca. USA - mixstream.org On Sat, Oct 17, 2020

Re: SSL cPanel mySql setup

2020-10-17 Thread matthias rebbe via use-livecode
Neville, Can't you install LC Server on your own on your Dreamhost account. I remember there were others on the list or in the forum who were successful with installing LC Server on their Dreamhost account. - Matthias Rebbe Life Is Too Short For Boring Code > Am 18.10.2020 um 01:32 schrieb

Re: SSL cPanel mySql setup

2020-10-17 Thread Neville Smythe via use-livecode
Thanks to this thread for the realisation my remote db connections are not secure. I just checked with Dreamhost and they gave their reasons for not use SSL with their mySQL setup — unacceptable burden on their server and undesirable for web app access; so in their opinion very few shared host

Re: Odd data in message box

2020-10-17 Thread Richard Gaskin via use-livecode
J. Landman Gay wrote: On 10/17/20 12:13 PM, Dan Friedman via use-livecode wrote: Where did Jacque get that list of codes? From a plugin Richard and I wrote some years ago. It dynamically loads the error list based on the version of LC you're using. You can look up individual codes, or paste

Re: Odd data in message box

2020-10-17 Thread J. Landman Gay via use-livecode
On 10/17/20 12:13 PM, Dan Friedman via use-livecode wrote: Where did Jacque get that list of codes? From a plugin Richard and I wrote some years ago. It dynamically loads the error list based on the version of LC you're using. You can look up individual codes, or paste in a list of errors

Re: Odd data in message box

2020-10-17 Thread Mark Wieder via use-livecode
On 10/17/20 10:13 AM, Dan Friedman wrote: 1. Why didn't the debugger throw an error? Instead, it put this error chunk in the message box? Dunno. I can't replicate your experience. Somewhat higher in your stack or in the message path? If I try this on my system with an invalid sTime value

Re: Livecode server UNIX version (not Linux).

2020-10-17 Thread Richmond via use-livecode
"But rightly LC saw where the future was headed with mobile computing and they obviously had to make sacrifices along the way (e.g. FreeBSD, etc)" That sounds super if it were true, but I don't think it is as RunRev (as they then were) dropped support for SPARC, UNIX and so forth a long time

Re: Odd data in message box

2020-10-17 Thread Mark Wieder via use-livecode
On 10/17/20 10:13 AM, Dan Friedman wrote: 2. Where did Jacque get that list of codes? Is there some support docs I don't know about that explain these types of thing? The error texts are in a global property, but there's a definite catch22ness involved because you have to know it's there

Re: Odd data in message box

2020-10-17 Thread Dan Friedman via use-livecode
Mark and Jacque, Thank you for your assistance. There was invalid data in sTime. Interestingly, it wasn't from the data I was loading... it was old data coming from a reference to an array in a datagrid. Setting the datagrid's Persistent Data to false resolved the problem. A couple follow