... It is not inconsistent. Note that the file is printed first before its rewritten. So, when you load the mod_cgi page after mod_perl, you'll still see a...
61998
Roman Vašíček
rv@...
Dec 2, 2004 11:31 am
... Realy it is not on CPAN? http://search.cpan.org/search?query=libapreq2&mode=dist -- best regards Ing. Roman Vasicek software developer ...
61999
Frank Wiles
frank@...
Dec 2, 2004 3:07 pm
On Thu, 2 Dec 2004 12:30:39 +0100 ... I too find it with that link, however it's an older version. If you go to: ...
... Sorry I wasn't clear - I meant to try this in a handler other then ModPerl::Registry, something like: =====================================================...
62002
Stas Bekman
stas@...
Dec 2, 2004 3:28 pm
... Thanks for the link, Pratik. I guess it did work at some point then. I confirm that I can reproduce this problem. My guess is that something has changed in...
62003
Stas Bekman
stas@...
Dec 2, 2004 3:32 pm
... Right I can see that now. I shouldn't have alternating requesting the two. Didn't realise the two very connected (the same script) ... That's easy - use a...
62004
Stas Bekman
stas@...
Dec 2, 2004 3:35 pm
Please show us your perl config: Perl.exe -V It's possible that for some reason the location of XS modules is not found. -- ...
62005
Kurt Hansen
khansen@...
Dec 2, 2004 3:35 pm
... I stand corrected. However, as Frank points out, doing an "install Apache::Request" from the CPAN shell does not get you version 2. This behavior is...
62006
Perrin Harkins
perrin@...
Dec 2, 2004 7:17 pm
... I don't know anyone who has used SQLRelay, so I couldn't say if it works or not. If it does, please report back to us. However, this really sounds like...
62007
Rob Mueller
robm@...
Dec 2, 2004 7:48 pm
... This really sounds like a lot more httpd mod_perl processes than you should need, even on a heavily loaded system. Are you using a light frontend ...
62008
Chris Brown
chris@...
Dec 2, 2004 9:36 pm
Hi all, New to the list, somewhat new to this whole mod_perl thing. I've got a pretty good handle on it but recently I've been getting segfaults when calling...
62009
Stas Bekman
stas@...
Dec 2, 2004 10:12 pm
[please don't forget to Reply-All when following up on list's discussion! Thanks] ... Excellent. Why can't you use "httpd -k graceful" then? ... I think it...
62010
Stas Bekman
stas@...
Dec 2, 2004 10:16 pm
... So here is the answer from httpd-dev (courtesy of Jeff Trawick): graceful uses signal USR1; ungraceful restart uses HUP; so you want to use "kill -USR1" or...
62011
Ray Chuan
rctay1989@...
Dec 3, 2004 1:15 am
perl -V: === Summary of my perl5 (revision 5 version 8 subversion 4) configuration: Platform: osname=MSWin32, osvers=4.0, archname=MSWin32-x86-multi-thread ...
62012
Ray Chuan
rctay1989@...
Dec 3, 2004 1:34 am
Thanks for all the help. Apparently, I changed the Apache's service logon settings, and it now works. ... ...
62013
Ray Chuan
rctay1989@...
Dec 3, 2004 1:35 am
yes, it worked...great, first time smth with DBI worked. Apache, MySQL and Perl all sit in the same dir, and drive. ... ...
62014
Maxim Nechaev
nechaev@...
Dec 3, 2004 4:49 am
Hi! I want set AuthName from hadler(), instead from httpd.conf. I put in Authen handler: ... sub handler { my $r = shift; $r->auth_name('Decline...
62015
Geoffrey Young
geoff@...
Dec 3, 2004 5:05 am
... this kind of activity looks to be governed by the same override rules as .htaccess files. so, try setting AllowOverride AuthConfig in the <Location> or...
62016
Maxim Nechaev
nechaev@...
Dec 3, 2004 5:25 am
GY> this kind of activity looks to be governed by the same override rules as GY> .htaccess files. so, try setting GY> AllowOverride AuthConfig It's not...
62017
SHAHNAWAZ OSMAN
compuerworld04@...
Dec 3, 2004 6:54 am
I have those lines in my http.conf in mod_alias section and I changed those as per your suggestion but still it's not working. ...
62018
SHAHNAWAZ OSMAN
compuerworld04@...
Dec 3, 2004 7:02 am
Sorry, I guess I spoke too soon. I didn't see the next message from Stas. I just created a directory (mkdir /usr/local/httpd_perl/perl) and it's working!!!...
62019
Ray Chuan
rctay1989@...
Dec 3, 2004 8:41 am
For the sake of completion, the problem was solved by checking the option in Properties->Logon "Allow service to interact with Desktop ... ...
62020
Bill Whillers
mod_perl@...
Dec 3, 2004 7:17 pm
I recently ported a set of old CGI applications for mod_perl. Each script loads a few hashes from flat files (using "open") filled with plain rows of delimited...
62021
Perrin Harkins
perrin@...
Dec 3, 2004 7:40 pm
... If the data is small enough, loading it into memory should work fine, and will be faster than loading from the database. If you only need access to...
62022
INFOQUEST USA INC
infoquestusainc@...
Dec 3, 2004 11:39 pm
I am glad that your installtion is successful. I would suggest you to buy some books specially 'Practical modperl" by Stas. You can always ask the author here,...
62023
INFOQUEST USA INC
infoquestusainc@...
Dec 4, 2004 12:04 am
You are very welcome Stas. Thank you for pointing out the directory issue. Your book really helped me a lot and I truely believe that people like you are the...
62024
Sam Tregar
sam@...
Dec 4, 2004 1:06 am
... Well, I don't know anything about your specific problem but judging by the lack of responses neither does anyone else. So here's what I'd do: - Download...
62025
Michael Peters
mpeters@...
Dec 4, 2004 2:40 am
... you should really check out ApacheToolBox (http://apachetoolbox.com/). It's really easy to use to install apache/mod_perl/php, and a whole bunch of other...
62026
Raphael Ferguson
fergur@...
Dec 4, 2004 4:33 am
It turned out to be a misplaced PerlInithandler Apache::RequestNotes - was in the main config instead of just in the 's where I wanted it to be....