in reply to Re: Debugging a module that's failing under taint mode
in thread Debugging a module that's failing under taint mode

Is there some reason you can't run the code under the debugger or, even better, use an IDE such as Komodo?

I can't use an IDE as this is running on shared hosting.

Having never used the Perl debugger, I would not know where to start or how to use the information it gave me. Perhaps I should look at it.

  • Comment on Re^2: Debugging a module that's failing under taint mode

Replies are listed 'Best First'.
Re^3: Debugging a module that's failing under taint mode
by GrandFather (Saint) on Jul 02, 2021 at 14:38 UTC
    "I can't use an IDE as this is running on shared hosting."

    Of course you can use an IDE. There are several ways you can go about it depending on the IDE, but at least you can copy the code to your local machine mocking up parts of the system as needed. At best your IDE can connect to a remote system and let you debug the code running on that system. Using a good IDE for debugging is vastly more productive than any other technique.

    While not as good as an IDE, the Perl debugger allows you to place breakpoints to pause execution while you inspect the state of variables. You can then trace through code one statement at a time to see where execution really goes. See perldebtut. If you do any significant amount of coding the time spent to use a debugger will be paid back in time saved many times over!

    Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond