Re: mod_deflate problem with chunked encoding

2002-01-18 Thread Jeremy Howard
Geoffrey Young wrote: Philip Mak wrote: The following webpage on a mod_deflate enabled server is not working correctly in some browsers: ... a few of us have been wondering where all the traffic on these modules has been coming from, is all - I thought it might genuinely be some

RE: mod-perl with cygwin

2002-01-18 Thread Dan Horne
I got mod_perl installed with Apache, but then couldn't get libapreq added Dan -Original Message- From: úÁÑÃ á.á. [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 8:14 PM To: [EMAIL PROTECTED] Subject: mod-perl with cygwin Hello modperl, Can anybody install mod_perl on

Re: Apache::Session getting DESTROYed in wrong order

2002-01-18 Thread Jay Lawrence
I register a clean up handler to explicitly untie the session variable. I am not sure how to do this in the setup you have running...so I can't be of much explicit help. Jay - Original Message - From: Ken Williams [EMAIL PROTECTED] To: Perrin Harkins [EMAIL PROTECTED] Cc: [EMAIL

Re: mod_deflate problem with chunked encoding

2002-01-18 Thread Stas Bekman
Jeremy Howard wrote: Geoffrey Young wrote: Philip Mak wrote: The following webpage on a mod_deflate enabled server is not working correctly in some browsers: ... a few of us have been wondering where all the traffic on these modules has been coming from, is all - I thought it might

Re: Apache::Session getting DESTROYed in wrong order

2002-01-18 Thread Perrin Harkins
I register a clean up handler to explicitly untie the session variable. I have found that it's safer to put things in pnotes than to use globals and cleanup handlers. We used a lot of cleanup handlers at eToys to clear globals holding various request-specific things, and we started getting

Re: [OT] Trouble with dprofpp and Devel::DProf

2002-01-18 Thread Robert Landrum
At 12:46 AM + 1/18/02, Ged Haywood wrote: Hi all, Anyone using 5.7.0 had any trouble with dprofpp? Devel::DProf writes tmon.out OK but dprofpp doesn't understand it. The whole kit came with 5.7.0 in one source tarball. I searched p5p with the Google and the perl.com engine and came up with

caching

2002-01-18 Thread Miroslav Madzarevic
How can kill If-Modified-Since and E-Tag incoming headers ? Do I do it in my custom PerlInitHandler module ? I have a development server and I don't wish anything to be cached (304 messages, not modified). Right now my Cookies are not set because of this. 10x

Re: caching

2002-01-18 Thread Geoffrey Young
Miroslav Madzarevic wrote: How can kill If-Modified-Since and E-Tag incoming headers ? Do I do it in my custom PerlInitHandler module ? I have a development server and I don't wish anything to be cached (304 messages, not modified). Right now my Cookies are not set because of this.

Re: [OT] Trouble with dprofpp and Devel::DProf

2002-01-18 Thread Ged Haywood
Hi Rob, On Fri, 18 Jan 2002, Robert Landrum wrote: Anyone using 5.7.0 had any trouble with dprofpp? Double check that the dprofpp is the same one distributed with 5.7.0 and not 5.6.1 or earlier perl's... ??!! Never had 5.6 on that machine, but I already did that anyway... :)

locking bug in Apache::Session::File

2002-01-18 Thread William White
I've been told this is the place to send questions related to apache perl modules. I believe I have discovered a locking bug in Apache::Session::File. The following code should retrieve an existing session from the file system and place an exclusive lock on the session file: my $locking_args

apache 2.0.28 and mod_perl

2002-01-18 Thread Bryan Henry
are there issues with running mod_perl on Apache 2.0? I have not found any complaints or warnings in any documentation. regards, Bryan

Re: apache 2.0.28 and mod_perl

2002-01-18 Thread James G Smith
Bryan Henry [EMAIL PROTECTED] wrote: are there issues with running mod_perl on Apache 2.0? I have not found any complaints or warnings in any documentation. I wouldn't expect mod_perl 1.x to work with Apache 2.x. The API is completely (or pretty much so) different. mod_perl 2.0 is being

Re: mod_deflate problem with chunked encoding

2002-01-18 Thread Ron Savage
Stas Does the senario doc (below) apply to Apache V 1, V2 or both? Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html here: http://perl.apache.org/guide/scenario.html, please do that. But

Re: apache 2.0.28 and mod_perl

2002-01-18 Thread Philip M. Gollucci
Lots of luck. I tried 1.26 and 2.0 last night... you'll get a lot of errors, unless I missed something. -- Philip M. Gollucci (p6m7g8) [EMAIL PROTECTED] 301.314.3118 Science, Discovery, the Universe (UMCP)

Re: Form Reading

2002-01-18 Thread will trillich
On Tue, Jan 08, 2002 at 11:01:43AM -0500, Robert Landrum wrote: -- When I used a Mac, they laughed because I had no command prompt. When I used Linux, they laughed because I had no GUI. aha. the mac now has a cli (osX) and linux has had a gui for quite some time (x)... :) -- The only

META tags added as HTTP headers

2002-01-18 Thread Markus Wichitill
Hi, which part of an Apache/mod_perl setup is responsible for extracting META tags from generated HTML and adding them as HTTP headers (even with PerlSendHeaders Off)? In the case of META NAME='Blah' tags, it adds X-Meta-Blah headers, which are harmless but probably mostly a waste of bandwidth.

Re: META tags added as HTTP headers

2002-01-18 Thread Bill Moseley
At 01:20 AM 01/19/02 +0100, Markus Wichitill wrote: which part of an Apache/mod_perl setup is responsible for extracting META tags from generated HTML and adding them as HTTP headers (even with PerlSendHeaders Off)? That's lwp doing that, not Apache or mod_perl. HEAD http://www.apache.org 200

Re: META tags added as HTTP headers

2002-01-18 Thread ___cliff rayman___
hmmm - you are still using lwp. here is a 1.0 protocol result via telnet: [root@w7 /root]# telnet www.apache.org 80 Trying 64.125.133.20... Connected to www.apache.org. Escape character is '^]'. HEAD / HTTP/1.0 HTTP/1.1 200 OK Date: Sat, 19 Jan 2002 00:37:03 GMT Server: Apache/2.0.28 (Unix)

Solaris + Apache + mod_perl = TROUBLE

2002-01-18 Thread Philip M. Gollucci
I have system (Solaris 2.6) which I do NOT have root on... (now I know why that doesn't happen often) At anyrate, I need to install perl5.6.1 ... I'll pay anyone able to do without using a binary release (on this particular solaris system (yes its that bad), Apache Apache-1.3.22 from source,

Re: META tags added as HTTP headers

2002-01-18 Thread Bill Moseley
At 04:46 PM 01/18/02 -0800, ___cliff rayman___ wrote: hmmm - you are still using lwp. Right. But lwp-request sends a GET request where HEAD sends, well, a HEAD request. So, even though LWP's default is to parse the head section, there's no content to parse in a HEAD request, and thus the meta

Re: mod_deflate problem with chunked encoding

2002-01-18 Thread Stas Bekman
Ron Savage wrote: Stas Does the senario doc (below) apply to Apache V 1, V2 or both? only v1 at this point. here: http://perl.apache.org/guide/scenario.html, please do that. But there is a whole new tree of docs for apache/2.0 modperl/2.0 docs in works. Stay tuned.

How to handle die

2002-01-18 Thread Mithun Bhattacharya
Hello, I am running ePerl on my Apache server and a little problem has been bugging me a lot. When I do a die blah blah blah inside a eval I get the following in my browser. It doesnt matter which browser I use or which version of apache I use or which version of Apache::ePerl I use.

cvs commit: modperl-2.0/xs/Apache/SubProcess Apache__SubProcess.h

2002-01-18 Thread dougm
dougm 02/01/18 16:25:41 Modified:xs/Apache/SubProcess Apache__SubProcess.h Log: get rid of warning on win32 - FAILED : macro redefinition Revision ChangesPath 1.9 +1 -0 modperl-2.0/xs/Apache/SubProcess/Apache__SubProcess.h Index: Apache__SubProcess.h