[Perl-unix-users] Sessions with Perl in Apache

2002-03-20 Thread Boris Villazon
Hi, Does anybody knows how can I manage sessions on Perl over Apache? Thanks in advance Boris ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: [Perl-unix-users] Sendmail Web-Based Console.

2002-03-20 Thread Johnno
try webmin www.webmin.com i use this all the time for sendmail/postfix etc... basicallt it is a handyman toolbox :)) Johnno - Original Message - From: "Tim Rhodes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 21, 2002 7:26 AM Subject: [Perl-unix-users] Sendmail Web-

[Perl-unix-users] blocking.al

2002-03-20 Thread William Martin
I'm trying to get a basic socket program started, but using SessionSet.pm for some trial and error non-blocking programming. The problem is that my program accepts a connection, but then complains after I connect to it, trying to use SessionSet->New. /* Program Output */ Listening for conne

RE: [Perl-unix-users] Sendmail Web-Based Console.

2002-03-20 Thread Adam Frielink
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Tim > Rhodes > Hello Everyone, > I am looking for a Sendmail Web-Based Console and was > wondering if someone > could pass some suggestions my way. I looked at Sendmail Switch, > but it is > jus

[Perl-unix-users] Sendmail Web-Based Console.

2002-03-20 Thread Tim Rhodes
Hello Everyone, I am looking for a Sendmail Web-Based Console and was wondering if someone could pass some suggestions my way. I looked at Sendmail Switch, but it is just to expensive. Even a perl solution I could program for adding/editing/removing users via Web Browsers would be much

RE: [Perl-unix-users] Finding start and end date for lastmonth

2002-03-20 Thread Craig Sharp
Thats exactly what I was looking for. I forgot about sprintf. Thanks! Craig >>> "Adam Frielink" <[EMAIL PROTECTED]> 03/20/02 02:11PM >>> > -Original Message- > From: Craig Sharp [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 20, 2002 12:45 PM > The problem is that I need to ass

RE: [Perl-unix-users] Finding start and end date for lastmonth

2002-03-20 Thread Arnold, Craig
Another thing you could try is $var = sprintf "%04d-%02d-%02d", $year, $month, $day ; -Original Message- From: Adam Frielink [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 11:12 AM To: Craig Sharp; [EMAIL PROTECTED] Subject: RE: [Perl-unix-users] Finding start and end date for

RE: [Perl-unix-users] Finding start and end date for lastmonth

2002-03-20 Thread Adam Frielink
> -Original Message- > From: Craig Sharp [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 20, 2002 12:45 PM > The problem is that I need to assign the result to a variable and > still maintain 2 characters for month and day. This info must be > sent to a database that only understand

RE: [Perl-unix-users] Finding start and end date for lastmonth

2002-03-20 Thread Craig Sharp
Adam, That worked. I combined the localtime and Date::Calc functions to get the result: 2002-01-01 The problem is that I need to assign the result to a variable and still maintain 2 characters for month and day. This info must be sent to a database that only understands the format -mm-d

RE: [Perl-unix-users] Finding start and end date for last month

2002-03-20 Thread Adam Frielink
If you run this on the first, try localtime((time)-60*60*24) and then manipulate the returned list. Or I believe Date::Calc has a Day_In_Month method which only requires the year and month for paramters. Adam > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On

[Perl-unix-users] Finding start and end date for last month

2002-03-20 Thread Craig Sharp
I need to be able to find the start and end dates for last month on the first of each month. Once found, I need to store them in variables in the format 2002-02-01, etc. Does anyone have a script to do this or can you point me in the right direction? Thanks, Craig A. Sharp Unix Systems Admini