Re: Checking a received header for LC Server or revIgniter>

2020-12-17 Thread Ralf Bitter via use-livecode
Hi David, if you go the revIgniter route use rigGetHTTPheader("myCustomHeader"), otherwise you can use $_SERVER["HTTP_myCustomHeader"]. Ralf On 17.12.20 00:35, David Bovill via use-livecode wrote: I’m looking to check for received custom headers on a Livecode + revIgniter based server. I

Re: Checking a received header for LC Server or revIgniter>

2020-12-17 Thread David Bovill via use-livecode
Fantastic - thanks! NB I don’t get a result when searching for rigGetHTTPheader in the revIgniter docs. I guess it’s not documented? On 17 Dec 2020, 10:13 +, How to use LiveCode , wrote: > > rigGetHTTPheader ___ use-livecode mailing list

Re: CentOS Death in 2021

2020-12-17 Thread Sean Cole (Pi) via use-livecode
Good shout. Although, having the gui available helps when things go wrong like the PDF font rendering issues and being able to see the templates build as it goes for each page/card. But thanks for the heads up. Sean On Thu, 17 Dec 2020 at 05:40, Richard Gaskin via use-livecode <

Re: Debian 10 install failure

2020-12-17 Thread Mark Wieder via use-livecode
On 12/17/20 8:29 AM, Sean Cole (Pi) via use-livecode wrote: Hi all, Continuing my study on Linux alternatives, I've just tried installing LC9.6.2RC onto the latest Debian 10 (buster) build (clean install in Parallels from its add VM page). However, it comes up with an error when installing LC

Debian 10 install failure

2020-12-17 Thread Sean Cole (Pi) via use-livecode
Hi all, Continuing my study on Linux alternatives, I've just tried installing LC9.6.2RC onto the latest Debian 10 (buster) build (clean install in Parallels from its add VM page). However, it comes up with an error when installing LC right after double-clicking the installer: "Failed to load

Re: Debian 10 install failure

2020-12-17 Thread Sean Cole (Pi) via use-livecode
Hmm, so why would it say "Failed to load library 'gdk' (tried libgdk-x11-2.0.so.0)"? Sean On Thu, 17 Dec 2020 at 17:11, Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > On 12/17/20 8:29 AM, Sean Cole (Pi) via use-livecode wrote: > > Hi all, > > > > Continuing my study on

Re: Debian 10 install failure

2020-12-17 Thread Sean Cole (Pi) via use-livecode
Solved. Debian 10 buster has GTK 3.0 installed but LC needs GTK 2.0. I just ran the following: sudo apt-get install --reinstall libgtk2.0-0 This got me back down to gtk v2 and the installer for LC ran properly. Sean Cole *Pi Digital * On Thu, 17 Dec 2020 at 17:43, Sean Cole (Pi) wrote: >

Re: Debian 10 install failure

2020-12-17 Thread Mark Wieder via use-livecode
On 12/17/20 9:57 AM, Sean Cole (Pi) via use-livecode wrote: Solved. Debian 10 buster has GTK 3.0 installed but LC needs GTK 2.0. I just ran the following: sudo apt-get install --reinstall libgtk2.0-0 This got me back down to gtk v2 and the installer for LC ran properly. Cool. Maybe has to do