Re: on-rev.com Perl recipe

2009-11-02 Thread Sarah Reichelt
So - any time I have a problem on on-rev, first thing I do is look at the line endings ... I have to say that the On-Rev client and the On-Rev server both do a brilliant job of eliminating the line ending problems that plague standard CGI development. However if you use Perl scripts or any

Re: on-rev.com Perl recipe

2009-11-01 Thread Alex Tweedly
Yes, after a few tries The script was simple : #!/usr/bin/perl print Content-type: text/html\n\n; print HTML; html head titleA Simple Perl CGI/title /head body h1A Simple Perl CGI/h1 pHello World/p /body HTML exit; It's in http://www.alextweedly.on-rev.com/cgi-bin/hw.pl It's actually

on-rev.com Perl recipe

2009-10-31 Thread Michael Kann
I'm happy with how easy it is to get started with the on-rev website. I'm stuck, though, with trying to get a Perl script to work. Can anyone post a working setup recipe? I only need a feeble hello to get going. I guess I'll need: name of file text of file placement of file on server