[23127] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 5348 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Aug 12 18:10:37 2003

Date: Tue, 12 Aug 2003 15:10:13 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)

Perl-Users Digest           Tue, 12 Aug 2003     Volume: 10 Number: 5348

Today's topics:
        perl + mysql + apache on windows <raja_babu0@lycos.com>
    Re: perl + mysql + apache on windows <mothra@nowhereatall.com>
    Re: perl + mysql + apache on windows <noreply@gunnar.cc>
    Re: perl + mysql + apache on windows <raja_babu0@lycos.com>
    Re: perl + mysql + apache on windows <raja_babu0@lycos.com>
    Re: perl + mysql + apache on windows <mothra@nowhereatall.com>
    Re: perl + mysql + apache on windows ctcgag@hotmail.com
        Perl popup window under MS Windows <spamfilter0@navasgroup.com>
    Re: Replace a word if its not in an html tag <gisle@ashn89ty262h.bc.hsia.telus.net>
        To count a number of lines in C++ or Java or ASCII file (John Smith)
        Windows user --take 2 <jim.bloggs@eudoramail.com>
    Re: Windows user --take 2 <jim.bloggs@eudoramail.com>
    Re: Windows user --take 2 <uri@stemsystems.com>
    Re: Windows user --take 2 <jim.bloggs@eudoramail.com>
    Re: Windows user --take 2 <uri@stemsystems.com>
    Re: Windows user --take 2 <mothra@nowhereatall.com>
    Re: Windows user --take 2 <trammell+usenet@hypersloth.invalid>
    Re: Windows user --take 2 <jim.bloggs@eudoramail.com>
    Re: Windows user --take 2 <trammell+usenet@hypersloth.invalid>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Tue, 12 Aug 2003 19:44:52 GMT
From: "RB" <raja_babu0@lycos.com>
Subject: perl + mysql + apache on windows
Message-Id: <Usb_a.175998$rsJ.6273@news04.bloor.is.net.cable.rogers.com>


I am running mySQL 3.23.57 on windows 2000. I configured it to run on named
pipes ( enable-named-pipe ), and the server starts nicely. I have a perl
script which tries to establish a connection to mySQL server:

use DBI;

my $dsn = 'dbi:mysql:mydatabase';

# set the user and password
my $user = 'root';
my $pass = 'xxxxxxxxx';

# now connect and get a database handle
my $dbh = DBI->connect($dsn, $user, $pass);
# or die "Can't connect to the DB: $DBI::errstr\n";
print "done"

When I run this from the command line, the output is a string "done".

When I run the same perl script under cgi-bin using Apache(2.0.47), I can
see the following in the error_log:

[Mon Aug 11 14:42:23 2003] [error] [client w.x.y.z] DBI
connect('mydatabase','root',...) failed: Can't connect to MySQL server on
'localhost' (10061) at E:/Program
Files/ApacheGroup/Apache2/cgi-bin/testdb.pl line 17
[Mon Aug 11 14:42:23 2003] [error] [client w.x.y.z] Can't connect to the DB:
Can't connect to MySQL server on localhost' (10061)

I can of course do this from a shell prompt:

mysql -u root -p mydatabase

mysqld-nt is not listening on port 3306 ( netstat -a shows this )....

What am I missing here? Why do I get the 10061 error ( which seems to be a
Winsock error code - connection refused ).

thanks,
rb




------------------------------

Date: Tue, 12 Aug 2003 13:00:01 -0700
From: "Mothra" <mothra@nowhereatall.com>
Subject: Re: perl + mysql + apache on windows
Message-Id: <3f37f83e$1@usenet.ugs.com>

Hello,

"RB" <raja_babu0@lycos.com> wrote in message
news:Usb_a.175998$rsJ.6273@news04.bloor.is.net.cable.rogers.com...
>
[snipped]

> use DBI;
>
> my $dsn = 'dbi:mysql:mydatabase';
[more snippage]

for my $dsn I use
$dsn  = "DBI:mysql:database=seating;host=cypci748";
It has the hostname, just a though :)

Hope this helps

Mothra




------------------------------

Date: Tue, 12 Aug 2003 22:06:48 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: perl + mysql + apache on windows
Message-Id: <bhbhcb$10b5a5$1@ID-184292.news.uni-berlin.de>

RB wrote:
> 
> my $dsn = 'dbi:mysql:mydatabase';

<snip>

> What am I missing here? Why do I get the 10061 error ( which seems to be a
> Winsock error code - connection refused ).

Without really knowing the answer to your question, when playing with 
MySQL on my local Windows 98 box, I have experienced that I need to 
explicitly state 'localhost'. Doing so might be worth a try:

     my $dsn = 'dbi:mysql:mydatabase:localhost';

-- 
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl



------------------------------

Date: Tue, 12 Aug 2003 20:15:41 GMT
From: "RB" <raja_babu0@lycos.com>
Subject: Re: perl + mysql + apache on windows
Message-Id: <NVb_a.176187$rsJ.40778@news04.bloor.is.net.cable.rogers.com>

Hi,

I tried what you suggested - changing the dsn to
'dbi:mysql:database=mydatabase:host=localhost' - it had no effect - I still
get the connect error...

thanks,
rb

"Mothra" <mothra@nowhereatall.com> wrote in message
news:3f37f83e$1@usenet.ugs.com...
> Hello,
>
> "RB" <raja_babu0@lycos.com> wrote in message
> news:Usb_a.175998$rsJ.6273@news04.bloor.is.net.cable.rogers.com...
> >
> [snipped]
>
> > use DBI;
> >
> > my $dsn = 'dbi:mysql:mydatabase';
> [more snippage]
>
> for my $dsn I use
> $dsn  = "DBI:mysql:database=seating;host=cypci748";
> It has the hostname, just a though :)
>
> Hope this helps
>
> Mothra
>
>




------------------------------

Date: Tue, 12 Aug 2003 20:18:57 GMT
From: "RB" <raja_babu0@lycos.com>
Subject: Re: perl + mysql + apache on windows
Message-Id: <RYb_a.176207$rsJ.23591@news04.bloor.is.net.cable.rogers.com>

I tried what you suggested - i modifed the dsn to be something like:

my $dsn = 'dbi:mysql:database=mydatabase:host=localhost'

it had no effect - I still get the connect error...

thanks,

"Gunnar Hjalmarsson" <noreply@gunnar.cc> wrote in message
news:bhbhcb$10b5a5$1@ID-184292.news.uni-berlin.de...
> RB wrote:
> >
> > my $dsn = 'dbi:mysql:mydatabase';
>
> <snip>
>
> > What am I missing here? Why do I get the 10061 error ( which seems to be
a
> > Winsock error code - connection refused ).
>
> Without really knowing the answer to your question, when playing with
> MySQL on my local Windows 98 box, I have experienced that I need to
> explicitly state 'localhost'. Doing so might be worth a try:
>
>      my $dsn = 'dbi:mysql:mydatabase:localhost';
>
> --
> Gunnar Hjalmarsson
> Email: http://www.gunnar.cc/cgi-bin/contact.pl
>




------------------------------

Date: Tue, 12 Aug 2003 13:25:42 -0700
From: "Mothra" <mothra@nowhereatall.com>
Subject: Re: perl + mysql + apache on windows
Message-Id: <3f37fe42$1@usenet.ugs.com>

Please do not top post. It anoys the regulars here
[text rearranged]

"RB" <raja_babu0@lycos.com> wrote in message
news:NVb_a.176187$rsJ.40778@news04.bloor.is.net.cable.rogers.com...
> "Mothra" <mothra@nowhereatall.com> wrote in message
> news:3f37f83e$1@usenet.ugs.com...
> > Hello,
> >
> > "RB" <raja_babu0@lycos.com> wrote in message
> > news:Usb_a.175998$rsJ.6273@news04.bloor.is.net.cable.rogers.com...
> > >
> > [snipped]
> >
> > > use DBI;
> > >
> > > my $dsn = 'dbi:mysql:mydatabase';
> > [more snippage]
> >
> > for my $dsn I use
> > $dsn  = "DBI:mysql:database=seating;host=cypci748";
> > It has the hostname, just a though :)
> >
>"RB" <raja_babu0@lycos.com> wrote
> Hi,
>
> I tried what you suggested - changing the dsn to
> 'dbi:mysql:database=mydatabase:host=localhost' - it had no effect - I
still
> get the connect error...
>
you might want to try:

telnet localhost 3306
and see if you can get a connection. then troubleshoot from there

Mothra




------------------------------

Date: 12 Aug 2003 21:07:12 GMT
From: ctcgag@hotmail.com
Subject: Re: perl + mysql + apache on windows
Message-Id: <20030812170712.414$aG@newsreader.com>

"RB" <raja_babu0@lycos.com> wrote:
> I am running mySQL 3.23.57 on windows 2000. I configured it to run on
> named pipes ( enable-named-pipe ), and the server starts nicely. I have a
> perl script which tries to establish a connection to mySQL server:
>
> use DBI;
>
> my $dsn = 'dbi:mysql:mydatabase';
>
> # set the user and password
> my $user = 'root';
> my $pass = 'xxxxxxxxx';
>
> # now connect and get a database handle
> my $dbh = DBI->connect($dsn, $user, $pass);
> # or die "Can't connect to the DB: $DBI::errstr\n";
> print "done"
>
> When I run this from the command line, the output is a string "done".
>
> When I run the same perl script under cgi-bin using Apache(2.0.47), I can
> see the following in the error_log:
>
> [Mon Aug 11 14:42:23 2003] [error] [client w.x.y.z] DBI
> connect('mydatabase','root',...) failed: Can't connect to MySQL server on
> 'localhost' (10061) at E:/Program
> Files/ApacheGroup/Apache2/cgi-bin/testdb.pl line 17
> [Mon Aug 11 14:42:23 2003] [error] [client w.x.y.z] Can't connect to the
> DB: Can't connect to MySQL server on localhost' (10061)


Pardon if this question doesn't make sense on Windows, but who is apache
running as?  Who are you running as when you do it from the command
line?  Who has permissions on the named pipe?

Xho

-- 
-------------------- http://NewsReader.Com/ --------------------
Usenet Newsgroup Service              New Rate! $9.95/Month 50GB


------------------------------

Date: Tue, 12 Aug 2003 19:02:25 GMT
From: John Navas <spamfilter0@navasgroup.com>
Subject: Perl popup window under MS Windows
Message-Id: <5Ra_a.11085$dk4.427043@typhoon.sonic.net>

A simple and crude but often effective alternative to Win32::MsgBox is:

   system("%COMSPEC% /c echo YOUR MESSAGE\a & pause");

This will open a command window, display the line of YOUR MESSAGE (with the \a
causing a beep), and then pause with "Press any key to continue..."),
whereupon your Perl program will continue.

-- 
Best regards,
John Navas     <http://navasgrp.home.att.net/>


------------------------------

Date: Tue, 12 Aug 2003 22:00:04 GMT
From: Gisle Aas <gisle@ashn89ty262h.bc.hsia.telus.net>
Subject: Re: Replace a word if its not in an html tag
Message-Id: <m3ptja1qn5.fsf@ashn89ty262h.bc.hsia.telus.net>

tim.cavins@sitel.com (Tim) writes:

> What would the regular expression be to replace the word "body" in an
> html document as long as it's not in between < and > so it doesn't
> replace the actual body tag or anything else with body?

There is an example of this in the HTML-Parser distribution.  See:

   http://search.cpan.org/src/GAAS/HTML-Parser-3.28/eg/htextsub

If you run this program as 'htextsub s/body/foo/g file.html' it should
do what you want.

-- 
Gisle Aas,
ActiveState


------------------------------

Date: 12 Aug 2003 14:15:12 -0700
From: clearguy02@yahoo.com (John Smith)
Subject: To count a number of lines in C++ or Java or ASCII files  by exluding white spaces and comments
Message-Id: <500f84f3.0308121315.3d02afdb@posting.google.com>

Hi all,

We have huge files in Java and C++ and I need to count the total
number of lines in each of them by excluding white spaces (from the
beginning of a line) and comments (C++, Java comments etc).

There must be some scripts in perl to do this job.

Can anyone kindly let me know? Or, are there any third-party tools to
do this job?

Thanks,
John


------------------------------

Date: Tue, 12 Aug 2003 20:51:26 +0100
From: "doofus" <jim.bloggs@eudoramail.com>
Subject: Windows user --take 2
Message-Id: <bhbgg0$108b12$1@ID-150435.news.uni-berlin.de>

I'm following the instructions at
http://www.verysimple.com/scripts/support_modules_windows.html.

I downloaded the make utility from
http://www.rtr.com/Ready-to-Run_Software/windows_readypak.htm

For option 1, when I get to the make line, I get

C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>make
Makefile:645: *** missing separator.  Stop.

C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>

This happens repeatedly, no matter what the module.

<garment type="underwear" material="asbestos">

I expect the worst (as usual [smirk] )





------------------------------

Date: Tue, 12 Aug 2003 21:03:46 +0100
From: "doofus" <jim.bloggs@eudoramail.com>
Subject: Re: Windows user --take 2
Message-Id: <bhbh74$10ivkk$1@ID-150435.news.uni-berlin.de>

doofus wrote:
> I'm following the instructions at
> http://www.verysimple.com/scripts/support_modules_windows.html.
>
> I downloaded the make utility from
> http://www.rtr.com/Ready-to-Run_Software/windows_readypak.htm
>
> For option 1, when I get to the make line, I get
>
> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>make
> Makefile:645: *** missing separator.  Stop.
>
> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>
>
> This happens repeatedly, no matter what the module.
>
> <garment type="underwear" material="asbestos">
>
> I expect the worst (as usual [smirk] )

I should add that I also downloaded nmake.exe from
http://perl.about.com/library/weekly/aa030500b.htm

but it's much the same.

C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>dir
 Volume in drive C has no label.
 Volume Serial Number is 3C43-A300

 Directory of C:\1\DOWNLO~1\perl\modules\SEARCH~1.95

12/08/2003  20:31       <DIR>          .
12/08/2003  20:31       <DIR>          ..
15/12/1998  20:55                3,762 Binary.pm
15/12/1998  20:41                   46 ChangeLog
12/08/2003  20:31               17,729 Makefile
01/12/1998  08:36                  291 Makefile.PL
15/12/1998  20:47                   53 MANIFEST
15/12/1998  20:51                  401 README
               6 File(s)         22,282 bytes
               2 Dir(s)   8,276,389,888 bytes free

C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>make
Makefile:645: *** missing separator.  Stop.

C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>nmake

Microsoft (R) Program Maintenance Utility   Version 1.50
Copyright (c) Microsoft Corp 1988-94. All rights reserved.

NMAKE : fatal error U1081: 'C:\WINNT\system32\cmd.exe /e:2048' : program
not fou
nd
Stop.

C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>




------------------------------

Date: Tue, 12 Aug 2003 20:16:31 GMT
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: Windows user --take 2
Message-Id: <x7u18m638h.fsf@mail.sysarch.com>

>>>>> "d" == doofus  <jim.bloggs@eudoramail.com> writes:

  d> I expect the worst (as usual [smirk] )

well the usual good help is not going to happen as you pissed off
everyone here. 

uri

-- 
Uri Guttman  ------  uri@stemsystems.com  -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs  ----------------------------  http://jobs.perl.org


------------------------------

Date: Tue, 12 Aug 2003 21:19:10 +0100
From: "doofus" <jim.bloggs@eudoramail.com>
Subject: Re: Windows user --take 2
Message-Id: <bhbi40$10cc4q$1@ID-150435.news.uni-berlin.de>

Uri Guttman wrote:
>>>>>> "d" == doofus  <jim.bloggs@eudoramail.com> writes:
>
>   d> I expect the worst (as usual [smirk] )
>
> well the usual good help is not going to happen as you pissed off
> everyone here.

Or maybe they just don't know very much after all.

Maybe that's why they have so much time to hang out on usenet making
punctilious comments.

I notice this newsgroup isn't exactly busy.




------------------------------

Date: Tue, 12 Aug 2003 20:35:21 GMT
From: Uri Guttman <uri@stemsystems.com>
Subject: Re: Windows user --take 2
Message-Id: <x7r83q62d2.fsf@mail.sysarch.com>

>>>>> "d" == doofus  <jim.bloggs@eudoramail.com> writes:

  d> Uri Guttman wrote:
  >>>>>>> "d" == doofus <jim.bloggs@eudoramail.com> writes:
  >>
  d> I expect the worst (as usual [smirk] )
  >>  well the usual good help is not going to happen as you pissed off
  >> everyone here.

  d> Or maybe they just don't know very much after all.

hehe. a bit more than you for sure.

  d> Maybe that's why they have so much time to hang out on usenet
  d> making punctilious comments.

and you have so much time to waste on cursing and blathering instead of
reading the docs.

  d> I notice this newsgroup isn't exactly busy.

by what standard? you don't know much about usenet either it seems.

ok, try another topic where you don't know much. how about civility? or
patience?

and why should we care what you think about this group? we have been
here for a long time and will be here after you decide to annoy the
python people or whatever. try asking them why whitespace is important.

BTW, your nickname is so appropriate. did your mother name you doofus?

uri

-- 
Uri Guttman  ------  uri@stemsystems.com  -------- http://www.stemsystems.com
--Perl Consulting, Stem Development, Systems Architecture, Design and Coding-
Search or Offer Perl Jobs  ----------------------------  http://jobs.perl.org


------------------------------

Date: Tue, 12 Aug 2003 13:42:34 -0700
From: "Mothra" <mothra@nowhereatall.com>
Subject: Re: Windows user --take 2
Message-Id: <3f380237$1@usenet.ugs.com>


"doofus" <jim.bloggs@eudoramail.com> wrote in message
news:bhbh74$10ivkk$1@ID-150435.news.uni-berlin.de...
> doofus wrote:
> > I'm following the instructions at
> > http://www.verysimple.com/scripts/support_modules_windows.html.

ok

> >
> > I downloaded the make utility from
> > http://www.rtr.com/Ready-to-Run_Software/windows_readypak.htm

[snipped]

> but it's much the same.
>
[more snippage]
for windows always use nmake not make. but I guess you have already
figured that out :)

Also, you need to run perl Makefile.PL to generate the makefile.

> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>nmake
>
> Microsoft (R) Program Maintenance Utility   Version 1.50
> Copyright (c) Microsoft Corp 1988-94. All rights reserved.
>
> NMAKE : fatal error U1081: 'C:\WINNT\system32\cmd.exe /e:2048' : program
> not found
> Stop.
It seems that you do not have cmd.exe. This is standard on
WNT4.0 W2K and XP however I am not sure about the
other windows OS's. Have you checked to see if you have this
exe file?
What version of perl are you using (output from perl -V)
What version of the Windows OS are you running on?
(95,95,Me)

Hope this helps

Mothra




------------------------------

Date: Tue, 12 Aug 2003 20:41:00 +0000 (UTC)
From: "John J. Trammell" <trammell+usenet@hypersloth.invalid>
Subject: Re: Windows user --take 2
Message-Id: <slrnbjik6s.nof.trammell+usenet@hypersloth.el-swifto.com.invalid>

On Tue, 12 Aug 2003 20:51:26 +0100, doofus <jim.bloggs@eudoramail.com>
wrote:
> I'm following the instructions at
> http://www.verysimple.com/scripts/support_modules_windows.html.
>  
> I downloaded the make utility from
> http://www.rtr.com/Ready-to-Run_Software/windows_readypak.htm
>  
> For option 1, when I get to the make line, I get
>  
> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>make
> Makefile:645: *** missing separator.  Stop.
>  
> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>
>  
> This happens repeatedly, no matter what the module.
>  

What did you find when you Googled for this error message?

I'm sure someone else has had this problem, and maybe even
found a fix.



------------------------------

Date: Tue, 12 Aug 2003 22:40:56 +0100
From: "doofus" <jim.bloggs@eudoramail.com>
Subject: Re: Windows user --take 2
Message-Id: <bhbmta$uvl6e$1@ID-150435.news.uni-berlin.de>

John J. Trammell wrote:
> On Tue, 12 Aug 2003 20:51:26 +0100, doofus <jim.bloggs@eudoramail.com>
> wrote:
>> I'm following the instructions at
>> http://www.verysimple.com/scripts/support_modules_windows.html.
>>
>> I downloaded the make utility from
>> http://www.rtr.com/Ready-to-Run_Software/windows_readypak.htm
>>
>> For option 1, when I get to the make line, I get
>>
>> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>make
>> Makefile:645: *** missing separator.  Stop.
>>
>> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>
>>
>> This happens repeatedly, no matter what the module.
>>
>
> What did you find when you Googled for this error message?
>
> I'm sure someone else has had this problem, and maybe even
> found a fix.

Sadly not. That was the first thing I tried.

But I *do* appreciate the suggestion, this time. Thanks!





------------------------------

Date: Tue, 12 Aug 2003 22:03:26 +0000 (UTC)
From: "John J. Trammell" <trammell+usenet@hypersloth.invalid>
Subject: Re: Windows user --take 2
Message-Id: <slrnbjip1e.ppg.trammell+usenet@hypersloth.el-swifto.com.invalid>

On Tue, 12 Aug 2003 22:40:56 +0100, doofus <jim.bloggs@eudoramail.com> wrote:
> John J. Trammell wrote:
>> On Tue, 12 Aug 2003 20:51:26 +0100, doofus <jim.bloggs@eudoramail.com>
>> wrote:
>>> I'm following the instructions at
>>> http://www.verysimple.com/scripts/support_modules_windows.html.
>>>
>>> I downloaded the make utility from
>>> http://www.rtr.com/Ready-to-Run_Software/windows_readypak.htm
>>>
>>> For option 1, when I get to the make line, I get
>>>
>>> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>make
>>> Makefile:645: *** missing separator.  Stop.
>>>
>>> C:\1\DOWNLO~1\perl\modules\SEARCH~1.95>
>>>
>>> This happens repeatedly, no matter what the module.
>>>
>>
>> What did you find when you Googled for this error message?
>>
>> I'm sure someone else has had this problem, and maybe even
>> found a fix.
> 
> Sadly not. That was the first thing I tried.
> 

Your Google must be broken.  Try mine:

 http://www.google.com/search?q=makefile+missing+separator+stop
 http://www.google.com/search?q=perl+module+nmake+missing+separator
 http://groups.google.com/groups?q=windows+nmake+missing+separator+group\
 %3Acomp.lang.perl.modules



------------------------------

Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>


Administrivia:

The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc.  For subscription or unsubscription requests, send
the single line:

	subscribe perl-users
or:
	unsubscribe perl-users

to almanac@ruby.oce.orst.edu.  

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.

For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V10 Issue 5348
***************************************


home help back first fref pref prev next nref lref last post