perl modules

Status
Not open for further replies.

yudhasm

New Member
Messages
6
Reaction score
0
Points
0
how do i manage perl module/extension ?
because i want to add a new module to perl
 

Derek

Community Support Force
Community Support
Messages
12,882
Reaction score
186
Points
63
Which module of perl are you taking about?
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
You have to download and install the module yourself and install it in a subdirectory, say public_html/perl/modules/foo

Then at the top of your script, add

use lib qw(/home/username/public_html/perl/modules/foo );
 

yudhasm

New Member
Messages
6
Reaction score
0
Points
0
Which module of perl are you taking about?

here is i several perl module need to instal : Apache::Htpasswd, Encode::compat, Lingua::EN::Sentence, Unicode::MapUTF8, and Win32::Console.

i'm in process of learning twiki 4.3.2
 

yudhasm

New Member
Messages
6
Reaction score
0
Points
0
You have to download and install the module yourself and install it in a subdirectory, say public_html/perl/modules/foo

Then at the top of your script, add

use lib qw(/home/username/public_html/perl/modules/foo );

i agree with that... but the problem is there are just to many perl script... so its tiresome to edit each and every perl script to read to not default module location
 
Status
Not open for further replies.
Top