Page 1 of 1

Livecode server on fedora

Posted: Thu Nov 21, 2013 3:57 am
by mpmahen
I have installed the livecode server on Fedora, but get some strange results when running the following script:
<html>

<head>
<title>My LiveCode Server Test Page</title>
</head>

<body>
<h1>My LiveCode Server Test Page</h1>
<?irev
put "<p>hello from me</p>"
put "<p>Hello World! from LiveCode Server</p>"
put the date
put "<p>The date is" && the date & "</p>"

?>
</body>

</html>

This generate the output:

My LiveCode Server Test Page
hello from me
" put "
Hello World! from LiveCode Server
" put the date put "
The date is" && the date & "
" ?>

So it does not work correctly, but seems to interpret some of the lines...
Any suggestions?

Re: Livecode server on fedora

Posted: Thu Nov 21, 2013 7:38 am
by bangkok
[quote="mpmahen"]

I would say that... the LC server does not interpret... at all your script.

Make a test with just :

Code: Select all

<?irev
    put the date
?>
Have you tried with "<?lc" instead of "<?irev" ?

Do you use Apache ?

Re: Livecode server on fedora

Posted: Tue Nov 26, 2013 7:35 am
by mpmahen
Yes I use apache.

have tested all dependancies and resolved all of them, but still no joy.
Also tried <?irev and <?lc

Will try some other options..