in reply to CGI redirect

Look in the error log of your web server, it will tell you more details than just a 500.
Perl 6 - links to (nearly) everything that is Perl 6.

Replies are listed 'Best First'.
Re^2: CGI redirect
by xyzzy (Pilgrim) on Oct 29, 2009 at 18:42 UTC
    Unfortunately the hosting service I signed up with uses cPanel and doesn't SSH. I have no idea where the actual logs are tucked away or if I can access them. The only "Error log" that is available only shows favicon 404s... but hey, it was cheap...
    $,=qq.\n.;print q.\/\/____\/.,q./\ \ / / \\.,q.    /_/__.,q..

      You still have options:

      • See if CGI::Carp qw(fatalsToBrowser); is of any use
      • Install a web server locally and test your script there
      • Run your script locally (without a web server) and see if you can make any sense of the output
      Perl 6 - links to (nearly) everything that is Perl 6.