[ back to toc ]

CGI and perl Debugger

Date: 2002/01/22 15:23

Q:
I am uploading a file in my CGI script and I want to test my script using
the perl debugger. I am having problems doing this and I am not sure if
it will even work, can you let me know if what I am attempting to do is
possible? I am new to both perl and Cgi.

Thanks :)
A:
No.

A bit more verbose: you can not use the Perl debugger when testing CGI
programs.

Perl debugger communicates on the console. There is no console in a CGI
process.

Regards,
Peter

[ back to toc ]