unable to use perl script with post on university wireless network

2007-09-15 Thread perllearner
I am a little stumped as to what is happening, just a few hours ago, I was able to use the same script at home, however on a university wireless, the script just stalls, and even perl package manager gives a error 500. I am a little confused on where to go from here, or how to circumvent this, I a

Re: unable to use perl script with post on university wireless network

2007-09-16 Thread perllearner
On 16 Sep, 03:11, [EMAIL PROTECTED] (Mumia W.) wrote: > On 09/15/2007 01:17 PM, perllearner wrote: > > > I am a little stumped as to what is happening, just a few hours ago, I > > was able to use the same script at home, however on a university > > wireless, the script ju

Re: unable to use perl script with post on university wireless network

2007-09-17 Thread perllearner
On 16 Sep, 19:04, [EMAIL PROTECTED] (Chas Owens) wrote: > On 9/16/07, perllearner <[EMAIL PROTECTED]> wrote: > > > > > On 16 Sep, 03:11, [EMAIL PROTECTED] (Mumia W.) > > wrote: > > > On 09/15/2007 01:17 PM, perllearner wrote: > > > > > I a

using a perl module

2007-09-17 Thread perllearner
I am having a look at cpanel v3 code for using a perl module after installing it in your user directory (when not root): my $homedir = (getpwuid($>))[7];my $n_inc = scalar @INC;for (my $i = 0; $i < $n_inc; $i++ ) { if (-d $homedir . '/perl' . $INC[$i]) { unshift(@INC,$homedir . '/perl'

fork example

2007-09-17 Thread perllearner
I am trying to get my mind around using fork() I have a text file that has solid, liquid, and gas on it all on new lines, how I understand fork() is if I wanted to do a print each statement on each line in the file, fork() could do all at once with parent and child processes. I can get around doi