RE: unknown CPAN variables

2001-05-31 Thread Jeffrey Goff
It's just bad formatting. Just change 'on' to 'On' and vice versa for 'off'. No need to delete any lines. -Original Message- From: Paul Cotter [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 4:28 PM To: [EMAIL PROTECTED] Subject: unknown CPAN variables Can someone explain the fo

RE: a whole NEW problem! yeah!

2001-05-31 Thread Jeffrey Goff
I had this problem last week. Delete the logfile before running it from the webserver. The webserver will recreate the file with the proper permissions. -Original Message- From: Me [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 3:35 PM To: Nichole Bialczyk; [EMAIL PROTECTED] Subj

RE: Converter

2001-05-31 Thread Jeffrey Goff
Oddly enough, this might help: http://www.guru4hire.nl/asp2pl/ A VBScript ASP to Perl CGI converter. I don't work for these people, didn't write code for them, have no relation &c. Also, careful as it's an "online service". I also looked on search.cpan.org to no avail, although there are a few

RE: qw

2001-05-30 Thread Jeffrey Goff
Yep,caught that myself a few minutes -after- sending email. Apologies. -Original Message- From: Jeff Pinyan [mailto:[EMAIL PROTECTED]] On May 30, Jeffrey Goff said: >It's a shortcut for assigning words to an array. That statement would return >an array that looks roughl

RE: qw

2001-05-30 Thread Jeffrey Goff
It's a shortcut for assigning words to an array. That statement would return an array that looks roughly like this: ('"stuff",', '"more stuff",', '"even more stuff"') # Note the double quotes. Something like ("stuff","more stuff","even more stuff"); # was likely intended, without qw(). Search f

RE: iinfinite loop

2001-05-30 Thread Jeffrey Goff
Judging by the loop you seem to want, something like $data="Hey\nThis is\nmultiline"; @everyline = split(/\n/,$data); is probably more appropriate for your purposes. However the original comments re: $data never being modified still hold true. -Original Message- From: Brent Michalski [m