RE: ActivePerl mod_perl ppd available

2000-09-14 Thread Foo, Ji Haw
This is great news. I suppose ActivePerl's mod_perl ppd is compatible with its build 522? regards, Ji-Haw, Foo Network Engineer (AP) -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 11:53 AM To: [EMAIL PROTECTED] Subject: ActivePerl

Re: ActivePerl mod_perl ppd available

2000-09-14 Thread Gerald Richter
This is great news. I suppose ActivePerl's mod_perl ppd is compatible with its build 522? It's tested with build 617, but we are happy about your feedback, if it works also with build 522 Gerald - Gerald Richterecos

ActivePerl 617 and GD.ppd

2000-09-14 Thread Foo, Ji Haw
I tried to install gd (http://www.activestate.com/packages) on build 617, but it keeps telling me: Error installing package 'GD.ppd': Could not locate a PPM binary of 'GD.ppd' for this platform. This same package works well for build 522 (which is why I am still using build 522). I would like to

Re: ActivePerl 617 and GD.ppd

2000-09-14 Thread Matt Sergeant
On Wed, 13 Sep 2000, Foo, Ji Haw wrote: I tried to install gd (http://www.activestate.com/packages) on build 617, but it keeps telling me: Error installing package 'GD.ppd': Could not locate a PPM binary of 'GD.ppd' for this platform. This same package works well for build 522 (which is

RE: ActivePerl 617 and GD.ppd

2000-09-14 Thread Foo, Ji Haw
Did exactly that. Which is why I was surprised that build 522 works well but not 617. Keeps telling me I got the wrong platform. regards, Ji-Haw, Foo Network Engineer (AP) -Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 3:44 PM To:

RE: ActivePerl 617 and GD.ppd

2000-09-14 Thread Matt Sergeant
On Thu, 14 Sep 2000, Foo, Ji Haw wrote: Did exactly that. Which is why I was surprised that build 522 works well but not 617. Keeps telling me I got the wrong platform. Ah, maybe ppm's have started specifying the architecture too (I was always bugging them about that)... Check the ppd file,

Re: Apache::PerlRun::Flush

2000-09-14 Thread Stas Bekman
On Wed, 13 Sep 2000, Andrew Chen wrote: Hello all, There was some discussion about the Apache::PerlRun::Flush handler before, but here's a quick refresher: the handler was written in order to be able to run dirty code on PerlRun with PerlRunOnce Off by going through and cleaning up the

Apache::ASP problem

2000-09-14 Thread Sophokles Zafeiris
I have an Apache server version 1.3.12 installed on a solaris machine. I'm trying to make ASP's work. I installed the mod_perl and the Apache::ASP and I added in the httpd.conf file the followin directive Location /asp/ SetHandler perl-script PerlHandler Apache::ASP

How to close connect and continue processing?

2000-09-14 Thread Vladislav Safronov
Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell the browser that all data is sent. I searched mod_perl guide but I didn't find such code snippet. Could you send me such example? == Vlad.

Re: How to close connect and continue processing?

2000-09-14 Thread Matt Sergeant
On Thu, 14 Sep 2000, Vladislav Safronov wrote: Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell the browser that all data is sent. I searched mod_perl guide but I didn't find such code snippet.

Re: How to close connect and continue processing?

2000-09-14 Thread Matt Sergeant
On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Vladislav Safronov wrote: Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell the browser that all data is sent. I searched

Re: Apache::ASP problem

2000-09-14 Thread Rod Butcher
I believe you have actually specified that the pages must be served out of a directory /asp/ ... irrespective of the .asp suffix. If you want to drive it by suffixes not directories I suggest you try AddType text/html .asp Files ~ "\.(html|htm|asp)$" SetHandler perl-script PerlHandler

Re: How to close connect and continue processing?

2000-09-14 Thread Stas Bekman
On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Vladislav Safronov wrote: Hi, After user request my script should say that the request is accepted and continue processing user data (it takes a time) so I want to tell

RE: How to close connect and continue processing?

2000-09-14 Thread Vladislav Safronov
I read the guide and I think the best is just add "" :) (how could I forget it!) .. system("myprog la la "); print "/html"; # end On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Matt Sergeant wrote: On Thu, 14 Sep 2000, Vladislav

RE: How to close connect and continue processing?

2000-09-14 Thread Stas Bekman
On Thu, 14 Sep 2000, Vladislav Safronov wrote: I read the guide and I think the best is just add "" :) (how could I forget it!) .. system("myprog la la "); print "/html"; # end True, but what happens if your program tries to print something. You've all in/out/err

Typo crashes Apache process

2000-09-14 Thread Lupe Christoph
Hi! Sorry, I did not check if this is known problem. I recently forgot to follow through with a name change (equivalent to renaming Some::SimpleModule to Some::Simple::Module). I moved the file, but forgot to change the package name. Here is a much smaller version of my module that shows the

RE: does notes() work with custom_response()?

2000-09-14 Thread Geoffrey Young
try this: --- Yours.pmThu Sep 14 08:04:00 2000 +++ Mine.pm Thu Sep 14 08:02:49 2000 @@ -57,8 +57,8 @@ { my $r = shift; - my $notes = $r-notes; - my $pnotes = $r-pnotes; + my $notes = $r-prev-notes || $r-notes; + my $pnotes = $r-prev-pnotes ||

RE: How to close connect and continue processing?

2000-09-14 Thread Vladislav Safronov
On Thu, 14 Sep 2000, Vladislav Safronov wrote: I read the guide and I think the best is just add "" :) (how could I forget it!) .. system("myprog la la "); print "/html"; # end True, but what happens if your program tries to print something. You've all

RE: does notes() work with custom_response()?

2000-09-14 Thread brian d foy
On Thu, 14 Sep 2000, Geoffrey Young wrote: i was using: - my $notes = $r-notes; - my $pnotes = $r-pnotes; you suggested: + my $notes = $r-prev-notes || $r-notes; + my $pnotes = $r-prev-pnotes || $r-pnotes; neither of those worked for me. did they work for you?

RE: does notes() work with custom_response()?

2000-09-14 Thread Geoffrey Young
-Original Message- From: brian d foy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 9:09 AM To: [EMAIL PROTECTED] Subject: RE: does notes() work with custom_response()? On Thu, 14 Sep 2000, Geoffrey Young wrote: i was using: - my $notes =

RE: does notes() work with custom_response()?

2000-09-14 Thread Geoffrey Young
-Original Message- From: brian d foy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 9:58 AM To: [EMAIL PROTECTED] Subject: RE: does notes() work with custom_response()? On Thu, 14 Sep 2000, Geoffrey Young wrote: remember that custom_response() is a tie into

Apache::ASP

2000-09-14 Thread Gael Pegliasco
Hello, Does someone know if there is a way to chain Apache::ASP output with Apache::OutputChain or Apache::Filter ? I'd like to do something like this : Files ~ "*\.asp" SetHandler perl-script PerlHandler Apache::OutputChain Apache::MakeCapital Apache::ASPCHain /Files or Something like :

perl initialization per virtual host... is it possible

2000-09-14 Thread William Deegan
Greetings, Is it possible to setup different Initialization per virtual host? so perhaps one: PerlRequire /usr/local/www_sh/conf/startup.pl per virtual host, each different. -Bill Deegan

Still having problems with mod_perl and Apache::ASP

2000-09-14 Thread Jason
OK .. you guys are probably sick of me by now ... I think I know what my problem is. I need to edit my httpd.conf file. What do I need to put into the httpd.conf file to configure mod_perl and what do I do to configure Apache::ASP -- both are installed on my system. Also, my httpd.conf has

Re: Still having problems with mod_perl and Apache::ASP

2000-09-14 Thread Jim Serio
OK .. you guys are probably sick of me by now ... I think I know what my problem is. I need to edit my httpd.conf file. What do I need to put into the httpd.conf file to configure mod_perl and what do I do to configure Apache::ASP -- both are installed on my system. Also, my httpd.conf has

segfault hell

2000-09-14 Thread Bill Moseley
I'm running current Apache and mod_perl 1.24. Solaris 2.6. 2G RAM. PerlFreshRestart is off. I've had these segfaults for months. I only get a few a day out of say 20,000 mod_perl requests. So the children come and go before I can get strace or gdb on them. They often happen in groups --

segfaulting httpd :(

2000-09-14 Thread Ben Turner
hi all, this afternoon i compiled a fresh httpd (apache 1.3.12), together with mod_perl 1.24. i'm on Solaris 8, running perl 5.6.0. after compiling httpd, i'm getting segfaults whenever i do a normal http request. for instance: http://bla/index.html works noprob http://bla/ does not work, and

tracking down why a module was loaded?;

2000-09-14 Thread Justin
Can anyone tell me the easiest slickest way of determining what was responsible for requesting a module, having discovered that it has been loaded when viewing perl-status? and while I've got the podium: I would like to congratulate Doug and everyone involved in modperl.. by checking

Re: segfaulting httpd :(

2000-09-14 Thread Bruce W. Hoylman
"Ben" == Ben Turner [EMAIL PROTECTED] writes: Ben this afternoon i compiled a fresh httpd (apache 1.3.12), Ben together with mod_perl 1.24. i'm on Solaris 8, running perl Ben 5.6.0. Sounds like what I happened to just go through, finding perl 5.6.0 as the (known) culprit. Go to:

Re: tracking down why a module was loaded?;

2000-09-14 Thread Stas Bekman
On Thu, 14 Sep 2000, Justin wrote: Can anyone tell me the easiest slickest way of determining what was responsible for requesting a module, having discovered that it has been loaded when viewing perl-status? A.pm: - package A; use Carp (); BEGIN { Carp::cluck("I don't want to wake

Re: perl initialization per virtual host... is it possible

2000-09-14 Thread William Deegan
Ged, I think you may have misunderstood. I meant a different startup per virtual host, not per child process. Is that possible? -Bill - Original Message - From: "G.W. Haywood" [EMAIL PROTECTED] To: "William Deegan" [EMAIL PROTECTED] Sent: Thursday, September 14, 2000 1:16 PM Subject:

Re: perl initialization per virtual host... is it possible

2000-09-14 Thread Ime Smits
| I meant a different startup per virtual host, not per child process. It's perfectly ok to specify a PerlRequire for each virtual host or even in .htaccess, but I think that's a dirty habbit to get into. As the complete perl namespace is shared between all your virtual hosts there is really

Re: perl initialization per virtual host... is it possible

2000-09-14 Thread David Hodgkinson
"William Deegan" [EMAIL PROTECTED] writes: Ged, I think you may have misunderstood. I meant a different startup per virtual host, not per child process. Is that possible? If you're going to do that, say, to stop virtual servers interfering with each other, consider having COMPLETELY

Re: perl initialization per virtual host... is it possible

2000-09-14 Thread William Deegan
- Original Message - From: "Ime Smits" [EMAIL PROTECTED] To: "William Deegan" [EMAIL PROTECTED] Cc: "G.W. Haywood" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, September 14, 2000 2:26 PM Subject: Re: perl initialization per virtual host... is it possible | I meant a

mod_perl guide corrections

2000-09-14 Thread Joe Schaefer
Stas, I was looking over the latest version of the performance section, and I have a few suggestions/comments regarding http://perl.apache.org/guide/performance.html 1) Your description of keep-alive performance is confusing. Every browser I've seen that implements keep-alives will open at

Re: tracking down why a module was loaded?;

2000-09-14 Thread Matt Sergeant
On Thu, 14 Sep 2000, Justin wrote: Can anyone tell me the easiest slickest way of determining what was responsible for requesting a module, having discovered that it has been loaded when viewing perl-status? use OtherPackage; # because you need import to be defined first sub