Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
Title: Message Dear List, I have got a problem that I can't fix no way, no how.   I am porting a Linux website to xp pro.   I need to use the Apache::Request module on a range of programs to use POST and GET methods in my HTML to process information gathered.   The port I am using is the 

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
> however when I run the following code > > #!c:/perl/bin/perl -w > use Apache (); > use Apache::Request (); > use CGI::Carp qw(fatalsToBrowser); > my $r = Apache::Request->new(shift); > # my $apr = Apache::Request->new($r); > print "Content-type:text/html\n\n"; > print "Hello, World...\n"; > pri

Re: Please help newbie with Module problem.

2003-07-02 Thread Perrin Harkins
On Wed, 2003-07-02 at 11:50, Matt Corbett wrote: > I need to use the Apache::Request module on a range of programs to use > POST and GET methods in my HTML to process information gathered. Actually, you don't. You can use CGI.pm, CGI::Simple, CGI_Lite, etc. for this. If you want to use Apache::R

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
> this, however the line $r->content-type('text/html'); seems to be > giving my compiler some problems. You could'nt just give me a hint on My mistake, shift key didn't get pressed hard enough =P $r->content_type('text/html'); Dennis

Re: Please help newbie with Module problem.

2003-07-02 Thread Randy Kobes
On Wed, 2 Jul 2003, Matt Corbett wrote: > Dear List, > I have got a problem that I can't fix no way, no how. > > I am porting a Linux website to xp pro. > I need to use the Apache::Request module on a range of > programs to use POST and GET methods in my HTML to process > information gathered. >

FW: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
lto:[EMAIL PROTECTED] Sent: 02 July 2003 19:09 To: Matt Corbett Subject: RE: Please help newbie with Module problem. On Wed, 2 Jul 2003, Matt Corbett wrote: > Randy, > No errors, It returns 1 > Matt Does a simple Registry script (without Apache::Request) work from the same locat

RE: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
th of you can recommend a good charity I will make a small donation for your time. Again thanks Matt -Original Message- From: Dennis Stout [mailto:[EMAIL PROTECTED] Sent: 02 July 2003 19:28 To: Matt Corbett Subject: Re: Please help newbie with Module problem. > I don't have a Pe

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
imate Troublshooting - Original Message - From: "Matt Corbett" <[EMAIL PROTECTED]> To: "'Dennis Stout'" <[EMAIL PROTECTED]>; "'Randy Kobes'" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, July 02, 2003 11 55 Su

Re: FW: Please help newbie with Module problem.

2003-07-02 Thread Randy Kobes
On Wed, 2 Jul 2003, Matt Corbett wrote: > Yes, mod/perl/html scripts are fine except if I try to use > Apache::Request. I can even 'use' it but the problem arises > when I try to utilise it with the 'new' method. The fact that you can 'use' it (without doing anything with it) is encouraging, as t

RE: FW: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
Randy, Does'nt seem to make any difference. Matt -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED] Sent: 02 July 2003 19:39 To: Matt Corbett Cc: [EMAIL PROTECTED] Subject: Re: FW: Please help newbie with Module problem. On Wed, 2 Jul 2003, Matt Corbett wrote: >

RE: FW: Please help newbie with Module problem.

2003-07-02 Thread Randy Kobes
On Wed, 2 Jul 2003, Matt Corbett wrote: > -Original Message- > From: Randy Kobes [mailto:[EMAIL PROTECTED] > Sent: 02 July 2003 19:39 > To: Matt Corbett > Cc: [EMAIL PROTECTED] > Subject: Re: FW: Please help newbie with Module problem. > > Does it help if you put