RE: Prototype Mismatch

2001-11-07 Thread Jonathan M. Hollin
Stas, I appreciate that this is the mod_perl mailing list. Let me clarify my initial question by adding... This behaviour only occurs when I run my script under mod_perl, no errors are reported when using mod_CGI. Hence my posting to the mod_perl list. :-) Jonathan M. Hollin - WYPUG

mod_perl-1.26 is incompatible with perl 5.00503

2001-11-07 Thread Silvio Wanka
Hi again, I have joint this mailing list to send the appended bug report. But I get no response. Exist there a special bug report e-mail address or is 5.00503 not supported any more by mod_perl-1.26? IMO if the embedded test (make test) does not run, it can't be my mistake. With mod_perl-1.25

RE: http or https in URL?

2001-11-07 Thread Reif Peter
From: Stas Bekman *EXTERN* [mailto:[EMAIL PROTECTED]] Reif Peter wrote: In a mod_perl handler I want to construct the original URL of the request. I can construct it with r-get_server_name, r-get_server_port, r-uri and $r-parsed_uri-query. But how do I get the protocol, http

Can't pipe to external programs

2001-11-07 Thread matt
Hey list, We're trying to turn some xml into a pdf using fop. A wrapper has been written for fop so that we can pass it xml on the stdin, and get the pdf from the stdout. We're using IPC::Open2 to set this up: use IPC::Open2; open2(*README, *WRITEME, $progname); print WRITEME $thexml or warn

Re: Can't pipe to external programs

2001-11-07 Thread Dominique Quatravaux
Hey list, We're trying to turn some xml into a pdf using fop. A wrapper has been written for fop so that we can pass it xml on the stdin, and get the pdf from the stdout. We're using IPC::Open2 to set this up: I remember having lots of trouble with the implicit redirection that

How to update the httpd env for mod_perl

2001-11-07 Thread SubbaReddy M
Hello Gurus, Iinstalled perl 5.6.1 and mod_perl and Apache-ASP-2.27 on my Linux box. (Redhat 6.2) and checked at commond line for version check, getting following info. [root@qclinux /root]# perl -v This is perl, v5.6.1 built for i686-linux Copyright 1987-2001, Larry Wall .

FCGI = CGI::FastCGI

2001-11-07 Thread SubbaReddy M
What is difference between FCGI and CGI::FastCGI?I installed FCGI,but tried for CGI::FastCGI module, not able to find.Where do I get CGI::FastCGI?thanks inadvance.-SubbaReddy

Apache::URI - URI::URL?

2001-11-07 Thread Louis LeBlanc
Hey all. I seem to be coming onto the modperl scene a little late, and it seems one of the classes mentioned in the Eagle book no longer exists. I am trying to get the full URI (http(s)://servername/uri) from the Apache::URI class. Of course the Eagle mentions that URI::URL is

Re: Prototype Mismatch

2001-11-07 Thread Stas Bekman
Jonathan M. Hollin wrote: Stas, I appreciate that this is the mod_perl mailing list. Let me clarify my initial question by adding... This behaviour only occurs when I run my script under mod_perl, no errors are reported when using mod_CGI. Hence my posting to the mod_perl list. :-)

RE: Prototype Mismatch

2001-11-07 Thread Jonathan M. Hollin
Problematic test script attached... Apache error.log reports the following: Prototype mismatch: sub Apache::ROOT::shapeshifter::system::pm_files_2ecgi::Transparent vs ($;@) at E:/Apache/lib/Exporter.pm line 57. at e:/apache/htdocs/shapeshifter/system/image_wizard.pl line 2 Prototype mismatch:

Re: Prototype Mismatch

2001-11-07 Thread Perrin Harkins
In my script a simple use Image::Magick; results in the following lines being added to my error.log everytime the script is called: Are you using PerlRun or Registry? Prototype mismatch: sub Apache::ROOT::shapeshifter::system::pm_files_2ecgi::Transparent vs ($;@) at

RE: Prototype Mismatch - and AN APOLOGY

2001-11-07 Thread Jonathan M. Hollin
Perrin, I'm using PerlRun at the moment because I'm still developing the application; the production server runs under Registry naturally. I added the parentheses as you suggested and everything is fine, the error.log is clean - no more problem. Thank you very much (this has really been

Re: How to update the httpd env for mod_perl

2001-11-07 Thread Ged Haywood
Hi there, On Wed, 7 Nov 2001, SubbaReddy M wrote: I installed perl 5.6.1 and mod_perl and Apache-ASP-2.27 on my Linux box. (Redhat 6.2) Did you compile your Apache and mod_perl? [root@qclinux /root]# perl -v That's perl -V not perl -v :) This is perl, v5.6.1 built for i686-linux

eval error

2001-11-07 Thread David
Hello, I am getting this error message. Can anyone tell me what it is and how to get rid of it. (or if I need to worry about it) [Wed Nov 7 18:52:40 2001] [error] [Wed Nov 7 18:52:40 2001] Gateway00.pm: Apache/Gateway00.pm did not return a true value at (eval 146) line 3. Config: [Wed Nov

Re: eval error

2001-11-07 Thread Chris Winters
* David ([EMAIL PROTECTED]) [011107 14:05]: Hello, I am getting this error message. Can anyone tell me what it is and how to get rid of it. (or if I need to worry about it) [Wed Nov 7 18:52:40 2001] [error] [Wed Nov 7 18:52:40 2001] Gateway00.pm: Apache/Gateway00.pm did not return a

Re: eval error

2001-11-07 Thread ___cliff rayman___
verify that Apache/Gateway00.pm has a true value at the end of the module. usually this looks just like this at the end: 1; if not, then u can add it if this is an in house module. if not, find out what gives from the module author. David wrote: Hello, I am getting this error message. Can

Re: eval error

2001-11-07 Thread David
Thanks, I have it fixed My module was ending like this: return OK; 1; __END__ When return OK; was removed the error goes. A copy + paste error - sorry. - Original Message - From: ___cliff rayman___ [EMAIL PROTECTED] To: David [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday,

RE: [JOB] Red Hat Network Web Engineer positions open

2001-11-07 Thread Rob Bloodgood
We have a couple openings doing intense and interesting mod_perl work here at Red Hat. Formal description is below. Key skills are perl, mod_perl, apache, and DBI (especially Oracle). Must relocate to Research Triangle Park, North Carolina. If only Red Hat was in Oregon... sigh. L8r Rob

RE: Prototype Mismatch - and AN APOLOGY

2001-11-07 Thread Ask Bjoern Hansen
On Wed, 7 Nov 2001, Jonathan M. Hollin wrote: APOLOGY - I posted a message to this list with a small Perl script attached (without ZIP-ing it first). This has triggered off numerous bounced mail virus alerts and I apologise for this. I will avoid repeating that mistake in future.

Re: Documentation patch for mod_perl?

2001-11-07 Thread Perrin Harkins
Hi, I am sending this after a suggestion that was given to me during in a perlmonks discussion. I was the one who suggested it. Why don't you take a shot at writing it? The modperl.pod seems like the logical place to patch. Then Stas could add your information to the guide as well. If

Re: Documentation patch for mod_perl?

2001-11-07 Thread Randy Kobes
On Wed, 7 Nov 2001, Perrin Harkins wrote: Hi, I am sending this after a suggestion that was given to me during in a perlmonks discussion. I was the one who suggested it. Why don't you take a shot at writing it? The modperl.pod seems like the logical place to patch. Then Stas could