Re: sessions

2008-08-26 Thread Dwalu Z. Khasu
On Sun, 24 Aug 2008, Lars Haugseth wrote: =* [EMAIL PROTECTED] (David Dorward) wrote: = = JuneEarth wrote: = How to make CGI sessions to be shared among multi-webservers? Thanks. = = They have to use a shared data store for the session information. Using = a database for that would be one

Re: Favorite Perl CGI Framework for Web Site Development?

2005-02-11 Thread Dwalu Z. Khasu
On Fri, 11 Feb 2005, Chris Devers wrote: =On Fri, 11 Feb 2005, Siegfried Heintze wrote: = = I notice there are a lot of frameworks out there for .NET (eg, .NETNUK), = PHP, and Java (eg AppFuse) programmers. These are sets of files that form a = typical starter site (or skeleton) that have the

Re: Restart Apache

2002-11-26 Thread Dwalu Z. Khasu
On Tue, 26 Nov 2002, Jeremy Schwartz wrote: =I am trying to rotate my Apache logs using Cron and the following shell =script: = =# /bin/sh = =mv /var/log/httpd/access_log /users/admin/logs/ =apachectl restart = =This script is set to 755 and is being executed by the root crontab. The =first line

Re: Change first character of a string into Caps

2002-02-09 Thread Dwalu Z. Khasu
On Sat, 9 Feb 2002, Rene Verharen wrote: =Hi, = =I need to change the first (and ONLY the first) character of a string into =Caps. I know how to change the whole string into Caps by using this : = =my $in = this is my text; =$out = uc $in; = =This is not what I want. Can someone

Re: aanother simple question

2001-09-20 Thread Dwalu Z. Khasu
Use 'eq' for string comparisons and '==' for numerical -- - Dwalu .peace -- I am an important person in this world - Now is the most important time in my life - My mistakes are my best teachers - So I will be fearless. - Student

Re: uninitialised value strings

2001-08-29 Thread Dwalu Z. Khasu
=The attached snippet of code produces errors of unitialised value =strings for the lines I have marked. The script compiles OK. What =obvious newbie thing am I missing? = =Cheers Thanks = =Francesco = =#!/usr/bin/perl -w =# =# add taint check later = =use CGI qw(:standard); =use strict;

Re: Round function

2001-08-08 Thread Dwalu Z. Khasu
You want int(). See below % perl -e 'print int(13.96)' - Dwalu .peace -- I am an important person in this world - Now is the most important time in my life - My mistakes are my best teachers - So I will be fearless. - Student

Re: Round function

2001-08-08 Thread Dwalu Z. Khasu
. - Student Creed On Wed, 8 Aug 2001, Brett W. McCoy wrote: =On Wed, 8 Aug 2001, Dwalu Z. Khasu wrote: = = You want int(). See below = = % perl -e 'print int(13.96)' = =Actually, no, that only gives 13. If you wanted that to round to 14, =you'd want = =printf(%2.f, 13.96) = =-- Brett

Re: getting the calling function name.

2001-08-07 Thread Dwalu Z. Khasu
. = =- = = =- Original Message - =From: Dwalu Z. Khasu [EMAIL PROTECTED] =To: Rajeev Rumale [EMAIL PROTECTED] =Cc: Beginners-Cgi (E-mail) [EMAIL PROTECTED] =Sent: Monday, August 06, 2001 3:47 PM =Subject: Re: getting the calling function name. = = = See perldoc -f caller

Re: getting the calling function name.

2001-08-06 Thread Dwalu Z. Khasu
See perldoc -f caller On Mon, 6 Aug 2001, Rajeev Rumale wrote: =Hello Every Body, = =I need some help. =I am using a sub routine to log all the messages to be used for debugging =purpose. =ie. debugLogger($debug_message); =Since very similare kind of messages are genrated at serveral places, I

Re: Regrex substitution!!!

2001-07-11 Thread Dwalu Z. Khasu
How about 's/\d+?/x/g;' - Dwalu .peace -- I am an important person in this world - Now is the most important time in my life - My mistakes are my best teachers - So I will be fearless. - Student Creed On Wed, 11 Jul 2001, Fernando

Re: Regrex substitution!!!

2001-07-11 Thread Dwalu Z. Khasu
will be fearless. - Student Creed On Wed, 11 Jul 2001, Dwalu Z. Khasu wrote: =How about 's/\d+?/x/g;' = = - Dwalu =.peace =-- =I am an important person in this world - =Now is the most important time in my life - =My mistakes are my best teachers