Re: ISP won't install Perl modules

2003-01-19 Thread Wiggins d'Anconia
Message - From: <[EMAIL PROTECTED]> To: "Beginners-CGI List" <[EMAIL PROTECTED]> Sent: Friday, January 17, 2003 4:52 PM Subject: RE: ISP won't install Perl modules On Fri, 17 Jan 2003 15:18:42 +0100, Rene Verharen &l

Re: ISP won't install Perl modules

2003-01-17 Thread Octavian Rasnita
al Message - From: <[EMAIL PROTECTED]> To: "Beginners-CGI List" <[EMAIL PROTECTED]> Sent: Friday, January 17, 2003 4:52 PM Subject: RE: ISP won't install Perl modules On Fri, 17 Jan 2003 15:18:42 +0100, Rene Verharen

Re: ISP won't install Perl modules

2003-01-17 Thread Alfred Wheeler
Similar ("If it is a pure perl module") - If you are using cgi-bin as is typical, you can place the module into your cgi-bin /cgi-bin/Email and refer to as usual in your perl script, i.e. use Email::Valid; (This can clutter up cgi-bin..., but it worked for me.) Scot Robnett wrote: Rene, If

RE: ISP won't install Perl modules

2003-01-17 Thread Scot Robnett
Rene, If it is a pure perl module (I believe Email::Valid is), you can put it in one of your directories and push/unshift it into @INC. In some cases you may have to do that push or unshift inside a BEGIN so that the interpreter sees that action before reading @INC. Another option is to find a we

RE: ISP won't install Perl modules

2003-01-17 Thread wiggins
On Fri, 17 Jan 2003 15:18:42 +0100, Rene Verharen <[EMAIL PROTECTED]> wrote: > Hi all, > > My ISP won't install some Perl modules I want to use (Email::Valid and > Mail::Address). > Is there a way to install these modules in some directory I have