Re: iOS "Invalid Entitlements"

2017-04-07 Thread Sannyasin Brahmanathaswami via use-livecode
Hmm none of these are true, but we still get invalid entitlements. 1) this is an adhoc distribution profile for use with registered UDIDs ; "Beta Version" is unchecked in the SA settings 2) mergHK inclusion does not even appear in the inclusions options (8.1.3) 3) "In App Purchase" is not enable

Re: Recording audio with LC on OSX?

2017-04-07 Thread Terry Judd via use-livecode
Thanks Phil – I’ll have a look at sox as that could let me get things working on Windows as well. Best regards, Terry... On 7/04/2017 5:16 pm, "use-livecode on behalf of Phil Davis via use-livecode" wrote: Hi Terry, If you don't mind using a command line app from within your LC

Re: html5 feature list anywhere? sqlite? local file access?

2017-04-07 Thread Rick Harrison via use-livecode
Hi Dr. Hawkins, I didn’t see that anyone answered your question yet so I thought I’d take a stab at it. Others can please feel free to correct me if my information is too old or whatever. HTML5 as I understand it in it’s current form is still considered “experimental” according to the LiveCode t

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Mike Bonner via use-livecode
Yep. We're suffering from different soup flavors (The permission problem you're running into.. the need to set the sessionsavepath) vs my soup (it won't actually load the session variables) but inedible is inedible, no matter the cause. *sigh* On Fri, Apr 7, 2017 at 12:54 PM, Rick Harrison via use

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Rick Harrison via use-livecode
Hi Mike, Well I’m glad to see I’m not alone here in not being able to get “start session” to work. Now we can enjoy being in the soup together! LOL Rick > On Apr 7, 2017, at 1:50 PM, Mike Bonner via use-livecode > wrote: > > Ok. The problem with "start session" is most likely trying to write

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Rick Harrison via use-livecode
Hi Matthias, Yes, that was what I was trying to do with no luck getting that working. I can get it to work from a client-side stack without any issue, but when I try to move that code into a .lc web script page it won’t work. So, that’s why I decided I’d better ask what others are doing to pass in

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Mike Bonner via use-livecode
Ok. The problem with "start session" is most likely trying to write the session file to a place without write permissions. Make sure you set the sessionsavepath to a place you can write to. Having said that.. I can't make it work. I can get past start session, all the way to stop session, no tro

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Matthias Rebbe via use-livecode
> Am 07.04.2017 um 18:21 schrieb Rick Harrison via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > Hi Matthias, > > Yes, I want to output some information to the user, and other > information remains hidden - where some data is adjusted, > modified, on the third webpage. > > No, I’

Philadelphia Area Developer?

2017-04-07 Thread iden via use-livecode
I am looking for a Philadelphia area live code developer for a small project for a friend. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Rick Harrison via use-livecode
Hi Matthias, Yes, I want to output some information to the user, and other information remains hidden - where some data is adjusted, modified, on the third webpage. No, I’m not looking to redirect to another webpage, although I have used that technique in the past on other types of webservers. I

Re: iOS "Invalid entitlements"

2017-04-07 Thread panagiotis merakos via use-livecode
The cases where I had seen this "Invalid Entitlements" error are the following: 1. "Beta-version" is checked in iOS standalone settings BUT the provisioning profile is a development one (and not a distribution one) 2. The mergHK inclusion is checked in Inclusions, but the provisioning profile I u

Re: Passing Variables in a non-CGI LC Server?

2017-04-07 Thread Rick Harrison via use-livecode
Hi Mike, Yes, I’m hitting lc server script pages directly in the browser though a web server. Yes, all of my pages are .lc based. I looked at the link you suggested for session management. I put the code exactly as it was to see if the example would work. It doesn’t work. As soon as it gets to

Re: iOS "Invalid entitlements"

2017-04-07 Thread Sannyasin Brahmanathaswami via use-livecode
No I had not checked that… it was not needed two weeks ago, when I was successfully building in 9.dp5.. . but I just tried checking that and still get the same message… "invalid entitlements… missing… do not match" if there is a single line with http:// anywhere in our code, wiill this trigge

Re: Recording audio with LC on OSX?

2017-04-07 Thread Thierry Douez via use-livecode
> Is there a way to "cancel" a shell command that is still running in LC? > ​ Hi Greg, You can do it via another shell() call with the kill command. Of course, you need the ID of the process you did started before. Regards, Thierry -- Thierry

Re: Recording audio with LC on OSX?

2017-04-07 Thread pink via use-livecode
Let me add a +1 on using sox, I have an app I wrote for Linux that records to mp3 and that uploads to our server on completion. The one negative I have so far with it is that I need to specify recording length. Otherwise if I start recording without a time limit i cannot stop it. Is there a way

Re: Recording audio with LC on OSX?

2017-04-07 Thread Phil Davis via use-livecode
Hi Terry, If you don't mind using a command line app from within your LC app, you might try sox ( http://sox.sourceforge.net/ ). It is quite powerful and seems simpler to me than ffmpeg ( https://ffmpeg.org/) which I have also used from within LC. One of my apps uses sox to create voice record