Tag: perl

  • Perl CPAN auto yes to all dependency

    Today I was installing a CPAN module on a server and it had a lots of dependency. And it was asking me every time to type “yes” to install those dependencies. Now for one or two dependency it’s ok but what if it has 40-50 dependencies like in my case. It’s very frustrating to wait…

  • Perl Send Error to Browser

    Displaying errors on the browser is insecure and not a good practice but if you want to debug the script and fix it then it will much easier if the errors are displayed on the browser itself and you can you disable it later. Add the following lines to script for sending debugging info to…