Re: LC Server- Optimum setup

2020-10-19 Thread William Prothero via use-livecode
Thanks, Richard. Good info. I’m not quite ready to jump in on this yet, but soon, and probably with Trevore’s Levure app. Best, Bill William A. Prothero https://earthlearningsolutions.org > On Oct 19, 2020, at 11:03 AM, Richard Gaskin via use-livecode > wrote: > > prothero wrote: > > > I’ve

Re: Livecode server UNIX version (not Linux).

2020-10-19 Thread Paul McClernan via use-livecode
> > OS X, Windows 95 through Windows 10, Raspberry Pi and "several variations > of Unix (I think is just means Linux)". > > I'm thinking about tinkering with a FreeBSD server and LiveCode server, > but I didn't see a "UNIX" version, so I suppose that I have to compile it. > Have any of you

[ANN] This Week in LiveCode 241

2020-10-19 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #241 here: https://bit.ly/3o5cCWX This is a weekly newsletter about LiveCode, focussing on what's been going on in and

RE: SQL Show Status

2020-10-19 Thread Ralph DiMola via use-livecode
I don't use this method but this works. put revDataFromQuery(,,YourDataseID,"SHOW STATUS") This will return a tab delimited list, one per line. put revDataFromQuery(comma,cr,YourDataseID,"SHOW STATUS") This will return a comma delimited list, one per line. Ralph DiMola IT Director Evergreen

Re: SQL Show Status

2020-10-19 Thread Sean Cole (Pi) via use-livecode
See, I tried that but hadn't put the delimiters in. I need a break :/ Thanks Matthias :) Sean Cole *Pi Digital* On Mon, 19 Oct 2020 at 18:53, matthias rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > You have to use > > revDataFromQuery() > > because that will execute the SQL

Re: LC Server- Optimum setup

2020-10-19 Thread Richard Gaskin via use-livecode
prothero wrote: > I’ve been thinking about experimenting with Livecode server. I have > a vps and root access, but I’m wondering what are the speed and user > consequences of installing it at root level, or as a cgi. The cgi is > fairly large and I’m concerned about both speed and memory issues

Re: SQL Show Status

2020-10-19 Thread matthias rebbe via use-livecode
You have to use revDataFromQuery() because that will execute the SQL statement and will return any data that is coming from the DB Server. Regards, Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 19.10.2020 um 19:41 schrieb Sean Cole (Pi) via use-livecode > : > > Hi

Re: SQL Show Status

2020-10-19 Thread Sean Cole (Pi) via use-livecode
Hi Ralph, What do I do to see the data in the two columns? My brain is hurting too much to figure it out. Thanks Sean On Mon, 19 Oct 2020 at 18:26, Ralph DiMola via use-livecode < use-livecode@lists.runrev.com> wrote: > Sean, > > revQueryDatabase(tConnId, “SHOW STATUS”) only returns an integer

RE: LC Server- Optimum setup

2020-10-19 Thread Ralph DiMola via use-livecode
I use it daily for everything from web pages to my homebrew web services. I don't have a heavy load but I have not received and performance complaints from customers. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From:

Re: First version of LC that supports httpS?

2020-10-19 Thread Klaus major-k via use-livecode
Hi Mark and Sean > Am 19.10.2020 um 18:55 schrieb Mark Waddingham via use-livecode > : > > On 2020-10-19 17:31, Klaus major-k via use-livecode wrote: >> Hi all, >> see subject, maybe someone happens to know. >> Obviously LC 5.02 does not support httpS yet. > > HTTPS has been supported since

Re: Textsize of label of copied btn changes

2020-10-19 Thread Richard Gaskin via use-livecode
ELS Prothero wrote: > Yes, if my memory doesn’t fail me, it was in italic. Hmmm, I guess I > was supposed to know that meant it wasn’t set and the value shown was > a default? Yes, more or less, though to be precise it's not so much default per se as inherited. As Jacque noted yesterday,

Re: First version of LC that supports httpS?

2020-10-19 Thread Sean Cole (Pi) via use-livecode
Thanks for the heads up Mark. Appreciated. TLS 1.3 is coming next year which will likely shake the tree again. I've been trying it in LC 9 too and get just the same functionality/responses/traffic as in 5.0.2 using the LC9 revsecurity.dll HTTPS is working directly in LC9 and 5.0.2. But SQL with

Re: SSL cPanel mySql setup

2020-10-19 Thread prothero--- via use-livecode
Folks: Please ignore my posting in this thread. I re-posted it in a new thread. Best, Bill William A. Prothero Santa Barbara, CA. 93105 http://earthlearningsolutions.org/ > On Oct 19, 2020, at 9:45 AM, Sean Cole (Pi) via use-livecode > wrote: > > Why is it that so many hijack threads rather

LC Server- Optimum setup

2020-10-19 Thread prothero--- via use-livecode
Folks, I’ve reposted this in a new thread, at Sean's suggestion. Please ignore my posting in the ssl thread. I’ve been thinking about experimenting with Livecode server. I have a vps and root access, but I’m wondering what are the speed and user consequences of installing it at root level, or

RE: SQL Show Status

2020-10-19 Thread Ralph DiMola via use-livecode
Sean, revQueryDatabase(tConnId, “SHOW STATUS”) only returns an integer That integer is a record set. In my case it returned 536 rows. Each row has two columns: Variable_name Value Let me tell you Mr. Johnson... Some very interesting stuff in there. Ralph DiMola IT Director Evergreen

Re: First version of LC that supports httpS?

2020-10-19 Thread Mark Waddingham via use-livecode
On 2020-10-19 17:31, Klaus major-k via use-livecode wrote: Hi all, see subject, maybe someone happens to know. Obviously LC 5.02 does not support httpS yet. HTTPS has been supported since engine version 2.6 judging by the libURL source - so that would be LiveCode 2.x (for some 'x' - I can't

Re: Textsize of label of copied btn changes

2020-10-19 Thread Bob Sneidar via use-livecode
One of those gotchas that you learn once and never forget. It's really handy when you want to change the look and feel of an entire stack, or each card in a stack. It REALLY is handy when creating cross platform apps and you want to use one font for both Windows and Mac without having to change

Re: First version of LC that supports httpS?

2020-10-19 Thread Sean Cole (Pi) via use-livecode
5.0.2 supports https but not TLS1.2 I got around this by using the revSecurity.dll from LC9 which works. On Mon, 19 Oct 2020 at 17:31, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi all, > > see subject, maybe someone happens to know. > Obviously LC 5.02 does not

SQL Show Status

2020-10-19 Thread Sean Cole (Pi) via use-livecode
Hi As everyone likes to hijack threads here, I’ve started another to make sure it gets seen. revQueryDatabase(tConnId, “SHOW STATUS”) only returns an integer Same for revdb_execute which returns 0 Any clues on how to actually get the status back? Still trying to work out why these

Re: SSL cPanel mySql setup

2020-10-19 Thread ELS Prothero via use-livecode
Sean, LC server issues seemed like the general topic. Sorry to have bothered you. Bill William Prothero http://es.earthednet.org > On Oct 19, 2020, at 9:47 AM, Sean Cole (Pi) via use-livecode > wrote: > > Why is it that so many hijack threads rather than start new ones? > >> On Mon, 19 Oct

Re: SSL cPanel mySql setup

2020-10-19 Thread Sean Cole (Pi) via use-livecode
Why is it that so many hijack threads rather than start new ones? On Mon, 19 Oct 2020 at 17:30, ELS Prothero via use-livecode < use-livecode@lists.runrev.com> wrote: > Folks, > I’ve been thinking about experimenting with Livecode server. I have a vps > and root access, but I’m wondering what are

First version of LC that supports httpS?

2020-10-19 Thread Klaus major-k via use-livecode
Hi all, see subject, maybe someone happens to know. Obviously LC 5.02 does not support httpS yet. Thanks a lot in advance! Best Klaus -- Klaus Major https://www.major-k.de kl...@major-k.de ___ use-livecode mailing list

Re: SSL cPanel mySql setup

2020-10-19 Thread ELS Prothero via use-livecode
Folks, I’ve been thinking about experimenting with Livecode server. I have a vps and root access, but I’m wondering what are the speed and user consequences of installing it at root level, or as a cgi. The cgi is fairly large and I’m concerned about both speed and memory issues when multiple

Re: Textsize of label of copied btn changes

2020-10-19 Thread ELS Prothero via use-livecode
Richard, Yes, if my memory doesn’t fail me, it was in italic. Hmmm, I guess I was supposed to know that meant it wasn’t set and the value shown was a default? Best, Bill William Prothero http://es.earthednet.org > On Oct 18, 2020, at 11:38 PM, Richard Gaskin via use-livecode > wrote: > >

Re: Help needed :)

2020-10-19 Thread panagiotis merakos via use-livecode
Great, thank you very much Matthias :) I will file an enhancement request to make sure this behavior is documented in the dictionary entry of the screenrect. Kind regards, Panos -- On Mon, 19 Oct 2020 at 18:45, matthias rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Panos,

Re: SSL cPanel mySql setup

2020-10-19 Thread Sean Cole (Pi) via use-livecode
Hi revQueryDatabase(tConnId, “SHOW STATUS”) only returns an integer Same for revdb_execute which returns 0 Any clues on how to actually get the status back? Still trying to work out why these certificates are not working. Sean -- Sean Cole *Pi Digital Productions Ltd* www.pidigital.co.uk

Re: Help needed :)

2020-10-19 Thread matthias rebbe via use-livecode
Hi Panos, my father in law came back earlier than expected. You were correct. The phone display was zoomed. I switched it back to "standard" and tested again. With "standard" the screenrect returns 0,0,414,736 Regards, Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am

Re: Help needed :)

2020-10-19 Thread panagiotis merakos via use-livecode
Thanks Matthias, your help is much appreciated. Kind regards Panos On Mon, Oct 19, 2020, 18:35 matthias rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > > - > Matthias Rebbe > Life Is Too Short For Boring Code > > > Am 19.10.2020 um 17:17 schrieb panagiotis merakos via

Re: Help needed :)

2020-10-19 Thread matthias rebbe via use-livecode
- Matthias Rebbe Life Is Too Short For Boring Code > Am 19.10.2020 um 17:17 schrieb panagiotis merakos via use-livecode > : > > Hmm I think I have found something - I had checked for this before - but in > the wrong place. > > @Matthias could you check if "Display Zoom" is enabled in your

Re: Help needed :)

2020-10-19 Thread panagiotis merakos via use-livecode
Hmm I think I have found something - I had checked for this before - but in the wrong place. @Matthias could you check if "Display Zoom" is enabled in your device? This is in Settings -> Display and Brightness and then scroll down and in the "Display Zoom" section, does it say "Standard" or

Re: Help needed :)

2020-10-19 Thread panagiotis merakos via use-livecode
Hello Matthias, Thank you very much for testing. Hmm that's interesting. I forgot to mention that the affected iPhones 8+ are running iOS 14. The simulator we tested was running iOS 13.3. I am wondering if this is an iOS 14 issue. We are working on adding support for building with Xcode 12 /

Re: Help needed :)

2020-10-19 Thread matthias rebbe via use-livecode
Hi Panos, i just borrowed me an iphone 8 Plus. I can confirm that on the real device the screenrect returns 0,0,375,667 Tried with all 3 variations (ipad, ipod, ipod/iphone/ipad) and with iOS 10,11,12,13. iOS 14.01 Modell MQ8L2ZD/A Regards, - Matthias Rebbe Life Is Too Short For Boring

Re: Help needed :)

2020-10-19 Thread panagiotis merakos via use-livecode
Heh I wrote that msg in my phone while I was in a hurry, and I now see the auto-correct has changed a couple of things :) Corrections: * A LC user ... * ...and it works as expected for us Thank you :) Panos -- On Mon, 19 Oct 2020 at 14:58, panagiotis merakos wrote: > Hello folks, > > I LC

Help needed :)

2020-10-19 Thread panagiotis merakos via use-livecode
Hello folks, I LC user (or in fact a couple of this user's clients) are experiencing a strange issue which we cannot reproduce, as we do not have the specific hardware. Long story short, "the screenrect" function returns for them incorrect values on an iPhone 8 Plus physical device. We have

Re: LC iOS Command 'mergPopActivity'

2020-10-19 Thread Andreas Bergendal via use-livecode
Graham wrote: ”[…] iOS Deployment, for me a nightmare compared with simply coding and debugging.” Indeed - I know the feeling, as do many of us, I believe. I wise man (Richard Gaskin actually) once said: ”Mobile development is like building a ship in a bottle.” I find that a very apt and

Re: LC iOS Command 'mergPopActivity'

2020-10-19 Thread Graham Samuel via use-livecode
Thanks very much for that. Sadly on a first look, in this particular case there is little or no additional detail about the command. Nevertheless I think there should be a link to the Merg web site in the LC Dictionary itself. I rely heavily on the Dictionary, and only venture elsewhere when I

Re: SSL cPanel mySql setup

2020-10-19 Thread Thierry Douez via use-livecode
> Le 19 oct. 2020 à 08:45, Dev via use-livecode > a écrit : > > Since I have been on DreamHost for more than a decade, I would love to have > something like this set up. I’m not too proficient with Terminal or Linux, > but can follow instructions. I would love to know if there is a crib

Re: SSL cPanel mySql setup

2020-10-19 Thread Neville Smythe via use-livecode
> I'm not sure what that DH rep is going on about, because the same set of > LC Lessons that describe how to set it up via Apache config also include > one on setting it up via .htacces on shared hosts. Many thanks Richard I will give it a go. I was once told by a DreamHost support guy that

Re: SSL cPanel mySql setup

2020-10-19 Thread Dev via use-livecode
Hi Richard Since I have been on DreamHost for more than a decade, I would love to have something like this set up. I’m not too proficient with Terminal or Linux, but can follow instructions. I would love to know if there is a crib sheet or step by step or tutorial that I could follow to get an

Re: Textsize of label of copied btn changes

2020-10-19 Thread Richard Gaskin via use-livecode
ELS Prothero wrote: > Yes, I realize that. However, when I first created the button, on the > source card, I expected that the text size and font would be what was > displayed in the ide. However, none were actually set. Confusing for > one who trusts that the ide displays the actual properties

Re: SSL cPanel mySql setup

2020-10-19 Thread Richard Gaskin via use-livecode
Neville Smythe wrote: On 19 Oct 2020, at 3:00 am, use-livecode-request at lists.runrev.com wrote: 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

Re: Textsize of label of copied btn changes

2020-10-19 Thread ELS Prothero via use-livecode
Richard, Yes, I realize that. However, when I first created the button, on the source card, I expected that the text size and font would be what was displayed in the ide. However, none were actually set. Confusing for one who trusts that the ide displays the actual properties of the object.