Search the web
Sign In
New User? Sign Up
Perl_Official · Perl . CGI . Shell script
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1973 - 2002 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1973
Dear Frinends, I want know the use of the Text::Decorator in perl .Any sample code or document ? Thanks in advance....
ussabari
Offline Send Email
Nov 15, 2006
7:56 am
1974
Ok, I've troubleshot this for ages and now I'm turning to the experts. I am testing out mod_perl on our site. I read all of the mod_perl docs and guides and...
lucl2000
Offline
Nov 20, 2006
5:21 am
1975
... Apparently so! Actually, I'd bet this is more of a web server configuration problem than a perl problem. ... Any chance this is a multi-step process or...
rob_wilson_98
Online Now
Nov 20, 2006
12:36 pm
1976
Hi friends, i wanted to create a daemon and wants to be assured it is running successfully. so i think of making a script in perl which will see that the...
abhishek jain
ejaincom
Offline Send Email
Nov 24, 2006
7:17 pm
1977
tell me hw to save the contents of the running program ,is thr any commands in perl ,i hv tried using the command "system",but iam able to store only the...
kalaivani
premrajan_18
Offline Send Email
Dec 9, 2006
6:08 pm
1978
can anyone tell me hw to convert a perl program to an exe file regards kalaivani...
kalaivani
premrajan_18
Offline Send Email
Dec 9, 2006
6:11 pm
1979
perl to exe is possible. http://www.indigostar.com/perl2exe.htm put this perl2exe in the folder and put the file which u want to convert into exe in the same...
magesh mari
magesh616
Offline Send Email
Dec 10, 2006
10:30 pm
1980
i hv downloaded the perl2exe.exe,but still i hv problem in conversion eventhough i followed ur steps in conversion when i typed in dos prompt (i.e) perl2exe...
kalai vani
premrajan_18
Offline Send Email
Dec 11, 2006
5:05 pm
1981
friends no need to reply for this i hv no problem in conversion to exe and storing it ,sorry for saying still thr is a problem ,anyway thank u frnds for...
kalai vani
premrajan_18
Offline Send Email
Dec 11, 2006
5:08 pm
1982
hi, IF i run it it executes correctly. Unzip this folder in d: or any drive Put the a perl file in the same folder. ie if u unzip in the name p2x1 put the...
magesh mari
magesh616
Offline Send Email
Dec 11, 2006
10:51 pm
1983
now i hv no problem in conversion of exe,can u tell me hw to revert back the process (i.e) exe to original script for viewing it regards kalaivani Krishna...
kalai vani
premrajan_18
Offline Send Email
Dec 12, 2006
8:59 am
1984
oh guys that is not a legal one. Still there is no program to convert exe to script....
magesh mari
magesh616
Offline Send Email
Dec 12, 2006
4:14 pm
1985
is thr any function in perl to display system time. regards kalaivani...
kalaivani
premrajan_18
Offline Send Email
Dec 18, 2006
5:00 pm
1986
I think localtime does so, you may also try DateTime on CPAN http://search.cpan.org/~drolsky/DateTime-0.35/lib/DateTime.pm If this solves the problem do reply...
abhishek jain
ejaincom
Offline Send Email
Dec 19, 2006
7:14 pm
1987
i hv used local time function itself.it worked.thank u frnd regards kalaivani abhishek jain <ejaincom@...> wrote: I think localtime does so, you may also...
kalai vani
premrajan_18
Offline Send Email
Dec 20, 2006
5:46 pm
1988
hi, I am new to this group...... i preferred to join here for getting answers for my doubts, .... #! /usr/local/bin/perl -Tw sub foo { my $data = shift; if...
perl_sathiya
Offline Send Email
Dec 21, 2006
11:38 am
1989
... perl> hi, perl> I am new to this group...... i preferred to join here for getting perl> answers for my doubts, .... More like *homework*. Please don't post...
merlyn@...
merlynstoneh...
Online Now Send Email
Dec 21, 2006
6:28 pm
1990
I'm quite comfortable using the perl debugger, which works great for character based applications. I know that CGI.pm does have a simple approach for running...
Glen
glen_brydon
Offline Send Email
Jan 16, 2007
4:17 pm
1991
Hi, I'm Andy Schafer and I'm new here. I am working on building a website and have learned HTML, Javascript, and Perl. Now I am working on learning CGI and I...
Andy Schafer
lostgameparts
Offline Send Email
Feb 21, 2007
2:58 pm
1992
... Andy> I'm Andy Schafer and I'm new here. I am working on building a website Andy> and have learned HTML, Javascript, and Perl. Now I am working on Andy>...
merlyn@...
merlynstoneh...
Online Now Send Email
Feb 21, 2007
7:17 pm
1993
... I installed plain Apache on my Windows XP box and login to localhost to run scripts from a client, like IE or Firefox. Installation isn't difficult if you...
Charles K. Clarkson
nottherat
Offline Send Email
Feb 21, 2007
7:17 pm
1994
Andy, I'd recommend that you: 1) Download and install the Apache webserver on your PC from http://httpd.apache.org/download.cgi. This is a free program. 2)...
millerdw2003
Offline Send Email
Feb 22, 2007
1:29 am
1995
Hi all. How can we get the time taken by a simple perl function in milliseconds. to illustrate my problem better..see the following: my time1 =...
rockmohit
Offline Send Email
Feb 22, 2007
11:31 pm
1996
... rockmohit> How can we get the time taken by a simple perl function in rockmohit> milliseconds. "perldoc Benchmark" -- Randal L. Schwartz - Stonehenge...
merlyn@...
merlynstoneh...
Online Now Send Email
Feb 23, 2007
4:30 pm
1997
Hi Darren, Thanks for the help. I tried what you suggested and did fine loading Perl and Apache (I think). Then I tried to follow the steps to configure Apache...
Andy Schafer
lostgameparts
Offline Send Email
Feb 26, 2007
6:09 pm
1998
Hi, You can can use: $time1=time(); &fun; $time2=time(); time() function returns epoch value(mili seconds) of current time. For more time functions---------- ...
Nawab Ahmad
nawab_01cs33
Offline Send Email
Feb 26, 2007
6:09 pm
1999
Hi, I faced the same problem some days back. Can you just make sure your test.cgi has execute permission or not for others. You can give execute permission by...
Prasad Joshi
prasadjoshi_aol
Offline Send Email
Feb 27, 2007
9:15 am
2000
I had a power failure the other night, and apparently my drive decided to loose data in /usr/local/lib/perl5/5.8.0 . After turning back on the power this...
klmcwhirter
Offline
Mar 5, 2007
8:15 pm
2001
BTW: I am running rehat 9 on an old Dual Processor BP6 machine. ... turning ... has ... even...
klmcwhirter
Offline
Mar 5, 2007
8:25 pm
2002
I recently uninstalled Perl 5.8.2 and reinstalled Perl 5.8.8. After doing this, I noticed there were some issues when attempting to restart apache. I initially...
cohibaport
Offline Send Email
Mar 14, 2007
6:42 am
Messages 1973 - 2002 of 2062   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help