Re: CGI::Session

2004-10-11 Thread Owen
On Mon, 11 Oct 2004 12:03:27 -0500 Bill Stephenson <[EMAIL PROTECTED]> wrote: > So I tried installing it with cpan using this line: > > cpan> install CGI:Session maybe try install CGI::Session -- -- Owen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: :Session

2004-10-11 Thread Davis, Sean (NIH/NHGRI)
It looks like in your "install" command, you have only a single colon between CGI and Session. Try 'install CGI::Session'. At least one of the examples worked for me in the recent past. Sean -Original Message- From: Bill Stephenson To: [EMAIL PROTECTED] Sent: 10/11/2004 1:03 PM Subject

CGI::Session

2004-10-11 Thread Bill Stephenson
Could anyone provide a working example of a simple script that uses "use CGI::Session;" I've tried playing with the examples at: http://search.cpan.org/~sherzodr/CGI-Session-3.95/Session/Tutorial.pm And either they are way out of date or I'm just a complete dufus... I got errors starting

Re: Capturing PID of Shell Calls

2004-10-11 Thread Bill Jones
--- Jamie Bridges <[EMAIL PROTECTED]> wrote: > I am attempting to collect the PIDs of system/backtick calls ( up to > 40 of > them ) and revisit them to ensure that they completed. The frontend > interface is CGI but in this case that part is working fine. I > cannot, > however, find anythin

RE: Capturing PID of Shell Calls

2004-10-11 Thread Bob Showalter
Jamie Bridges wrote: > I am attempting to collect the PIDs of system/backtick calls ( up to > 40 of them ) and revisit them to ensure that they completed. Both system() and backticks call wait() internally, so they don't return until the child process terminates. If you want to start a process an

perl.beginners.cgi Weekly list FAQ posting

2004-10-11 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addres

Capturing PID of Shell Calls

2004-10-11 Thread Jamie Bridges
I wonder if anyone has run into this issue before. I am attempting to collect the PIDs of system/backtick calls ( up to 40 of them ) and revisit them to ensure that they completed. The frontend interface is CGI but in this case that part is working fine. I cannot, however, find anything in my