Search found 9 matches

by Pyrros
Wed Aug 20, 2014 9:09 pm
Forum: CGIs and the Server
Topic: Viewing addon domain
Replies: 3
Views: 4781

Re: Viewing addon domain

Hi

Have you come right? If not, first thing I would do is ping the domain name and see if it resolves to the correct IP address.

Simon
by Pyrros
Mon Aug 04, 2014 11:23 pm
Forum: CGIs and the Server
Topic: [SOLVED] All is broken - Error 500 :(
Replies: 6
Views: 5661

Re: [SOLVED] All is broken - Error 500 :(

I recently setup a server with Ubuntu - it was a bit of process to get everything running smoothly. I did not go the webmin roote, so I am not sure if this will help with the last things you need to do - http://activethought.net/setting-livecode-server/ Biggest problem I had was figuring out that I ...
by Pyrros
Sun Aug 03, 2014 7:52 pm
Forum: CGIs and the Server
Topic: Call a PHP script from a livecode server script
Replies: 7
Views: 7715

Re: Call a PHP script from a livecode server script

Hi John Looks like that should work - maybe best to talk to on-rev tech support. This works fine on my server: LC Script: <?lc put "test" into firstname put "FName=" & firstname into PostToPHPScript post PostToPHPScript to URL("path-to-php-script") put it ?> PHP Script: <?php $fname = $_POST["FName"...
by Pyrros
Fri Jul 18, 2014 10:52 pm
Forum: CGIs and the Server
Topic: Livecode CGIs co-existing with old-school Rev 2.x CGIs
Replies: 8
Views: 8062

Re: Livecode CGIs co-existing with old-school Rev 2.x CGIs

Hi I can't see why you can't have multiple versions of LiveCode running under Apache. It should work in a simliar fashion to how you can setup multiple versions of PHP, just take a look in google there should be a number of examples that you can adapt. You just won't be able to run them at the same ...
by Pyrros
Fri Jul 04, 2014 7:31 pm
Forum: CGIs and the Server
Topic: Livecode Server with nginx
Replies: 9
Views: 7786

Re: Livecode Server with nginx

You could look at setting up Nginx with something like Thttpd. Nginx does not support CGI itself - it has to pass if off to a third party server. That said, there is probably not going to be much difference in speed between Nginx and Apache as LiveCode is going parse scripts as pretty much the same ...
by Pyrros
Wed May 28, 2014 8:52 pm
Forum: CGIs and the Server
Topic: newb https question
Replies: 3
Views: 3898

Re: newb https question

Hi Paul You should be able to do that. I'm not an htaccess expert but I guessing something like this would work: htaccess directory in the site root - specify which urls must redirect to ssl e.g: RewriteCond %{HTTPS} != on RewriteRule ^(system|dashboard) {http-domain}%{REQUEST_URI} [NC,R=301] In the...
by Pyrros
Tue May 27, 2014 8:16 pm
Forum: CGIs and the Server
Topic: newb https question
Replies: 3
Views: 3898

Re: newb https question

I would just use .htaccess rewrite to force the https.
by Pyrros
Mon Apr 21, 2014 8:28 pm
Forum: CGIs and the Server
Topic: installing LiveCode Server on Mamp
Replies: 4
Views: 5076

Re: installing LiveCode Server on Mamp

Hi Dave

Unfortunately not. I tried getting mamp's windows version up and running on my pc, and its refusing to load. I'll try take a look at installing in a mac tomorrow when I am back at work.

Simon
by Pyrros
Sun Apr 20, 2014 8:39 pm
Forum: CGIs and the Server
Topic: installing LiveCode Server on Mamp
Replies: 4
Views: 5076

Re: installing LiveCode Server on Mamp

Hi Dave I had a simliar problem getting it to run on XAMPP on my PC. It looks like the problem is that the installation differs slightly on the later versions of apache. Here is what my directory directive ended up looking like to get everything running: <Directory “C:/xampp/livecode”> Options All A...

Go to advanced search