Re: conecting cgi and mdb? help please:)

2002-04-16 Thread Mo Holkar / UKG
At 13:43 17/04/02, you wrote: >I have install ActivePerl 5.6.1.630 in folder c:\perl >then I have run ppm and do the fallowing: > >PPM> install dbi >Install package 'dbi?' (y/N): y >Installing package 'dbi'... >Error installing package 'dbi': Could not locate a PPD file for package dbi >PPM> This

Parsing variables and HTML

2002-04-16 Thread Daniel Falkenberg
Hello All, I am having a little bit of trouble with HTML and perl. I want to be able to parse variable from some HTML code where a user hits a submit button and the data they entered from that from should be parsed to the next sub. At the moment I am using the following code... $action = param(

re: uploadfile cgi

2002-04-16 Thread Pedro Santos
Oops wrong error this is the error I get from my webserver [Wed Apr 17 04:24:24 2002] [error] [client 217.129.197.231] Premature end of script headers: /home/formprof/public_html/cgi-bin/manage.pl Pedro Santos _ ArteVirtual, Exploração de Tecnologias de Informação

What does this error mean?

2002-04-16 Thread Octavian Rasnita
Hi all, I have the following error: [Wed Apr 17 06:31:08 2002] [error] (26)Text file busy: exec of /var/www/teddy/cgi-bin/test.pl failed What does it mean "text file busy"? I've just made a test perl file with cat command, gave it the 755 rights, then I used a sync command but it doesn't want to

uploadfile cgi

2002-04-16 Thread Pedro Santos
Hi could someone tell me what's wrong with this cgi please Every time I try to run the next script througha form I get a 500 Internal Server Error and my http log(apache) gives me this error: [Wed Apr 17 04:08:27 2002] [error] [client 217.129.197.231] script not found or unable to stat: /ho

RE: Definition

2002-04-16 Thread Troy May
It just makes dealing with quotes alot easier. And you don't need to escape the extra quotes within it. For example, print "value=\"true\""; print qq!value="true"!; print qq/value="true"/; are all the same. The qq uses the next character instead of the " character. Then you must end the

Re: Perl CGI with ISP - advice?

2002-04-16 Thread DavidVanCamp
I cannot answer these questions, as I am facing exactly the same situation and have exactly the same set of question myself -- so I will be monitoring closely for any answers! However, as per CGI.pm, I do know that on Tripod/Lycos accts, they install CGI.pl and a number of Tripod*.pl modules for

Re: Definition

2002-04-16 Thread Bill Lyles
Ok, Sorry about that Anyway what do you mean perldoc -f qq? what does the ~qq mean? - Original Message - From: "fliptop" <[EMAIL PROTECTED]> To: "Bill Lyles" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 8:53 PM Subject: Re: Definition > Bill Lyles wrote: >

Cookied

2002-04-16 Thread Andrew Rosolino
Why isnt my cookie getting saved. - #!/usr/bin/perl -w # WeBeWebin # Browse Admin # Andrew Rosolino # V. 1.0 # Load Modules use DBI; use CGI qw/:standard/; use CGI::Carp 'fatalsToBrowser'; # <-- recommended my $q = new CGI;

Re: Definition

2002-04-16 Thread fliptop
Bill Lyles wrote: > href="file://C:\Program Files\Common Files\Microsoft Shared\Stationery\"> > As I am somewhat new to perl > > can someone tell me what this means > > $header = qq~ > > I understand the header but what is the qq~ for? perldoc -f qq btw, it's considered bad form to send htm

Definition

2002-04-16 Thread Bill Lyles
As I am somewhat new to perl can someone tell me what this means   $header = qq~   I understand the header but what is the qq~ for?   Thanks

Definition

2002-04-16 Thread Bill Lyles
As I am somewhat new to perl can someone tell me what this means   $header = qq~   I understand the header but what is the qq~ for?   Thanks

Perl CGI with ISP - advice?

2002-04-16 Thread John Brooking
Hi, I'm writing a Perl-based system to allow simple site content management through web forms. I'm a relative beginner to both Perl and CGI, although I have much experience with C, Visual Basic, and relational database programming. The system I'm writing is targeted to non-profits and smal

conecting cgi and mdb? help please:)

2002-04-16 Thread maxa
I have install ActivePerl 5.6.1.630 in folder c:\perl then I have run ppm and do the fallowing: PPM> install dbi Install package 'dbi?' (y/N): y Installing package 'dbi'... Error installing package 'dbi': Could not locate a PPD file for package dbi PPM> this is error message and my question is:

Re: Validating form data

2002-04-16 Thread zentara
On 15 Apr 2002 22:46:33 -0400, [EMAIL PROTECTED] (Daniel Falkenberg) wrote: >I am just about to go ahead and start validating form data. I was >thinking about tackling it in the following way... > >$data1 = param("data1"); >$data2 = param("data2"); >$data3 = param("data3"); >$data4 = param("data4