Some perl module management scripts

This first script will list the perl modules you have installed and the version number. #!/usr/bin/perl # use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module) || “???”; print Read more…

Useful Web developer links

I just compiled this list of sites I regularly use and think are top notch for a friend. Thought it was worth sharing. Firefox and extensions – web browser http://www.mozilla.org/products/firefox/ https://addons.mozilla.org/extensions/moreinfo.php?id=60 – Essential extension. I Read more…

suexec

While trying to get a cgi script working on a PLesk managed box, I came across this error in /etc/httpd/logs/suexec_log cannot stat program: (blahdeblah.cgi) An explanation of this vague and misguiding message can be found Read more…