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. Ineed to use the Apache::Request module on a range of programs to use POST andGET methods in my HTML to process information gathered. The port I am using is

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; print $r; print

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

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. The

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

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: Yes, mod

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 a PerlModule Apache::Request

RE: Please help newbie with Module problem.

2003-07-02 Thread Matt Corbett
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 PerlHandler set

Re: Please help newbie with Module problem.

2003-07-02 Thread Dennis Stout
- 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 Subject: RE: Please help newbie with Module problem. Dennis and Randy and others on the list that gave advice