Re: Shared package globals?

2003-12-09 Thread Stas Bekman
cenario in MP2 are of interest too... It isn't any different under mp2. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://u

Re: APR::URI->parse question

2003-12-09 Thread Stas Bekman
uot;hostinfo" via package APR::URI" But by requiring APR::URI, all works fine ($uri seems to be an APR::URI object) I'm missing some thing again? :-) No, it's just that the XSUB hostinfo() lives in APR::URI's .so and not Apache::URI's one. So yes, you need to load t

Re: [mp2] Memory Leak

2003-12-09 Thread Stas Bekman
$f->ctx (I think), which leaks as you have observed. I'll keep you posted once I've fixed it. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://

Re: Problems installing mod_perl

2003-12-09 Thread Stas Bekman
t.localdomain localhost I'm pretty sure that once you add this line it'll work. Though let's debug the issue so we can croak with a proper suggestion if that happens to others. ______ Stas BekmanJAm_pH ---

Re: Problems installing mod_perl

2003-12-09 Thread Stas Bekman
right? __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com -- Reporting

Re: Shared package globals?

2003-12-09 Thread Stas Bekman
do a little patching there. I don't think it was ported to mp2, I suppose it shouldn't be too hard to do it. Or you can use Class::Singleton. Or even write your own ;) __ Stas BekmanJAm_pH --> Just A

Re: Problems installing mod_perl

2003-12-09 Thread Stas Bekman
apache.org/bugs/ first. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apa

Re: [MP2] Apache Fails To Load During Make Test

2003-12-09 Thread Stas Bekman
try to randomize the seed on its own. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org

Re: [MP2] Apache Fails To Load During Make Test

2003-12-09 Thread Stas Bekman
st returned status 255 (wstat 65280, 0xff00) DIED. FAILED tests 1-3 OK, disregard this one for now, I'll get back to it later. It's not a mod_perl test, but external use of APR. though do chdir ModPerl-Registry make test and see that those tests pass 100% _____

Re: [MP2] Apache Fails To Load During Make Test

2003-12-09 Thread Stas Bekman
left it. Sorry, I didn't understand. Does running: % PERL_HASH_SEED=0 make test solve the problem or not? If it does how many secs did it take to start? Can you paste the console output at the beginning of the test? ______

Re: [mp2] Memory Leak

2003-12-09 Thread Stas Bekman
Stas Bekman wrote: Pringle, Chris (HP-PSG) wrote: Hi, Apologies for it not being in the correct format. I wasn't after format but the information ;) Below is a small section of code that I'm having problems with. Thanks for the code sample. It allowed me to single out the guilt

Re: [mp2] Memory Leak

2003-12-09 Thread Stas Bekman
iltering here # # $f->print($buffer); } $f->ctx({ buffer => $buffer}); also you don't want to store anything on the last invocation (as it's of no use), so put it into the else branch: if ($f->seen_eos) { ..

Re: [mp2] make fails under mp1.99_11, perl 5.8.2 src, httpd-2.0.48, rhat 2.4.20-20.9

2003-12-10 Thread Stas Bekman
d (first use in this function) [...] Application of the following patch to xs/APR/APR/APR.xs corrected the problem and the build completed successfully: 31c31 < # define extra_apr_init() --- # define extra_apr_init(aTHX) Thanks Fred, committed.

Re: [MP2] Apache Fails To Load During Make Test

2003-12-10 Thread Stas Bekman
umber. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache

Re: [mp2] libgd (and freetype) problem with ModPerl::Registry

2003-12-10 Thread Stas Bekman
nd the solution, so we can document it? Thanks. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.per

Re: [MP2] Bandwidth Meterer

2003-12-10 Thread Stas Bekman
ork? Or some similar process to get the actual delay which the data flows? I don't think I understand your question. How a filter can emulate the delay of the network which is an unknown factor which it's supposed to measure? __

Re: [MP2] Bandwidth Meterer

2003-12-10 Thread Stas Bekman
an also add FLUSH buckets, though you will need to work with bucket brigades and not the simplified streaming API. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide --->

Re: [mp2] Memory Leak

2003-12-10 Thread Stas Bekman
t thought to let you know. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.

Re: [BUG] Inconsistent $r->print() behavior with references

2003-12-10 Thread Stas Bekman
t to print. It's now documented as such. Jonathan, please adjust your code to dereference the scalar references before sending them to print. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason

Re: [mp2] Memory Leak

2003-12-10 Thread Stas Bekman
g INCLUDES or some other core filter with a big file. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org ht

Re: [mp2] Memory Leak

2003-12-11 Thread Stas Bekman
Stas Bekman wrote: Pringle, Chris (HP-PSG) wrote: Stas, I tried the latest version this morning, and it doesn't appear to have made a great deal of difference. I'm not sure whether it consumes memory as fast, however, as you said, there are leaks elsewhere. The following code rep

Re: [mp2] Memory Leak

2003-12-11 Thread Stas Bekman
appreciated! On the opposite, it was fun and I've learned a few things ;) ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mai

Re: Documentation update request [WAS Re: [mp2] Memory Leak]

2003-12-11 Thread Stas Bekman
Raul Dias wrote: On Wed, 2003-12-10 at 20:42, Stas Bekman wrote: Lastly, why does the memory continue to be consumer after the client has terminated the connection? Because the server doesn't realize that the connection was aborted. You can check that with $c->aborted. It could also be

CGI.pm 3.01 is out

2003-12-11 Thread Stas Bekman
For those who have been waiting for CGI.pm 3.01, it's finally out and available from your local CPAN mirrors. Thanks Lincoln. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/

Re: make test fails- can't find My::child_init

2003-12-11 Thread Stas Bekman
John Saylor wrote: hi ( 03.11.26 13:46 -0800 ) Stas Bekman: and if you add: $INC{"My/child_init.pm"} = __FILE__; similar to my previous patch. This is not the right solution, but something to try. For some reason it can't see the sub child_init created in startup.pl, and trie

Re: make test fails- can't find My::child_init

2003-12-11 Thread Stas Bekman
John Saylor wrote: hi ( 03.12.11 11:19 -0800 ) Stas Bekman: try adding $INC{"My.pm"} = __FILE__; just before: PerlChildInitHandler My::child_init i did it and it's about the same. here's the error log: OK, how about: $INC{"My.pm"} = __FILE__; $INC{&quo

Re: Testing

2003-12-11 Thread Stas Bekman
send only the ok/not oks to the client http://perl.apache.org/docs/general/testing/testing.html#Developing_Response_only_Part_of_a_Test ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/

Re: Documentation update request [WAS Re: [mp2] Memory Leak]

2003-12-11 Thread Stas Bekman
Raul Dias wrote: On Thu, 2003-12-11 at 16:30, Stas Bekman wrote: Raul Dias wrote: On Wed, 2003-12-10 at 20:42, Stas Bekman wrote: Lastly, why does the memory continue to be consumer after the client has terminated the connection? Because the server doesn't realize that the connectio

Re: Documentation update request [WAS Re: [mp2] Memory Leak]

2003-12-11 Thread Stas Bekman
ng too, but it'll return some of the data that you may have printed out already. which is not a problem if the connection has been aborted anyway. I've asked on httpd-dev what should be returned and didn't have any follow ups so far. But I think APR::FAILURE, or anything els

Re: Fwd: Testing

2003-12-11 Thread Stas Bekman
uch detail about what did you try so I can't tell whether it's a problem on your side or with the code. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http:/

Re: [mp2] CGI.pm patch

2003-12-13 Thread Stas Bekman
d. [Stas] ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org htt

Re: re initialize a namespace

2003-12-13 Thread Stas Bekman
nal variables. It's quite possible that some can find security issues with this functionality. At the very least CGI.pm, shouldn't allow using 'CGI' as the namespace for importing names. __ Stas BekmanJAm_pH -->

Re: mod_perl non-configurability ???

2003-12-14 Thread Stas Bekman
/bugs/ __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbo

Re: Fwd: Testing

2003-12-14 Thread Stas Bekman
choice but nuke any occurence of Apache/test.pm. As you have noted newer mod_perl 1 releases don't have this problem, so within the next 6 months or so most people will migrate to these new versions and the problem will disappear by itself... __

Re: newbie query

2003-12-15 Thread Stas Bekman
other to start with. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmas

Re: Data lost when browser refreshed

2003-12-15 Thread Stas Bekman
ame code works without mod_perl enabled. I'd suggest upgrading to CGI 3.01 and mod_perl 1.99_11. There were bugs with the incomplete read. You could have been hit by them. It has been resolved in the above versions. __ St

Re: Data lost when browser refreshed

2003-12-15 Thread Stas Bekman
est apache rpm? ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com --

Re: Data lost when browser refreshed

2003-12-15 Thread Stas Bekman
1.99_09-10.src.rpm Otherwise build both Apache and mod_perl from source. It shouldn't be too hard to do that. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> h

Re: Apache::Status erroneously reports error

2003-12-16 Thread Stas Bekman
le => qw(OK); our $newQ; @@ -135,7 +136,7 @@ } $r->print(""); -1; +return Apache::OK; } sub header { Thanks Paul, That has already been fixed in the cvs version: Fix Apache::Status::handler to return 'Apache::OK' [Juanma Barranquero <[EMAIL PROTECTED]>

Re: use vars question

2003-12-16 Thread Stas Bekman
, yes. Undefined, no. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketma

Re: use vars question

2003-12-16 Thread Stas Bekman
or Class::Singleton or writing your own, is a more robust solution than plain globals. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org

Re: Clearing globals

2003-12-16 Thread Stas Bekman
hings that you created. But again, you won't need that when using Singleton, which can contain all the "globals" now as private vars and you can nuke it at once. ______ Stas BekmanJAm_pH --> Just Ano

Re: Proxy Directive and PerlSetOutputFilter

2003-12-16 Thread Stas Bekman
me (look at the proxy settings). Does SetOutputFilter bladibla work? I think the filter may need to be a connection filter for it to work for Proxy. I haven't tried this setup yet, so I'm just guessing here. ______ Stas

Re: Problems with Multiple PerlTransHandlers

2003-12-16 Thread Stas Bekman
ior in 1.3 isn't likely to change. If it's not documented, then it should be. Geoff, can you add some docco to guide/config.pod? I'm not sure we have any other suitable place for this. May be guide/troubleshooting.pod is more suitable? __

Re: Proxy Directive and PerlSetOutputFilter

2003-12-16 Thread Stas Bekman
x27;t merge it with the current requests's config. It looks like mod_include is [Dir] too: http://httpd.apache.org/docs-2.0/mod/mod_include.html#enabling ______ Stas BekmanJAm_pH --> Just Another mod_perl Hac

Re: Proxy Directive and PerlSetOutputFilter

2003-12-16 Thread Stas Bekman
Stas Bekman wrote: I don't seem to be able to include any filters from , e.g.: Now I recall that Chris Pringle was running the filter without any problems. http://marc.theaimsgroup.com/?l=apache-modperl&m=107097076003389&w=2 But I fail to reproduce his setup. I have the data fr

Re: Apache::Singleton

2003-12-17 Thread Stas Bekman
aring_Them_Between_Modules_Packages ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http:/

Re: Apache::Cookie->fetch

2003-12-17 Thread Stas Bekman
aving a hard time coping with finishing the core documention... Patches to the Apache::Cookie manpage are very welcome. You can send them to the apreq-dev list. http://httpd.apache.org/apreq/ ______ Stas BekmanJAm_pH

Re: Perl warn failures

2003-12-17 Thread Stas Bekman
eports we need you to provide more info, as explained at http://perl.apache.org/bugs/ __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[

Re: [mp2] libgd (and freetype) problem with ModPerl::Registry

2003-12-17 Thread Stas Bekman
Kaiko Kaur wrote: On Wed, Dec 10, 2003 at 11:05:33AM -0800, Stas Bekman wrote: Kaiko Kaur wrote: [...] I recompiled freetype library and gd library and have result: # ldd /usr/lib/libgd.so libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0x4003b000) libfreetype.so.6 => /usr/lib/libfreet

Re: introducing new code with no perceived user delays?

2003-12-17 Thread Stas Bekman
load not to reload the modules when the timestamp file has changed, unless your rule applies (e.g. randomize it, or whatever). You lose the shared memory benefit here and better off not use Apache::Reload in production. ______ Stas Bekma

Re: introducing new code with no perceived user delays?

2003-12-17 Thread Stas Bekman
ormance.html#Preloading_Registry_Scripts_at_Server_Startup http://perl.apache.org/search/swish.cgi?query=Apache%3A%3ARegistryLoader&sbm=&submit=search __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stas

Re: introducing new code with no perceived user delays?

2003-12-17 Thread Stas Bekman
__ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com -- Reportin

Re: introducing new code with no perceived user delays?

2003-12-17 Thread Stas Bekman
mp2, but you will have to test your app and see for yourself. http://perl.apache.org/docs/1.0/guide/performance.html#Benchmarking_Response_Times A report of how did mp2 scored vs. mp1 would be a useful thing to receive. __ Stas Bek

Re: Where is default Loaded Modules configuration ???

2003-12-17 Thread Stas Bekman
ver rely that something else will load it. Perl won't load the module again if it already has been loaded: __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide --->

Re: Where is default Loaded Modules configuration ???

2003-12-18 Thread Stas Bekman
does and they are more oriented for a step by step learning and reference use. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL P

Re: Apache::DB - Undefined subroutine ???

2003-12-18 Thread Stas Bekman
you init Apache::DB ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmas

[RELEASE CANDIDATE] please test mod_perl-1.99_12-dev.tar.gz

2003-12-19 Thread Stas Bekman
TED]>] sections now properly set filename and line number information, making error messages report the correct location. [Philippe M. Chiasson] __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.o

[RELEASE CANDIDATE] please test Apache-Test-1.07-dev.tar.gz

2003-12-19 Thread Stas Bekman
e same port twice [Stas] added bugreport and file argument options to Apache::TestRun::generate_script() [Geoffrey Young] ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

Re: [RELEASE CANDIDATE] please test mod_perl-1.99_12-dev.tar.gz

2003-12-19 Thread Stas Bekman
Steve Hay wrote: Stas Bekman wrote: A release candidate for mod_perl-1.99_12 is available: http://apache.org/~stas/mod_perl-1.99_12-dev.tar.gz Please test and report any failures to this list. WinXP / MSVC++ 6 / Perl 5.8.2 (ActivePerl Build 808) / Apache 2.0.48: Builds OK, and the top-level

Re: Apache::DB - Undefined subroutine ???

2003-12-19 Thread Stas Bekman
uggest: use Apache::DB (); Apache::DB->init; PerlFixupHandler Apache::DB Only when you start the server with httpd -DPERLDB (and -X) it'll work. ______ Stas BekmanJAm_pH

Re: Request object getting switched

2003-12-19 Thread Stas Bekman
r->pnotes('foo'); http://perl.apache.org/docs/1.0/api/Apache.html#_r_E_gt_main http://perl.apache.org/docs/1.0/guide/snippets.html#Passing_Notes_Between_mod_perl_and_other__non_Perl__Apache_Modules __ Stas Bekman

Re: Request object getting switched

2003-12-19 Thread Stas Bekman
Eric Sammer wrote: Stas Bekman wrote: You have this problem when running a sub-request. In which case you need to do: my $pnote = $r->main ? $r->main->pnotes('foo') : $r->pnotes('foo'); http://perl.apache.org/docs/1.0/api/Apache.html#_r_E_gt_main http:

Re: Prematch and postmatch regex vars and performance

2003-12-19 Thread Stas Bekman
rrect. See: http://search.cpan.org/~andk/Devel-SawAmpersand-0.30/lib/Devel/SawAmpersand.pm perl -MDevel::SawAmpersand -le '$&; Devel::SawAmpersand::sawampersand() && die "oops"' Devel::FindAmpersand from the same package will tell you where it was defined wh

Re: Debugging mod_perl ???

2003-12-19 Thread Stas Bekman
around linen [expr]Next, steps over subs so you are after 'v' in 5.8+, what used to be 'w' in 5.6 I'll update the online docs. __ Stas BekmanJAm_pH --> Just Another mod_per

Re: VirtualHost + PerlSetVar

2003-12-19 Thread Stas Bekman
get during the config phase). Sounds like your case can be a useful addition to the existing example: http://perl.apache.org/docs/2.0/user/handlers/server.html#PerlPostConfigHandler ______ Stas BekmanJAm_pH --> Just Ano

Re: using pnotes to store/retrieve Class::DBI objects?

2003-12-19 Thread Stas Bekman
env, so the values won't persist */ ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http:/

Re: [mp1] Bug + Patch: Improper signal handler restoration with sigaction()

2003-12-19 Thread Stas Bekman
you for the detailed report and the patch, Douglas. It's on the mp1 TODO list now. Any idea whether mod_perl 2.0 may have any of these issues? In particular I'm after tests that we can reproduce the problem with. Thanks. ______

Re: introducing new code with no perceived user delays?

2003-12-20 Thread Stas Bekman
-u orig new See: http://perl.apache.org/download/docs.html#Submitting_documentation_patches Thanks. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apach

Re: using pnotes to store/retrieve Class::DBI objects?

2003-12-20 Thread Stas Bekman
dler stage? Right, here is the fix: ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org ht

Re: Problems with configuring mod_perl / apache 1.3.29 and mod ssl -2.8.16-1.3.29

2003-12-20 Thread Stas Bekman
#Wrong_Apache_mod_perl_combination Apache 2.0 doesn't work with mod_perl 1.0. Apache 1.0 doesn't work with mod_perl 2.0. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

Re: directive says no perl handler specified

2003-12-20 Thread Stas Bekman
lem, but it wouldn't finish installing... I got errors. You need to install the latest modperl, 1.99_11 (1.99_12 will be released on Monday). ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http:/

Re: VirtualHost + PerlSetVar

2003-12-21 Thread Stas Bekman
I doubt any good will come out of this. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apach

Re: Problems with configuring mod_perl / apache 1.3.29 and mod ssl -2.8.16-1.3.29

2003-12-21 Thread Stas Bekman
Ged Haywood wrote: HI all, On Sat, 20 Dec 2003, Stas Bekman wrote: See: http://perl.apache.org/bugs/ PING perl.apache.org (209.237.227.195) from 212.22.195.7 : 56(84) bytes of data. --- perl.apache.org ping statistics --- 9 packets transmitted, 0 packets received, 100% packet loss Is anyone

Re: Testing custom configuration directives

2003-12-21 Thread Stas Bekman
of tests. Unfortunately apache.org is still down. But once it's up, Carletto please read: http://perl.apache.org/docs/general/testing/testing.html __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://st

Re: VirtualHost + PerlSetVar

2003-12-21 Thread Stas Bekman
Stas Bekman wrote: Paul G. Weiss wrote: Rats! PerlPostConfigHandler appears to have absolutely no effect when placed inside a scope. It does indeed run when placed outside. I know this because I have something like: open(H, ">", "/tmp/output"); print H "someth

[ANNOUNCE]: mod_perl 1.99_12

2003-12-22 Thread Stas Bekman
ijsen <[EMAIL PROTECTED]>] Fix Apache::Status::handler to return 'Apache::OK' [Juanma Barranquero <[EMAIL PROTECTED]>] sections now properly set filename and line number information, making error messages report the correct location. [Philippe M. Chiasson]

Re: [RELEASE CANDIDATE] please test mod_perl-1.99_12-dev.tar.gz

2003-12-22 Thread Stas Bekman
Thank you all for testing. 1.99_12 is now out. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.or

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
Jay R. Ashworth wrote: On Mon, Dec 22, 2003 at 01:15:10PM -0800, Stas Bekman wrote: This is Apache::Scoreboard for httpd-2.0 (mod_perl 2.0). You will still need Apache-Scoreboard-0.10 for mod_perl 1.0 and its apps. CPAN will now always try to install Apache-Scoreboard-2.xx, even when you want it

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
Jay R. Ashworth wrote: On Mon, Dec 22, 2003 at 01:28:40PM -0800, Stas Bekman wrote: that will allow several generations of modules with the same name coexist happily on CPAN. Until masses will start complaining I don't see this being resolved. Mostly because, IMHO, that is not the proper sol

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
Jay R. Ashworth wrote: On Mon, Dec 22, 2003 at 01:38:17PM -0800, Stas Bekman wrote: The automatic tools don't *have* to: they're *told* which product to install by a human, no? No, they aren't. In PREREQ_PM in Makefile.PL you specify the minimal version of some module, CPAN/CPAN

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
ers will not start complaining en masse to those in charge, I don't see things starting to move. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> h

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
Jay R. Ashworth wrote: On Mon, Dec 22, 2003 at 09:41:29PM +, Ged Haywood wrote: On Mon, 22 Dec 2003, Stas Bekman wrote: Jay R. Ashworth wrote: On Mon, Dec 22, 2003 at 01:28:40PM -0800, Stas Bekman wrote: ... Guys, it's Christmas. eh? so? Certainly. Well, not for another couple days.

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
Randy Kobes wrote: On Mon, Dec 22, 2003 at 01:15:10PM -0800, Stas Bekman wrote: This is Apache::Scoreboard for httpd-2.0 (mod_perl 2.0). You will still need Apache-Scoreboard-0.10 for mod_perl 1.0 and its apps. CPAN will now always try to install Apache-Scoreboard-2.xx, even when you want it to

Re: VirtualHost + PerlSetVar

2003-12-22 Thread Stas Bekman
$val\n"; } ... As you can see you can traverse the linked list of all vhost entries. And you get all the overrides (e.g. PerlAddVar) considered. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker

Re: getting any version of modperl to run

2003-12-22 Thread Stas Bekman
nc it with the latest version and get Lincoln to release it. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTE

[ANNOUNCE] GTop-0.12

2003-12-22 Thread Stas Bekman
/libgtop/ [Stas] ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org htt

[ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
h the same name coexist happily on CPAN. Until masses will start complaining I don't see this being resolved. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

[ANNOUNCE] Apache::VMonitor 2.0

2003-12-22 Thread Stas Bekman
mod_perl 1st and 2nd generations. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apachewe

[ANNOUNCE] Apache::Filter::HTTPHeadersFixup 0.01

2003-12-22 Thread Stas Bekman
way to manipulate HTTP headers without invoking any mod_perl HTTP callbacks. This is accomplished by using input and output connection filters. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.

Re: [ANNOUNCE] Apache::Scoreboard 2:01

2003-12-22 Thread Stas Bekman
help to ask CPAN maintainers to provide solutions, that they know about very well. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EM

Re: getting any version of modperl to run

2003-12-22 Thread Stas Bekman
Stas Bekman wrote: Perrin Harkins wrote: Teddy Mills wrote: I tried to install mod_perl2 on this to get the Apache::Mp3 to work, but apparently mod_perl2 is not ready for prime time yet. As I understand it, the issue is that Apache::MP3 does not have support for mod_perl 2 yet. It does sort

[ANNOUNCE]: Apache-Test 1.07

2003-12-22 Thread Stas Bekman
x27; which was incorrectly using the same port twice [Stas] added bugreport and file argument options to Apache::TestRun::generate_script() [Geoffrey Young] ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stas

Re: VirtualHost + PerlSetVar

2003-12-22 Thread Stas Bekman
Paul G. Weiss wrote: On Mon, 22 Dec 2003 15:26:53 -0800, Stas Bekman <[EMAIL PROTECTED]> wrote: You don't need to walk the config tree to accomplish that. There is a much simpler way: sub post_config { my($conf_pool, $log_pool, $temp_pool, $s) = @_; for (my $vhost_s

Re: mod_perl 2.0 "make test" generated a coredump

2003-12-23 Thread Stas Bekman
Thank you. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com -- Repo

Re: Getting error after installation

2003-12-23 Thread Stas Bekman
nd_Friends __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://

Re: [PATCH] acl support

2003-12-30 Thread Stas Bekman
em? (but first reproducing it, so you know that it really solves it) Thanks. Stas Bekman wrote: Something definitely has to be done to make this work, since acls are increasingly being supported in the major distributions, including in redhat Very Soon Now. I certainly agree with you. However

Re: Installation Help

2003-12-31 Thread Stas Bekman
cs at http://perl.apache.org/docs/2.0/ will answer all your questions. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperl

Re: [MP2] Storable/Cache trobles with MM worker?

2003-12-31 Thread Stas Bekman
ny different from normal Perl. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://

Re: what should provide ModPerl/MM.pm ?

2003-12-31 Thread Stas Bekman
test-skeleton-mp1, or test-stub or else... ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com h

  1   2   3   4   5   6   7   8   9   10   >