I have found a flaw with the old Rev in that as my servers have evolved over the past 10 years and gotten faster, Rev causes a problem. The problem is that if too much information is being returned by Rev to the browser, it just stops and cuts it off. I've had to carefully craft pages to not include too much HTML code and any returned results are truncated and shown on another page, but I still run into issues sometimes. My solution has been to cease upgrading my server for single-core performance and instead focus on heat efficiency, disk throughput, and multi-core so that more instances can be run. I currently have a quad-core Xeon running that works very well, but I thought I would start trying out LiveCode Server on this setup.
LiveCode seems to execute CGIs a little differently than Rev did. Rev code started like this:
Code: Select all
#!revolution
on startup
(code here)
end startup
Livecode works a bit differently, in that you preface your code with:
Code: Select all
<lc?
(code here)
?>
I want to test the Livecode Server against a cgi that I know causes the "fast computer display problem" I note above, but I want to be sure it won't cause an issue with my setup.
Any insight or help would be appreciated.
Stryder