You can make a standard everyday perl script, just make it print out HTML instead of text. Once you have that you can configure apache like this :
ScriptAlias /script/ "/some/path/to/my/script.pl" If you then access the webserver http://ip.address/script/ you should get the HTML output of your script on your browser. On Wed, Jul 3, 2013 at 12:13 PM, Robert Freiberger <rfreiber...@gmail.com>wrote: > Hello everyone, > > I'm working on a work project where we are moving a few Perl scripts from > a command line to a web page that will allow more users to access the tool. > Basically it's a very simple script that takes an updated CSV feed, runs a > internal test, then reports back the numbers from the test. > > Ideally, we would like to have this run from a web page instead of from > the command line as more people would like to access the tool but don't > want to give everyone shell access. But the question is how should we build > out this web page? In college I did some CGI Perl writing but it looks like > (I could be wrong) that this is no longer the standard, and more people > recommend going with Dancer, Mojolicious or Catalyst. > > If anyone could provide suggestions to get started that would be great. > > Thanks, > Robert > > -- > Robert Freiberger > 510-936-1210 >