Re: [RFC] Apache::LDAP

2002-12-02 Thread Stas Bekman
o be registered (it's not enough to upload the module on CPAN), login into your PAUSE account and go to the registration section. If you have further questions module-authors at perl.org is the place to ask them. ______ Sta

Re: [mp1] Still can not get working DSO configuration on Tru64

2002-12-01 Thread Stas Bekman
ing True64 and can give you some hints? ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.o

Re: Apache 2?

2002-11-30 Thread Stas Bekman
ce the new AssignUserID and ChildPerUserID directives which now can set different uid/gid for each group of processes/threads. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

Fwd: Red Hat's use of mod_perl

2002-11-29 Thread Stas Bekman
Red Hat, Inc. -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://us

Re: [mp 2.0] can not compile mp 1.99_07

2002-11-29 Thread Stas Bekman
ings will be > defined - any hints? > Last time I compiles 1.99_03 successfully. Thanks for the report Kai. Fixed in the current cvs. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.or

[patch] Apache::DB now works with 5.8.0+

2002-11-29 Thread Stas Bekman
istry::MarkLine = 0; sub init { +*DB::DB = sub {} unless DB->can("DB"); # temp definition for 5.8.0+ if(init_debugger()) { warn "[notice] Apache::DB initialized in child $$\n"; } ______ Stas Bekman

Re: default Content-Length calculation has been removed in 2.0 (wasRe: mod_perl 2.x vs. mod_perl 1.x benchmarks)

2002-11-29 Thread Stas Bekman
it just makes things a bit more complicated to setup and maintain. So if we can provide an alternative solution that requires only one server, that would be cool. That's said let's worry first to get the core things working first and if you want to play with optimizatio

Re: Apache::Reload - filtering include directories

2002-11-28 Thread Stas Bekman
Stas Bekman wrote: Harry Danilevsky wrote: I did send the patch to Matt couple of days ago, but haven't heard back yet. Matt is on vacation I suppose I can also brace myslef, add namespaces, and clean up my own code. That's a good idea. As for the versioning, if this patc

Re: [mp1] callback called exit (many times)

2002-11-28 Thread Stas Bekman
Marcin Kasperski wrote: Stas Bekman <[EMAIL PROTECTED]> writes: Marcin Kasperski wrote: Recently I happened to get the error log flooded with the message callback called exit (repeated a couple of million times, probably by one process or a few processes). This was some side-eff

Re: [mp1] callback called exit (many times)

2002-11-28 Thread Stas Bekman
&submit=search ______ 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

Re: New problems making mod_perl run: Apache/2.0.43 (Unix) mod_perl/1.99_07-devPerl/v5.8.0

2002-11-28 Thread Stas Bekman
APACHE_INC} = $build->{APXS_INCLUDEDIR}; +$Setup{APACHE_LIB} = $XXX; +$Setup{MODPERL_INC} = $build->{MODPERL_INC}; +$Setup{MODPERL_LIB} = $XXX; # win32 lib? +} + +#need this alias for Apache::src backwards compat +$Setup{Apache_Src} = $Setup{APACHE_SRC}; + + 1; __END__ __

Re: Apache::Reload and @INC

2002-11-28 Thread Stas Bekman
vhosts can probably help rectify the issue here. ______ 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://apachew

Re: default Content-Length calculation has been removed in 2.0 (wasRe: mod_perl 2.x vs. mod_perl 1.x benchmarks)

2002-11-28 Thread Stas Bekman
t reading the following section: http://perl.apache.org/docs/2.0/user/handlers/filters.html#All_in_One_Filter and trying the MyApache::FilterSnoop module at work should clearify a lot. ______ Stas BekmanJAm_pH --> Just Ano

Re: flush problem

2002-11-28 Thread Stas Bekman
example: use strict; $| = 1; my ($i,$r); $r = shift; $r->content_type('text/html'); while ($i < 10) { $r->printf($i."\n"); $r->printf("\0"); $i++; sleep 1; } --- $r->rflush() is indeed not working yet. __

Re: PATCH Apache::Status.pm

2002-11-28 Thread Stas Bekman
. Committed this and added two more similar fixes which solve the same problem in two other functions in that module. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

Re: Compilation problems with mod_perl

2002-11-28 Thread Stas Bekman
Stas Bekman wrote: Benny Jensen wrote: Hello, I'm trying to compile mod_perl for apache2. But i got a error message that i dont know how to solve. The following message is what i get: /LD_RUN_PATH="" cc -shared -L/usr/local/lib APR.o -o ../../../blib/arch/Apache2/

default Content-Length calculation has been removed in 2.0 (was Re:mod_perl 2.x vs. mod_perl 1.x benchmarks)

2002-11-28 Thread Stas Bekman
ention. Actually, returning to Issac's question regarding releasing the handler early, you need a slightly modified version of the cl filter to do that. Since it's already buffering the data, you just want to do this unconditionaly. _______

Re: segmentation fault using a startup file

2002-11-28 Thread Stas Bekman
ite rule solves this problem. ______ 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: Apache 2?

2002-11-28 Thread Stas Bekman
Issac Goldstand wrote: - Original Message - From: "Stas Bekman" <[EMAIL PROTECTED]> . Since if your mod_perl handler sends the data to a thread which runs a filter that send the data to a client (and doesn't need perl) it'll still block on the network tran

Re: Apache::Reload and @INC

2002-11-27 Thread Stas Bekman
Location_Basis_ _________ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http://ticketmaster.com http://apacheweek.com http://singlesheaven.com http://perl.

Re: OT: localtime can't handle epochs less than 0 ???

2002-11-27 Thread Stas Bekman
you choose from. _________ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http://ticketmaster.com http://apacheweek.com http://singlesheaven.com http://perl.apache.org http://perlmonth.com/

Re: make test failed when installing mod_perl 2.0 on Linux

2002-11-26 Thread Stas Bekman
he trace so we can see why these don't get resolved. ______ 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: Apache 2?

2002-11-26 Thread Stas Bekman
ion please help to improve it. Especially if you have more interesting examples, than the ones I've come up with. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---

Re: Apache 2?

2002-11-26 Thread Stas Bekman
nario.html __ 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: 2.0 estimated release date?

2002-11-26 Thread Stas Bekman
early adopters, who are willing to try things and be patient to report problems and help workout the solutions. 2.0 needs a lot of real world testing before it will released, something that no test suite can replace. __ Stas Bekman

Re: Identifying memory leaks

2002-11-26 Thread Stas Bekman
sible, hopefully without involving any rdbms code, send the complete details of your setup and we will see what can be done. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl

Re: partial page display

2002-11-26 Thread Stas Bekman
issue to death: http://marc.theaimsgroup.com/?t=10365327621&r=1&w=2 ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[E

Re: partial page display

2002-11-26 Thread Stas Bekman
1.0/guide/performance.html#Using1_Under_mod_perl_and_Better_print___Techniques_ ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PRO

Re: Problems compiling mod_perl 1.99_07 in RH 8.0

2002-11-26 Thread Stas Bekman
quot;-l$_", qw(apr aprutil); +my @libs = map { qx{$prefix/bin/$_-config --link-ld} } qw(apr apu); +chomp @libs; ModPerl::MM::WriteMakefile( 'NAME'=> 'APR', 'VERSION_FROM' => 'APR.pm', -'LIBS' => [&qu

Re: problems with characters being added to a request.

2002-11-26 Thread Stas Bekman
amazon.com/exec/obidos/redirect?tag=mobygames%26creative=D12JEXH87B4VLK%26camp=2025%26link_code=sp1%26path=ASIN/B2SUQV Wierd, huh? If you look in the error log, you'll see that both test1 and test2 printed out withou

Re: Problems compiling mod_perl 1.99_07 in RH 8.0

2002-11-26 Thread Stas Bekman
util libs. see the online docs. ______ 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://modp

Re: Trouble with make source_scan

2002-11-26 Thread Stas Bekman
should manually add the functions to xs/tables/current/, which is pretty easy to do if you don't have many of them. And if you have some improvements to the scarce notes in the 'mod_perl 2.0 Source Code Explained' chapter, please send me a patch... thanks. ___

Re: IPC::Open2, mod_perl and cvsweb

2002-11-26 Thread Stas Bekman
e. will be online at the troubleshooting.html chapter on the next automatic update (within 6 hours). ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http:/

Re: make error compiling mod_perl on RH7.1

2002-11-25 Thread Stas Bekman
;t get all the features (e.g. perlio, on which other features depend) and you should remember that perl version is very buggy. In any case, if you try the current cvs you should be able to compile 2.0 with 5.6.0 again. -Original Message----- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: 1

Re: adding "company Foo uses mod_perl" ads

2002-11-25 Thread Stas Bekman
Ken Y. Clark wrote: On Tue, 26 Nov 2002, Stas Bekman wrote: advertising the merits of your product or going down on your competitors ^^ For future reference, this phrase has certain ... um ... sexual connotations, at least

Re: mod perl 2.0 /Apache 2.0

2002-11-25 Thread Stas Bekman
[ replies should go to the list and not to me :( ] Rick Tan wrote: It works with Apache 1.3.x/mod_cgi. Apache 2.0/mod_cgi doesn't work either. that's what I thought. Contact the httpd list then as this is not a mod_perl problem: http://httpd.apache.org/lists.html#http-users S

adding "company Foo uses mod_perl" ads

2002-11-25 Thread Stas Bekman
will support it and having users having these newer browsers :( ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED]

Re: mod perl 2.0 /Apache 2.0

2002-11-25 Thread Stas Bekman
27;t provide the relevant configuration section, so it's hard to tell. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL

Re: Subroutine main redefined?

2002-11-25 Thread Stas Bekman
Jan Theofel wrote: Hello, Am Mon, 2002-11-25 um 01.14 schrieb Stas Bekman: Jan Theofel wrote: [Sun Nov 24 17:59:45 2002] shop.pl: Subroutine main redefined at /home/www/[...]/shop/engine/shop.pl line 19. This is a warning, not an error. Ok, but why do I get this warning? I don&#

Re: IPC::Open2, mod_perl and cvsweb

2002-11-25 Thread Stas Bekman
erl. So far the best solution I know is just replacing it with IPC::Run. Seconded. Go with IPC::Run and you won't regret, since it works under mod_perl and gives you much more than the IPC::Open* family. ______ Stas Bekm

Re: Static mod-perl with apache 1.3.27 on OS 10.2.2

2002-11-24 Thread Stas Bekman
ibperl.a: No such file or directory Can someone help? -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http:

Re: [OT] Stack Operation

2002-11-24 Thread Stas Bekman
ters is that he knows how to accomplish what he requested. Any chance you can find a more appropriate forum for discussing perl basic things? Thank you! ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker

Re: Problem with Stream-oriented Output Filter

2002-11-24 Thread Stas Bekman
ution. If not I'll post the solution once we have one. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED]

Re: Subroutine main redefined?

2002-11-24 Thread Stas Bekman
er Apache::PerlRun Options +ExecCGI -Includes PerlSendHeader off That should be: PerlSendHeader on since you manually print your headers. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker

Re: MySQL & prepared sql statements?

2002-11-24 Thread Stas Bekman
_cached&sbm=SecE&submit=search ______ 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 htt

Re: How sub handler was called.

2002-11-24 Thread Stas Bekman
Stas Bekman wrote: Ruslan U. Zakirov wrote: Hello, all! May I understand in my handler sub how it was called? Was it called by Apache process in stacked handlers chain or it was called by some other module with call "MyMod::handler($r)"? Could i do it without adding some special

Re: Reading configuration problem under mod_perl2

2002-11-24 Thread Stas Bekman
't contain my module's entry. Although httpd calls my per-server configuration creator. How can it be? Just to make things clear, does this happen when you load modperl and works fine without it? ______ Stas Bekm

Re: Problem using variable with @PerlSetVar

2002-11-24 Thread Stas Bekman
27;\n"; push @PerlSetVar, ["Foo" => $mytmp::value]; } See also: http://perl.apache.org/docs/1.0/guide/config.html#Apache_Restarts_Twice_On_Start p.s. for now let's keep this trickery in the archives, if the question is repeated, will add the answer to the docs. ___

Re: Where do you specify APR::HOOK...

2002-11-24 Thread Stas Bekman
Erich Oliphant wrote: Ok, thanks now it makes sense ;) It's in the mp2 docs and it wasn't clear if it was not implemeted or the docs were behind the code. Maybe you guys could stick a note on it or something. done. - Original Message ----- From: "Stas Bekman" &l

Re: passing Apache::Request object

2002-11-24 Thread Stas Bekman
stance($r, DISABLE_UPLOADS => 1); [... more in the manpage ...] ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http:/

Re: How sub handler was called.

2002-11-24 Thread Stas Bekman
doc caller __ 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://modp

Re: How Can I Install ModPerl on My ISP-based Website???

2002-11-24 Thread Stas Bekman
_perl 2.0 with perchild mpm should resolve the ownership problem, partially similar to what suexec does. David -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 11:30 AM To: David Simcik Cc: Modperl Subject: Re: How Can I Install ModPerl on M

Re: Problem with Stream-oriented Output Filter

2002-11-21 Thread Stas Bekman
print() outside the while() loop work, but it was never committed. So the doc is out of sync with the core code. For now please apply this patch: http://marc.theaimsgroup.com/?l=apache-modperl-dev&m=102828686110352&w=2 I'll see that it gets into the core asap. -- __

Re: libperl.so: undefined symbol: PL_dowarn

2002-11-21 Thread Stas Bekman
perl? Trying install from scratch? -- _ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http

Re: How Can I Install ModPerl on My ISP-based Website???

2002-11-21 Thread Stas Bekman
x27;t find anything too specific. My guess would be: http://perl.apache.org/docs/general/multiuser/multiuser.html _ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

Re: make test failed when installing mod_perl 2.0 on Linux

2002-11-21 Thread Stas Bekman
rst.pm in @INC... " to "Can't locate TestHooks/trans.pm in @INC...". Other errors remain the same. Any suggestions? Dawn -- _ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http://ticketmaster.com http://apacheweek.com http://singlesheaven.com http://perl.apache.org http://perlmonth.com/

Re: Migrating from CGI.pm to Apache::Request question.

2002-11-21 Thread Stas Bekman
pm is Perl. If you do a lot of processing the speed improvement is significant. See: http://perl.apache.org/docs/1.0/guide/performance.html#Apache__args_vs__Apache__Request__param_vs__CGI__param _ Stas Bekman JAm_pH

Re: References for modperl usage in financial institutions?

2002-11-20 Thread Stas Bekman
he story is. Looking forward to add your stories... _____ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http://t

Re: am i heading for disaster... ?

2002-11-20 Thread Stas Bekman
nged in years, so it must be some external glitch. For example you might have run out of disk space, so when it was writing the file it was zeroed. -- _________ Stas Bekman JAm_pH -- Just Another mod_perl Hacker ht

Re: mp2.0 w/Apache 2.0, DBI setup??

2002-11-18 Thread Stas Bekman
oblem should go away. It did for me :) -- _________ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http://ticket

Re: [OT] Persistant MySQL connections in Apache 2

2002-11-18 Thread Stas Bekman
eas are relevant): http://httpd.apache.org/docs-2.0/developer/API.html#pools and see the apr_pool_cleanup_register api Kent Fitch -- _ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://s

Re: Hellp! mod_perl worked fine then added modssl and now apachewon' t start

2002-11-16 Thread Stas Bekman
/1.0/guide/install.html#mod_perl_and_mod_ssl___openssl_ -- _ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTEC

Re: Namespace problem

2002-11-16 Thread Stas Bekman
st script. -- _____ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL PROTECTED] http://ticketmaster.com http://apacheweek.com http://singlesheaven.com http://perl.apache.org http://perlmonth.com/

ApacheCon mod_perl 2.0 presentation's handouts

2002-11-16 Thread Stas Bekman
ason.org/talks/ See you next week. p.s. If you are looking for us Eric and I are staying in the room #1801 at Alexis Park Resort. _____ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ m

Re: @INC + use Lib

2002-11-14 Thread Stas Bekman
d_Virtual_Hosts ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: Help - SEGFAULTS on 'PerlModule' after version upgrade

2002-11-14 Thread Stas Bekman
he strace's output. FWIW, I've had segfaults on 'use DBI' with mod_perl 2.0/perl 5.8.0, which have gone after I've updated the DBI package. Try to do the same. ______ Stas BekmanJAm_pH --> Jus

Re: Cleanup question

2002-11-13 Thread Stas Bekman
ized___DIE___hanlder ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: AB Segfault on mod_perl Handler

2002-11-12 Thread Stas Bekman
with mod_perl, other than triggering a bug in ab. Which is not a *mod_perl* problem. You want to post a proper bug report including a core stack backtrace to the httpd-dev list. See: http://httpd.apache.org/lists.html#http-dev __ Stas B

Re: mp2/httpd2 perlio test fail & register_cleanup CGI.pm error

2002-11-11 Thread Stas Bekman
0 from source as per your > documentation on the site. All related modules are latest versions from > CPAN. > > Versions of software: RedHat 7.2, httpd 2.0.42, mod_perl 1.99_07, CGI.pm > 2.89, kernel 2.4.19. If this still doesn't help, can you please post a *short* CGI scrip

Re: mod_perl and apache 2.x

2002-11-11 Thread Stas Bekman
ompat.html#top if something is missing/unclear/wrong please let us know. Apache::compat includes most of the back-compat subs, but some are still missing. If you find such please report to the list. __ Stas BekmanJAm_pH --

Re: Browse localhost

2002-11-11 Thread Stas Bekman
handled by mod_perl. Fix that by using some other location for mod_perl handlers/scripts and you will get your normal DocRoot back. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_p

Re: [mp2.0] compatibility suggestion

2002-11-11 Thread Stas Bekman
handler is the normal mod_perl handler, it's not a backcompat handler. Just load the Apache::compat if you need it while the dust settles down. CGI.pm 2.89 already does that. ______ Stas BekmanJAm_pH --> Just A

Re: When does mod_ssl register input/output filter

2002-11-11 Thread Stas Bekman
he next one. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: Makefile 'PERL=' definition.. 1.99_07, and previous releases

2002-11-11 Thread Stas Bekman
ath'), which essentially does: require Config; PERL => $Config{perlpath}, meaning that your perl's Config.pm is wrong. Check what you get when you run: % /usr/bin/perl-5.8.0-threaded -V:perlpath does it print '/usr/bin/perl-5.8.0-threaded' or '/usr/local/bin/

Re: how to detect a broken connection using mod_proxy

2002-11-11 Thread Stas Bekman
aborted connections? ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.or

Re: perl5/i386-linux/CORE/perl.h small "fix", dont know where tosend it

2002-11-11 Thread Stas Bekman
ee it with 5.6.1. The problem with fixing 5.6.1 is that its successor 5.6.2 may be released or not at an unknown date. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Gu

Re: [mp 2] Bug report - mod-perl install process.

2002-11-11 Thread Stas Bekman
_DSO) && \ $(MODPERL_CP) $(MODPERL_LIB_DSO) $(MODPERL_AP_LIBEXECDIR) -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org

Re: httpd - where are these zombies coming from?

2002-11-11 Thread Stas Bekman
its variations which leaves zombies. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org

Re: SafeCWD Status

2002-11-11 Thread Stas Bekman
rthur and offer help. As for SafeThread I haven't heard of this module in the perl land. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache

Re: Compilation problems with mod_perl

2002-11-11 Thread Stas Bekman
ed it completely and don't have apache built yet. Review the installation steps at: http://perl.apache.org/docs/2.0/user/install/install.html#Condiguring_and_Installing_Prerequisites ______ Stas BekmanJAm_pH --> Just

Re: [BUG] Losing GET/POST-data

2002-11-11 Thread Stas Bekman
t the problem with all of them? Hope this helps. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: mp2.0 Apache::Cookie

2002-11-11 Thread Stas Bekman
es on CPAN. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: Where do you specify APR::HOOK...

2002-11-11 Thread Stas Bekman
tpd.conf file w/ no success. Should it be in the handler code itself? That API doesn't exist yet in mod_perl 2.0. I believe the reason for that is that Apache hooks ordering API wasn't finalized yet. ______ Stas Bekman

Re: Prevision

2002-11-11 Thread Stas Bekman
ll cover the most interesting ones. See the modperl-2.0/todo/* and modperl-2.0/STATUS for the lists of things that haven't been done yet and let us know if something is missing from these lists. __ Stas Bekman

Re: installing a signal handler in module ..

2002-11-11 Thread Stas Bekman
is, how can we possibly help you? Here is an example of using a custom sighandler to figure out where a process hangs: http://perl.apache.org/docs/1.0/guide/debug.html#Using_the_Perl_Trace ______ Stas BekmanJAm_pH --

Re: [mp2.0] Apache::SubProcess deFUNct sub-process

2002-11-11 Thread Stas Bekman
ould be as short as possible. See t/response/TestApache/subprocess.pm which is run as: t/TEST apache/subprocess Thanks! ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ m

Re: HELP with mod_perl version

2002-11-11 Thread Stas Bekman
r/lib/perl5 -name 'Apache*' -exec rm {} \; Though be careful that you have a backup of things before you attempt to rm. Notice that you don't have to uninstall *Perl* but only Apache modules. ______ Stas BekmanJAm

Re: Quota module for Perl

2002-11-11 Thread Stas Bekman
. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.or

Re: Apache::Peek and perl 5.8.0

2002-11-11 Thread Stas Bekman
ply distribute it separately. Ideas and patches are welcome. TODO: The tests weren't adopted to use Apache::Test yet. Patches are welcome. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.o

Re: newbie:How to get form input in mod_perl 2 since Apache::requestis not implemented yet ?

2002-11-10 Thread Stas Bekman
d, but it's not clear how it's going to be distributed. Once this clears out the perl glue code will be written. Join the [EMAIL PROTECTED] if you want to help and be the first one to know of new developments. ______ Stas Bekman

Re: Errors after converting /cgi-bin to PerlRun

2002-11-10 Thread Stas Bekman
[...] Would it be much of a trouble to upgrade to the latest mod_perl version 1.27? Most likely this problem has been fixed long time ago. [...] ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http

Re: make error compiling mod_perl on RH7.1

2002-11-10 Thread Stas Bekman
LY and IoTYPE_RDONLY were introduced in 5.6.1. ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.

Re: make test fails

2002-11-10 Thread Stas Bekman
tall.html#The_Flexible_Way ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@;stason.org http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: help getting started ..

2002-09-05 Thread Stas Bekman
can reuse the Apache C documentation as well. See: http://docx.webperf.org and http://lxr.webperf.org/ __ 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: help getting started ..

2002-09-05 Thread Stas Bekman
'm dealing with Apache 2.0 & the book is all about Apache 1.3 & theres such > a drastic difference between the two mod_perl implementations. Is there any > other source of documentation / help I can find ? Yes. There is enough to keep you busy for quite a while: http://p

Re: flush problem

2002-09-03 Thread Stas Bekman
t; this code have one problem > > code don't send flush, print only when finish > hu $| = 1 in modperl 2.0 dont run :/ Yup, this doesn't work yet. Use $r->rflush() for now. __ Stas Bekman

Re: Apache::PerlRun weird behavior?

2002-09-03 Thread Stas Bekman
: > >mod_perl 1.26, perl 5.6.1, apache 1.3.26 Most likely there was a bug in some older PerlRun. It's a good idea to run the latest stable sw if possible. Glad to hear that the problem has been resolved. __ Stas

Re: Apache::PerlRun weird behavior?

2002-09-02 Thread Stas Bekman
Perrin Harkins wrote: > Stas Bekman wrote: > >> I think I've had enough coffee. PerlRun recompiles the code on each >> request, meaning that it re-runs any BEGIN blocks on each request. >> Meaning that My::Config will re-import %CF afresh. > > That makes

Re: Apache::PerlRun weird behavior?

2002-09-01 Thread Stas Bekman
r, since they waste memory and can cause confusion. Seconded. See http://perl.apache.org/docs/general/perl_reference/perl_reference.html#Using_Global_Variables_and_Sharing_Them_Between_Modules_Packages __ Stas BekmanJAm_pH --> Jus

Re: SetEnvIf Directive

2002-09-01 Thread Stas Bekman
his has nothing to do with mod_perl. Please see http://httpd.apache.org/lists.html#http-users ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.o

<    5   6   7   8   9   10   11   12   13   14   >