Re: Cgi/perl

2007-04-21 Thread Mumia W.
On 04/20/2007 07:29 PM, John Maverick wrote: Folks, Got a question regarding perl code in cgi script. I am running below line of code in cgi script which doesn't work as expected. my $ticket = qx{echo $p4pass | p4 login -p $p4user}; Basically command has to return a ticket or error message. I

Re: CGI-Perl fails to work on Solaris

2004-06-30 Thread Wiggins d Anconia
> Hi, >My perl script which uses CGI module fails to work > in Solaris giving Standard HTTP 500 Internal server > error.I checked the Apache log. It says "Premature > end of script headers:" > > But it works fine in HPUX and Windows. Is there any > thing That has to be take care of in Solar

Re: CGI-Perl list

2002-02-26 Thread Elaine -HFB- Ashton
Naika - EV1 [[EMAIL PROTECTED]] quoth: *>Can someone direct me to the cgi-perl list for beginners? I'm trying to find *>it but am unable. If anyone has the subscribe headers for it that will do as *>well, thanks. http://lists.cpan.org/showlist.cgi?name=beginners-cgi e. -- To unsubscribe, e-mai

Re: CGI perl html urgent

2002-01-07 Thread Bud Rogers
Prahlad Vaidyanathan wrote: > Does emacs do syntax highlighting ? I've been using Vim for a very > long time now, but last time I checked Emacs didn't do it. Xemacs does. IMO not as good as Vim, but very good nonetheless. It's been a very long time since I used Emacs, but I'm pretty sure it d

Re: CGI perl html urgent

2002-01-07 Thread Prahlad Vaidyanathan
Hi, On Sun, 06 Jan 2002 Brett W. McCoy spewed into the ether: [-- snip --] > You shouldn't use WordPad for writing Perl code (or any kind of code), you > should get some kind of programmer's editor that can do syntax > highlighting and has some kind of smarts about the syntax of the language > yo

Re: CGI perl html urgent

2002-01-06 Thread Brett W. McCoy
On Sat, 5 Jan 2002, mb wrote: > >I have a question, real quick. Why use the < >section of html to print out instead of just print qq~ ~; for instance? > What > >are the advantages of using this other method? > > > I' m new on perl world but I found the < tedieus > than > print table( TR( td( "

Re: CGI perl html urgent

2002-01-06 Thread mb
>-Message d'origine- >De : [EMAIL PROTECTED] <[EMAIL PROTECTED]> >À : mb <[EMAIL PROTECTED]> >Cc : [EMAIL PROTECTED] <[EMAIL PROTECTED]> >Date : dimanche 6 janvier 2002 03:50 >Objet : Re: CGI perl html urgent > > >> >>Also, I ha

RE: CGI perl html urgent

2002-01-05 Thread Alan C.
Subject: RE: CGI perl html urgent Hi, Different? -- I think of it as a way when i need larger amounts of text or html tags or larger amounts of whatever. But perhaps all it is is part of Perl's characteristic of "there's more than one way to do it" (tmtowtdi) I thin

Re: CGI perl html urgent

2002-01-05 Thread mb
-Message d'origine- De : Robert Howard <[EMAIL PROTECTED]> À : [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date : samedi 5 janvier 2002 13:38 Objet : RE: CGI perl html urgent >I have a question, real quick. Why use the <section of html to print out instead of just pr

RE: CGI perl html urgent

2002-01-05 Thread Robert Howard
I have a question, real quick. Why use the <mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 3:43 PM To: mb Cc: [EMAIL PROTECTED] Subject: Re: CGI perl html urgent So many things were wrong: Here is a cleanup version: (See attached file: VoirStock.cgi) I inserted line 21 for

Re: CGI perl html urgent

2002-01-04 Thread William.Ampeh
So many things were wrong: Here is a cleanup version: (See attached file: VoirStock.cgi) I inserted line 21 for my purposes, so uncomment line 20 and comment out line 21 20 #$fichier = "../src/Stock.txt"; 21 $fichier = "Stock.txt"; Output: --

Re: CGI/Perl Cookies

2001-07-29 Thread Marcelo Ramos
El Sun, 29 Jul 2001 11:57:22 EDT [EMAIL PROTECTED] escribió: >Hello there, > >Two questions, if anyone can help that would be great. > >I have this script that sets cookies.. 6 of them to be exact.. What script? Regards. -- __

RE: CGI-PERL!!!!!!!!!!!HELP!!!!!!!!!!!!!!!

2001-07-16 Thread Sally
Have you checked your permissions? -Original Message- From: Rahul Garg [mailto:[EMAIL PROTECTED]] Sent: 16 July 2001 09:00 To: [EMAIL PROTECTED] Subject: CGI-PERL!!!HELP!!! Hello Everybody.. What i have done is placed a .cgi file in cgi-bin directory of web

Re: CGI-PERL!!!!!!!!!!!HELP!!!!!!!!!!!!!!!

2001-07-16 Thread Jos I. Boumans
One: don't put all those ! in your subject, it's quite annoying Two: there's a beginners cgi list for just this sort of question Three: if you want help, you might want to concider describing your problem a bit more, as well as showing some code Four: You might want to check, if you're on linux, w

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-16 Thread Rajeev Rumale
Dear rahul, Here is a sample code for something you want to do. just add the file handling process to it. Rajeev Rumale ___ Yesterday is history. Tomorrow a mystery. Today is a gift. That's why it's called Present.

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-15 Thread Teresa Raymond
BTW: There is a beginners-cgi list: http://lists.perl.org/showlist.cgi?name=beginners-cgi I think this is partially what you are looking for. hyperlink way to send parameters can be done in html page w/out cgi script: http://www.yoursite.com/script.cgi?param=value,pa

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-14 Thread C.J. Collier
Heya Rahul, You'd probably find all this information in CGI.pm. It takes a bit to get used to it, but after that, it's smooth sailing. For more info, run this at your command prompt: perldoc CGI CGI.pm comes with the Perl distribution, so you don't have to worry about grabbing it from CPAN,

Re: CGI-PERL-HTML.......HELP!!!!!!!!!!!!!!!

2001-07-14 Thread Pete Sergeant
>1. where( & how) to write code in perl script(HTML) for actions >to occur on clicking hyperlinks . In my very humble opinion, your best option here is to pass the script information using the query_string. So, for example: http://localhost/la.pl?sample_data 'sample_data' is then available from

RE: CGI-PERL

2001-07-11 Thread John Edwards
You might want to look at the CGI.pm module. This should come installed with the standard build of perl. Docs for it can be found http://stein.cshl.org/WWW/software/CGI/ there. You could also subscribe to the beginners-cgi mailing list. Go to http://learn.perl.org details are there. HTH John

RE: CGI-PERL

2001-07-11 Thread Mal Beaton
http://stein.cshl.org/WWW/software/CGI/cgi_docs.html there is also an oreilly's book cgi programmin with perl however I have found the best way is using the cgi.pm module Licoln stein is the author he also has a book (the official guide to programming with cgi.pm) I have found it to be an ex