in reply to Re^4: Porting from cgi::session to using built in activeperl management
in thread Porting from cgi::session to using built in activeperl management

That still didn't work. I'm still getting an error stating: specified CGI application misbehaved by not returning a complete set of HTTP headers which could be anything really because the script runs fine without the use CGI::Session in there. At least it did work with use lib. I'm not sure what else to do at this point. This site is supposed to go live on the 18th of this month. Anyone have any suggestions for a windows host with MS Access that will let me use third party libraries? At least the host I'm with does have a 30-day money back policy.

Replies are listed 'Best First'.
Re^6: Porting from cgi::session to using built in activeperl management
by jplindstrom (Monsignor) on Jul 13, 2004 at 14:30 UTC
    This is just off the top of my head. It should get you going in the right direction:

    You need to see the error message. It's probably in the web server's error log. Ask the web host for instructions, or read their help pages.

    If you can't view it, you need to force it onto the web page (instead of the generic error you get).

    Put a

    use CGI::Carp qw(fatalsToBrowser);

    near the top of the script (before the CGI::Session stuff).

    If you still get the generic error, there might be a syntax error in your script somewhere else. Run it on a command line.

    /J