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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 66765 - 66794 of 67621   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
66765 Perrin Harkins
perrin@... Send Email
Aug 31, 2005
3:55 am
... Okay, so it's slow because it does a lot of work. How does it do this search? Is it a bunch of SQL queries, or a request to a remote server of some other...
66766 Badai Aqrandista
badaiaqrandista@... Send Email
Aug 31, 2005
4:13 am
... Lots of SQL queries and calculation based on the query results. I've cached most of the query results, but the calculation results can't be cached because...
66767 Octavian Rasnita
orasnita@... Send Email
Aug 31, 2005
6:13 am
Hi, As a feedback, I have seen that HTML::Template::JIT also works under Windows even though "nmake test" give errors. Teddy ... From: "Sam Tregar"...
66768 David Hodgkinson
davehodg@... Send Email
Aug 31, 2005
8:27 am
... But now you have reduced MaxClients, that shouldn't happen....
66769 Tim Bunce
Tim.Bunce@... Send Email
Aug 31, 2005
9:53 am
[I wrote this over a week ago but queued it waiting till I submitted the changes. That's still not happened yet so I'll just post it anyway.] ... For some...
66770 William McKee
william@... Send Email
Aug 31, 2005
1:21 pm
... Thanks for the reference. Some further investigating showed that calling t/TEST -clean is when I lose the -httpd_config setting which explains why `./Build...
66771 William McKee
william@... Send Email
Aug 31, 2005
3:39 pm
... I want it to find /etc/httpd/2.0/conf/httpd2.conf but it is finding: [ debug] isolated httpd_defines HTTPD_ROOT = /etc/httpd/2.0 [ debug] isolated...
66772 Geoffrey Young
geoff@... Send Email
Aug 31, 2005
3:55 pm
... $self->{httpd_basedir}, which looks to be calculated based on the location of the httpd binary. but it looks like it ought to be using HTTPD_ROOT instead....
66773 Martin Moss
martin_moss@... Send Email
Aug 31, 2005
4:06 pm
All, I'm trying to make something work in mod perl, and all the docs seem to be pointing me in ways which just don't work on our system... Server version:...
66774 Dermot Paikkos
dermot@... Send Email
Aug 31, 2005
4:21 pm
Hi, Apologises if this is a little OT but I am can't seem to find anything relevant elsewhere. I am currently using MP1, 1.29 on Linux. I need to create a...
66775 Perrin Harkins
perrin@... Send Email
Aug 31, 2005
4:45 pm
... Either do a system call to zip, or use Archive::Zip, write the file out in a directory under your web server, and send a redirect to the newly written...
66776 Perrin Harkins
perrin@... Send Email
Aug 31, 2005
4:45 pm
... If this is serious number-crunching, it might be one of the few times where using C really does make sense for that part. ... For a daemon to monitor a...
66777 Geoffrey Young
geoff@... Send Email
Aug 31, 2005
4:55 pm
... if you want to set_handlers() for the PerlHandler phase you need two calls $r->set_handlers(PerlHandler => [ My::Handler ]); $r->handler('perl-script'); ...
66778 Martin Moss
martin_moss@... Send Email
Aug 31, 2005
4:59 pm
Have an awful suspicion the book I used suggested doing it the other way around? Would that make a difference? $r->handler('perl-script'); ...
66779 Geoffrey Young
geoff@... Send Email
Aug 31, 2005
5:07 pm
... none whatsoever. keep in mind that you can only call set_handlers() during phases prior to the phase you're setting. for example, you can't ...
66780 Dermot Paikkos
dermot@... Send Email
Aug 31, 2005
5:10 pm
I had tried Archive::Zip earlier but gave up after this error. Here what I have at the moment.: ...snip my $zip = Archive::Zip->new(); my $member =...
66781 Dermot Paikkos
dermot@... Send Email
Aug 31, 2005
5:12 pm
On 31 Aug 2005 at 12:40, Perrin Harkins wrote: Sorry I guess that should be $r->internal_redirect("http://austin/Myzip.zip"); That what the bad uri means. ...
66782 Perrin Harkins
perrin@... Send Email
Aug 31, 2005
5:15 pm
... That's supposed to be a URL: "/myzip.zip" I was actually thinking of an external redirect, but an internal redirect should work. - Perrin...
66783 Mike Whitaker
mike@... Send Email
Aug 31, 2005
5:17 pm
... ISTR doing this in the past by setting $r->file, or something similar, to point to the file in question. Am I misremembering?...
66784 Martin Moss
martin_moss@... Send Email
Aug 31, 2005
5:24 pm
It doesn't seem to work... This was the original solution I tried.. Here is the code:- if (Apache->can('set_handlers&#39;)) { print STDERR "CAN PUSH HANDLERS...
66785 Dermot Paikkos
dermot@... Send Email
Aug 31, 2005
5:39 pm
... Do you mean a redirect to a completely separate handler or cgi? Currently what i get is downloaded file named after the handler/Location, file_export (no...
66786 Perrin Harkins
perrin@... Send Email
Aug 31, 2005
5:44 pm
... I mean a standard redirect to a normal .zip file, which you let apache serve for you like any other file. Then you clear these out periodically with a...
66787 colin_e
colin_e@... Send Email
Aug 31, 2005
5:45 pm
... This doesn't sound like a "search" at all. Typically individuals know at least SOMETHING about the booking they want to make. How many times do you book a...
66788 Michael Peters
mpeters@... Send Email
Aug 31, 2005
5:48 pm
... If you are generating your own content headers you use the Content-Disposition header. Something like: $r->header_out( 'Content-Disposition&#39; => 'inline;...
66789 Mike Whitaker
mike@... Send Email
Aug 31, 2005
5:50 pm
... Content-Disposition: rings a bell....
66790 William McKee
william@... Send Email
Aug 31, 2005
6:20 pm
... Perfect! That worked just fine. How can we get it added to A::T? Thanks, William PS: Sorry I missed you at YAPC this year. Perrin will tell you that I ...
66791 Dermot Paikkos
dermot@... Send Email
Aug 31, 2005
6:23 pm
Excellent. I give it a try tomorrow. Dp....
66792 Geoffrey Young
geoff@... Send Email
Aug 31, 2005
10:19 pm
... if you can do me the favor of trying a few different configuration scenarios (including 1.3, non-apxs, /usr/local/apache, etc) and making sure nothing ...
66793 Badai Aqrandista
badaiaqrandista@... Send Email
Aug 31, 2005
11:14 pm
... Yes, the user provides the dates and the number of guests (and probably a coupon number). Then based on that, the system searches for available room and...
66794 Badai Aqrandista
badaiaqrandista@... Send Email
Aug 31, 2005
11:23 pm
... Yes. POE looks overkill compare to Parallel::ForkManager. Thanks. ... Badai Aqrandista Cheepy (?) ...
Messages 66765 - 66794 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