Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

modperl · Perl module for Apache

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 51160 - 51189 of 67621   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
51160 Perrin Harkins
perrin@... Send Email
Apr 11, 2003
2:05 pm
... Flattening essentially caches the work of finding all descendants, so naturally it will be faster. Given that you are already building a search index, I...
51161 Perrin Harkins
perrin@... Send Email
Apr 11, 2003
2:07 pm
... The other suggestions offered here sound fine to me, but for a radically different take on indexing while keeping flexibility, see XML::Comma ...
51162 Clinton Gormley
clint@... Send Email
Apr 11, 2003
2:12 pm
... This was my original plan, but with very few exceptions, the objects are exactly the same (bar the list of attributes associated with them). I wanted to do...
51163 Randy Kobes
randy@... Send Email
Apr 11, 2003
2:24 pm
... This error is misleading ... Are you using VC++ 6? I've seen reports of this error when using VC++ 5 - there's an incompatibility using VC++ 5 when linking...
51164 Martin Moss
Martin_moss@... Send Email
Apr 11, 2003
2:56 pm
Don't sweat it, in my humble opinion the point of perl is to make life easy for oneself. I guess though that in my experience it's allways better to do it...
51165 Lincoln Stein
lstein@... Send Email
Apr 11, 2003
5:20 pm
Looks OK, but will need extensive testing. At one point I had a whole scheme worked out for loading different implementation modules as necessary: one for ...
51166 Jim Brandt
cbrandt@... Send Email
Apr 11, 2003
5:25 pm
We're running mod_perl with apache on Solaris 8 with Perl 5.6.1. While doing some load tests on a script, we've seen intermittent seg faults and bus errors....
51167 Carl Holm
vpulse@... Send Email
Apr 11, 2003
9:44 pm
I would second this approach. Nothing that you have described about your data modeling task would preclude the use of a fully normalized relational DB. Once...
51168 Stas Bekman
stas@... Send Email
Apr 11, 2003
11:13 pm
... Well, the introduction of the new API, doesn't change any of the existing features. CGI/CGI::Cookie use Apache->request for mod_perl, which could be ...
51169 Michael L. Artz
dragon@... Send Email
Apr 12, 2003
5:51 am
Anyone know why I would get the following "ap_auth_type" not found sort of error message? I am trying to set it with the standard ...
51170 Stas Bekman
stas@... Send Email
Apr 12, 2003
6:01 am
... You need to use the latest cvs, where it was implemented. __________________________________________________________________ Stas Bekman JAm_pH...
51171 pilsl@... Send Email Apr 12, 2003
7:59 pm
something is wrong here. apache 2.0.45,mod_perl 1.99_08 and perl 5.8.0 The following little script running under ModPerl::Registry makes consuming all the...
51172 Matt Sergeant
matt@... Send Email
Apr 13, 2003
8:08 am
... Perl never releases memory (i.e. it never calls free()) - it keeps memory allocated as a (premature) optimisation in case some other part of your script...
51173 Oleg Bartunov
oleg@... Send Email
Apr 13, 2003
3:34 pm
Hi there, configuring frontend-backend (apache 1.3.27) I noticed last ip in X-Forwarded-For is duplicated. Seems (from proxy_http.c), mod_proxy now generates...
51174 Randal L. Schwartz
merlyn@... Send Email
Apr 13, 2003
4:26 pm
... Oleg> Do we need mod_proxy_add_forward.c now ? I've never installed it. mod_proxy is doing it on its own for recent versions of apache. -- Randal L....
51175 Issac Goldstand
margol@... Send Email
Apr 13, 2003
8:29 pm
*Grins* I remember when a couple of us blindly ported mod_proxy_add_forward.c to Apache 2 just after it was officially declared "stable", only to test it and...
51176 Oleg Bartunov
oleg@... Send Email
Apr 13, 2003
9:00 pm
... Thanks Issac, I believe so now. The only problem is how to log those ip's by proxy server. ... Regards, Oleg ...
51177 Stas Bekman
stas@... Send Email
Apr 14, 2003
12:48 am
... patch mod_proxy to do what mod_proxy_add_forward was doing and submit the patch for inclusion in the next mod_proxy release? ...
51178 Issac Goldstand
margol@... Send Email
Apr 14, 2003
6:16 am
... declared ... The ... 1.3.26... ... server. ... I don't quite think so. I'm really quite baffled as to why he can't log any more. I'm thinking that's more...
51179 Oleg Bartunov
oleg@... Send Email
Apr 14, 2003
11:10 am
... That was my fault ! I wrote X-FFORWARDED-FOR instead of X-FORWARDED-FOR ^ Now everything works fine. Thanks for help. I think I'll play with mod_accel...
51180 Jim Brandt
cbrandt@... Send Email
Apr 14, 2003
12:29 pm
I did some additional testing on Mac OS X with Perl 5.8. I didn't see the Seg faults, but I did notice something that was the same as on Solaris. When running...
51181 Jozef Nowak
jnowak@... Send Email
Apr 14, 2003
1:15 pm
Hello, all. Is it possible to check the version of modperl from the httpd.conf file? I have the version check in my filter, but would prefer checking the...
51182 Perrin Harkins
perrin@... Send Email
Apr 14, 2003
4:36 pm
... In addition, I believe that on most OSes no process ever releases memory. Once it has been used by that process, it stays used. It may be paged out...
51183 peter pilsl
pilsl@... Send Email
Apr 14, 2003
5:46 pm
... Thnx to all for your reply. On my linux-machines perl releases the memory in many cases immediately. If I create big strings and undef them then the memory...
51184 John Siracusa
siracusa@... Send Email
Apr 14, 2003
8:54 pm
Given a request for: /foo/bar#blah It seems that: $r->uri eq '/foo/bar&#39; scalar $r->args eq '' (or maybe undef) But how can I get the "blah" part using $r...
51185 John Siracusa
siracusa@... Send Email
Apr 14, 2003
9:05 pm
... Hmmm...it looks like the fragment part isn't in $r->the_request, and doesn't even seem to be sent to the web server! This is troubling...is the fragment ...
51186 Iain Truskett
iain-modperl@... Send Email
Apr 14, 2003
10:10 pm
* John Siracusa (siracusa@...) [15 Apr 2003 07:06]: [...] ... Yes. cheers, -- Iain....
51187 John Siracusa
siracusa@... Send Email
Apr 14, 2003
10:47 pm
... Ick. I guess that means it's impossible to redirect someone to a secure version of the exact URL that was requested, because I have no way of knowing what...
51188 Stas Bekman
stas@... Send Email
Apr 14, 2003
11:55 pm
... As a workaround you could do: /foo/bar/blah#blah or /foo/bar?blah#blah where /foo/bar is the real resource, of course you will have to modify your HTML to...
51189 Stas Bekman
stas@... Send Email
Apr 14, 2003
11:59 pm
... You mean mp1 vs mp2? or 1.27 vs 1.26? The former is documented here: ...
Messages 51160 - 51189 of 67621   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help