Is there a list of installed Perl modules ?

cerbere

New Member
Messages
51
Reaction score
1
Points
0
Hi folks,

I am a newbie here, teaching myself Perl scripting.
I wonder if there is a list of the installed Perl modules
(and the underlying binary libraries) that I can use here.

My main interest is web graphics, and I was happy to find
that GD is supported. After seeing what a malicious robot
could do to a friendly chatroom, I got interested in
CAPTCHAs, as you can see here :
http://ixedix.x10hosting.com/
Hit your browser's REFRESH to see variations.
 

woiwky

New Member
Messages
390
Reaction score
0
Points
0
There was a link to manage perl modules in cpanel, but they removed it for one reason or another. You can still get to it if you login to your cpanel and go to:

http://ixedix.x10hosting.com:2082/frontend/x3/module_installers/main.html?lang=perl

Any modules you installed should be listed there, as well as options to view system modules and modules available for installation.

However, considering that they removed this option, I'm not sure how reliable these features are. I assume that the system modules list is valid, but I don't know about the option to install more.

By the way, nice job with the CAPTCHA's.
 
Last edited:

cerbere

New Member
Messages
51
Reaction score
1
Points
0
Thanks, woiwky, that helped a lot.

For example, I want to use the GD::Graph module to show
histograms of the Perl rand() function, checking if I really
get a flat one with, say, 10000 calls to

$random_integer_from _0_to_9 = int(rand(9) + 0.5);
 
Top