Hey,
I am just about to take my first crack at perl by
documenting several perl script files.
The person who wrote the scripts isn't here anymore.
The scripts files were written for Apache Web server
running on Linux.
Can anyone give me some advise of how to use the
debugger? Such as "perl -d"
Hi Mike,
you can either try to run the scripts from the command line
perl -d myscript.pl
or you try using another debugger:
For example install Tk and the Devel::ptkdb module.
Then read the CGI section of
perldoc Devel::ptkdbd
Gabor