in reply to CGI question

Is the path to Perl (/usr/local/bin/perl) correct? Do the web server's logs contain any clues? Can you run the CGI script successfully at the command-line?

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^2: CGI question
by spencerr1 (Novice) on Feb 08, 2013 at 17:31 UTC

    Will check that out. Thanks