I'm trying to install revServer on my company linux (Ubuntu) VPS hosted server and I'm not sure whether revSever is installed and configured correctly.
I have followed the .htaccess method on this lesson http://lessons.runrev.com/spaces/lesson ... -revServer
The revServer distribution is in /cgi-bin/ with revServer itself in /cgi-bin/revserver/ as directed and my .htaccess file is as suggested:
Options ExecCGI
AddHandler irev-script .irev
Action irev-script /cgi-bin/revserver/revserver
DirectoryIndex index.irev index.html index.htm
I have a test page sitting in the /httpdocs/ folder with the following HTML, which I got from http://samples.on-rev.com/irev-engine-notes.txt - and I just added a title to check the page is rendering.
Code: Select all
<html>
<body>
<h1>Title</h1>
<p><?rev put "Hello World, the time is" && the time ?></p>
</body>
</html>
Best,
Keith..