Re: Apache::TestMB quitting too early

2007-10-11 Thread Stas Bekman
was the output printed before the "Skip ..." above -- _____ Stas Bekmanmailto:[EMAIL PROTECTED] http://stason.org/ http://www.linkedin.com/in/stasbekman http://stasosphere.com/ http://stason.org/photos/gallery/ http://healingcloud.com

Re: The "mod_perl2 User's Guide" book is out

2007-09-11 Thread Stas Bekman
Stas Bekman wrote: Hi everybody, Jim Brandt, Allison Randal and I are happy to announce that the first book about mod_perl2: The "mod_perl2 User's Guide" has been published and available for purchase. See the book's site: http://modperl2book.org/ for details. 50% of

The "mod_perl2 User's Guide" book is out

2007-09-10 Thread Stas Bekman
e services at once: http://socialposter.com/generator.php?c=all&tip=links&url=http%3A%2F%2Fmodperl2book.org%2F&title=mod_perl2%20User's%20Guide&text= Thank you and enjoy the book! -- _____ Stas Bekmanma

Re: Fw: Re: mod_perl closes apache's stdin and/or stdout

2007-04-03 Thread Stas Bekman
Stephane Chazelas wrote: On Mon, Apr 02, 2007 at 03:52:50PM -0700, Stas Bekman wrote: Stephane, you are correct in your observations that original STDIN and STDOUT filehandles are not preserved when perlio CGI mode is used. This is because how Perl works. Consider the following perl program

Re: Fw: Re: mod_perl closes apache's stdin and/or stdout

2007-04-02 Thread Stas Bekman
William A. Rowe, Jr. wrote: Stas Bekman wrote: William A. Rowe, Jr. wrote: Stas Bekman wrote: But which file to open as a place holder? In this example I use /dev/null and it works as you wish. AFAIK, windows doesn't have /dev/null, unless you run on cygwin. Of course, it does, but i

Re: Fw: Re: mod_perl closes apache's stdin and/or stdout

2007-04-02 Thread Stas Bekman
William A. Rowe, Jr. wrote: Stas Bekman wrote: But which file to open as a place holder? In this example I use /dev/null and it works as you wish. AFAIK, windows doesn't have /dev/null, unless you run on cygwin. Of course, it does, but it has the classic MS-DOS name of "NUL"

Re: Fw: Re: mod_perl closes apache's stdin and/or stdout

2007-04-02 Thread Stas Bekman
P_FUNC, "end\n"); } MP_INLINE void modperl_io_perlio_restore_stdout(pTHX_ GV *handle) { GV *handle_orig = gv_fetchpv("STDOUT", FALSE, SVt_PVIO); - +GV *handle_save_fd = gv_fetchpv("GENX4", TRUE, SVt_PVIO); MP_TRACE_o(MP_FUNC, "start");

Re: SubRequest in Handler vs SubRequest in Filter - and Segmentation Fault

2006-07-07 Thread Stas Bekman
MP_RUN_CROAK(modperl_wbucket_flush(rcfg->wbucket, FALSE), "Apache2::SubRequest::run"); -- _____ Stas Bekmanmailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Reliable Email Delivery http:

Re: SubRequest in Handler vs SubRequest in Filter - and Segmentation Fault

2006-07-05 Thread Stas Bekman
Scott Penrose wrote: On 05/07/2006, at 5:47, Stas Bekman wrote: http://perl.apache.org/docs/2.0/user/handlers/ filters.html#HTTP_Request_vs__Connection_Filters OK Some very weird and interesting problems here. I think they are bugs, but I am not certain. Firstly - if you write the code

Re: SubRequest in Handler vs SubRequest in Filter - and Segmentation Fault

2006-07-04 Thread Stas Bekman
Scott Penrose wrote: On 04/07/2006, at 20:53, Scott Penrose wrote: On 04/07/2006, at 17:30, Stas Bekman wrote: Scott Penrose wrote: Is this a request or a connection filter? It won't work as a connection filter (r is not available there). It is an ouptut filter. But what o

Re: SubRequest in Handler vs SubRequest in Filter - and Segmentation Fault

2006-07-04 Thread Stas Bekman
t one, then does the expansion (more Subrequests). I have found this has not really worked the way I want, but it did allow me to move forward on my project a little. cool -- _____ Stas Bekmanmailto:[EMAIL PROTECTED] http://stas

Re: SubRequest in Handler vs SubRequest in Filter - and Segmentation Fault

2006-07-02 Thread Stas Bekman
n filter? It won't work as a connection filter (r is not available there). What's the core's backtrace? -- _____ Stas Bekmanmailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Reliable Email Delivery h

Re: AppArmor - makes mod_perl/mod_php safer on linux

2006-04-10 Thread Stas Bekman
different perl scripts running under mod-perl. according to the presenter -- it does. -- _ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "Practical

FYI: AppArmor - makes mod_perl/mod_php safer on linux

2006-04-07 Thread Stas Bekman
055/4821055.pdf -- _________ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "Practical mod_perl" book http://modperlbook.org/ http://perl.apache.org/ http://perl.org/ http://logilune.com/

Re: Protocol Philosophy

2006-03-09 Thread Stas Bekman
TMTOWTDI=There's More Than One Way To Do It -- _________ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "Practical mod_perl" book http://m

Re: Protocol Philosophy

2006-03-07 Thread Stas Bekman
h the protocol/filter handlers, so it'll be easier to explain :) -- _ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "Practical mod_perl" book ht

Re: Syntax issue in Apache/TestConfig.pm TestUtil.pm

2006-02-23 Thread Stas Bekman
rtperl}. When I have a clean patch against head I'll post it. I'll also look at the state of MakeMaker to see if this issue -was- addressed there. -- _____ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChanne

Re: Syntax issue in Apache/TestConfig.pm TestUtil.pm

2006-02-23 Thread Stas Bekman
cts. I'm not following you, how $Config{startperl} solves the problem of the long path, if just as you say it makes the script run under the wrong perl? Bill, mind to post a patch of what you think should work? -- _____ Stas Bekman m

Re: Syntax issue in Apache/TestConfig.pm TestUtil.pm

2006-02-22 Thread Stas Bekman
erful :) -- _ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "Practical mod_perl" book http://modperlbook.org/ http://perl.apache.org/ http://perl.org/ http://logilune.com/

Re: [mp2] make test errors ("failed to start server") with mp 2.0.2

2006-02-01 Thread Stas Bekman
this: " where you've mentioned "telnet". Usually when you type at the local keyboard you generate the entropy for the random device, when you connect from a different machine, there is no physical input to accomplish that. -- _________

Re: mp2 Apache won't start under ssh

2005-12-23 Thread Stas Bekman
tropy, since you aren't typing on the local keyboard: http://perl.apache.org/docs/2.0/user/troubleshooting/troubleshooting.html#Server_Hanging_at_the_Startup -- _____ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ Ma

Re: Apache2::Status memory usage fails

2005-12-23 Thread Stas Bekman
804 rss:27756 40456 52316 You also need to be aware that shared memory reporting on linux 2.6 kernel is invalid. I don't know if it was fixed in the most recent kernel releases. -- _____ Stas Bekman mailto:[EMAIL PROTECTED] h

Re: Bug report: ModPerl 2.0.2 make test "Insecure directory under -T"

2005-12-23 Thread Stas Bekman
Stas Bekman wrote: Kent, Mr. John (Contractor) wrote: Hello Stas, No, my path does not contain . or .. anywhere. Here is what I get: [EMAIL PROTECTED] ~]$ perl -le 'print $ENV{PATH}' /users/webuser/perl/bin:/users/webuser/apache-ant/bin:users/webuser/netscape:/users/webuser/mysql/

Re: Bug report: ModPerl 2.0.2 make test "Insecure directory under -T"

2005-12-23 Thread Stas Bekman
nsecure directory in $ENV{PATH} while running with -T switch at -e line 1. I'll patch Apache-Test to handle that case as well. Sorry for bothering you and the list. Thank you for your reply which did result in solving the problem. Happy Holidays! You too! -- ___

Re: Bug report: ModPerl 2.0.2 make test "Insecure directory under -T"

2005-12-22 Thread Stas Bekman
/users/webuser/perl.5.8.7/bin/perl /users/webuser/src/mod_perl-2.0.2/t/TEST -bugreport -verbose=0 make: *** [run_tests] Error 143 Check your PATH env var, John. perl -le 'print $ENV{PATH}' does it contain "..", "." or similar? -- _______

Re: go crazy with me

2005-12-19 Thread Stas Bekman
as soon as we are posting the bug reports. I wish more CPAN authors were as responsive as Tassilo is :) -- _____ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "

Re: go crazy with me

2005-12-19 Thread Stas Bekman
n Parseval, who's a great perl/C/XS expert and who is resolving any problems with Event::Lib almost as soon as we are posting the bug reports. I wish more CPAN authors were as responsive as Tassilo is :) -- _____ Stas Bekman

Re: Testing problem

2005-11-13 Thread Stas Bekman
env PATH=/bin:/usr/bin t/TEST adjust PATH to include what you need. if you run under bash shell you don't need the 'env' part. -- _________ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messagi

Re: TZ variable and mod_perl

2005-10-31 Thread Stas Bekman
this variable is deleted? http://perl.apache.org/docs/2.0/user/troubleshooting/troubleshooting.html#C_Libraries_Don_t_See_C__ENV__Entries_Set_by_Perl_Code -- _ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels

Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC1

2005-10-12 Thread Stas Bekman
Stas Bekman wrote: Christopher H. Laco wrote: Stas Bekman wrote: Philip M. Gollucci wrote: A release candidate for mod_perl 2.0.2 is now available for testing. Please grab the candidate from http://people.apache.org/~pgollucci/mp2/mod_perl-2.0.2-dev.tar.gz +1, tested with 43

Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC1

2005-10-12 Thread Stas Bekman
::Test::vars('target'); +ok t_cmp($0, qr/$target/i, '$0'); ok t_cmp($TestDirective::perl::Included, 1, "Include"); target is the name of the httpd executable and it can be changed from the command line: t/TEST -target=http2005d in which case the hardcoded

Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC1

2005-10-12 Thread Stas Bekman
Christopher H. Laco wrote: Stas Bekman wrote: Philip M. Gollucci wrote: A release candidate for mod_perl 2.0.2 is now available for testing. Please grab the candidate from http://people.apache.org/~pgollucci/mp2/mod_perl-2.0.2-dev.tar.gz +1, tested with 43 different apaches/perls

Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC1

2005-10-12 Thread Stas Bekman
. -- _ Stas Bekman mailto:[EMAIL PROTECTED] http://stason.org/ MailChannels: Assured Messaging(TM) http://mailchannels.com/ The "Practical mod_perl" book http://modperlbook.org/ http://perl.apache.org/ http://perl.org/ http://logilune.com/

Re: Apache, Mod_Perl Upgrade

2005-08-19 Thread Stas Bekman
wasn't of a release quality (I think it was still beta or something) -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAI

Re: ModPerl 2.0.1 AIX4.3.3 - Make Test Fails to run

2005-08-17 Thread Stas Bekman
#x27;s going on) -- ______ 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: mod_perl touted in company press release

2005-08-16 Thread Stas Bekman
.0 release (hint, hint :) -- ______ 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.co

Re: mod_perl2 bug report

2005-08-16 Thread Stas Bekman
temporarily. I'm surprised, that you didn't get this during the mod_perl2 compile as thats where I usually get it and smack myself. I'm tempted to add a note to the mp2 build page about this, but don't know exactly how to word it. -- _______

Re: [mp2] "make test" failure in t/api/access2

2005-08-16 Thread Stas Bekman
Michael G Schwern wrote: On Mon, Aug 15, 2005 at 05:54:53PM -0700, Stas Bekman wrote: Where does it go then? Are you sure you've applied the patch and the warn statement is there? Grepping the source tree the only instance of "myip" is in t/response/TestAPI/access2.pm which

Re: Mod_perl Apache to encapsulate legacy protocol

2005-08-16 Thread Stas Bekman
HTTP if your protocol is somewhat similar to it. e.g. send email over HTTP: http://perl.apache.org/docs/2.0/user/handlers/http.html#PerlHeaderParserHandler -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker h

Re: [mp2] "make test" failure in t/api/access2

2005-08-15 Thread Stas Bekman
Michael G Schwern wrote: On Fri, Aug 12, 2005 at 09:19:13PM -0700, Stas Bekman wrote: On Fri, Aug 12, 2005 at 08:47:30PM -0700, Stas Bekman wrote: e.g. inside a handler t/response/TestAPI/access2.pm Put it in there and didn't see any extra output in STDERR or error.log. what tes

Re: [mp2] "make test" failure in t/api/access2

2005-08-12 Thread Stas Bekman
Michael G Schwern wrote: On Fri, Aug 12, 2005 at 08:47:30PM -0700, Stas Bekman wrote: e.g. inside a handler t/response/TestAPI/access2.pm Put it in there and didn't see any extra output in STDERR or error.log. what test are you running? t/TEST t/api/access2.t error_log: myip: 127.

Re: [mp2] "make test" failure in t/api/access2

2005-08-12 Thread Stas Bekman
->satisfies -Order Deny,Allow -Deny from all -Allow from @servername@ +Allow from All AuthType Basic AuthName "Access" -- ______ Stas BekmanJAm_pH --> Just

Re: [mp2] "make test" failure in t/api/access2

2005-08-12 Thread Stas Bekman
Michael G Schwern wrote: On Fri, Aug 12, 2005 at 07:22:34PM -0700, Stas Bekman wrote: Replacing "Allow from localhost" with "Allow from All" did it. Why the localhost setting doesn't work? Dunno. localhost looks ok from my end. $ host localhost localh

Re: The mod_perl protocol handler sample code have some problem!

2005-08-12 Thread Stas Bekman
caltime) . "\r\n"); return Apache2::Const::OK; } sub q { Apache2::Const::DONE } 1; __END__ PerlProcessConnectionHandler MyTest::Protocol Order Deny,Allow Allow from all -- __ S

Re: [mp2] "make test" failure in t/api/access2

2005-08-12 Thread Stas Bekman
n as on the server side (warn $r->connection->remote_ip), Michael? -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECT

Re: [MP2] having trouble obtaining $r

2005-08-11 Thread Stas Bekman
config. What if you chance that config to: AllowOverride None Options +ExecCGI SetHandler perl-script PerlResponseHandler ModPerl::Registry -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker h

Re: failing tests in mod_perl-2.0.1/ModPerl-Registry/t

2005-08-10 Thread Stas Bekman
Philip M. Gollucci wrote: Stas Bekman wrote: Philip M. Gollucci wrote: Jim Martinez wrote: I think I've already committed that skip rule but the rename branch merge has wiped it away. Philip, if you work on that, just wipe off HTML::HeadParser from your installed libs and run '

Re: [Fwd: ApacheCon US 2005 CFP slightly extended]

2005-08-10 Thread Stas Bekman
you speak very fast and leave no time for questions, you will need at least 3-4 hours to cover it all. So most likely you will want to either leave some parts off or flip slides really fast :) -- __ Stas BekmanJAm_pH

Re: [Fwd: ApacheCon US 2005 CFP slightly extended]

2005-08-10 Thread Stas Bekman
sity of Maryland in College Park, Maryland. Cool! -- ______ 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: [Fwd: ApacheCon US 2005 CFP slightly extended]

2005-08-10 Thread Stas Bekman
Philippe M. Chiasson wrote: Stas Bekman wrote: Perrin Harkins wrote: You've got an extra couple of days to put in a talk, so let's get some more mod_perl talks in there! ApacheCon is a great conference to speak at and I know that many of you have stories worth telling but haven

Re: [Fwd: ApacheCon US 2005 CFP slightly extended]

2005-08-10 Thread Stas Bekman
les and the build package). -- ______ 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: [mp2] CGI.pm porting/co-existence questions

2005-08-07 Thread Stas Bekman
Philip M. Gollucci wrote: Stas Bekman wrote: print vs. $r->print This is drastically faster.. especially if you use one print per request at the end and/or pass a reference to the scalar string. Actually this is no longer true. in mp2 you can't pass a reference to

Re: :Apache2 IO flush: (103) Software caused connection abort

2005-08-07 Thread Stas Bekman
s, or we'll need a test case we can reproduce the problem 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://ticketmaster.com

Re: [mp2] CGI.pm porting/co-existence questions

2005-08-07 Thread Stas Bekman
ally in the threaded environment. -- ______ 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: [PATCH] Apache2::SizeLimit on Linux

2005-08-07 Thread Stas Bekman
tream branch? -- ______ 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: failing tests in mod_perl-2.0.1/ModPerl-Registry/t

2005-08-07 Thread Stas Bekman
Philip M. Gollucci wrote: Jim Martinez wrote: While compiling mod perl 2.0.1 on a box that did not have HTML::HeadParser installed, several tests failed. What modules did you have installed ? Stas Bekman, at a Portland Perl Monks meeting, suggested that, since HTML::HeadParser is not

Re: Is there a bug in Apache 2, ModPerl 2 or APR for data larger than 64k?

2005-08-04 Thread Stas Bekman
e, it has not much to do with mod_perl, besides mod_perl providing a perl glue for it. -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[

Re: win32, mod_perl/2.0.1, Apache/2.0.54 - ithreads problem

2005-08-03 Thread Stas Bekman
his Registry script: seconded. -- ______ 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://mod

Re: Apache2 filters questions

2005-08-03 Thread Stas Bekman
y, rewrites the headers based on the body and the content handler can still get the body (this is only available in libapreq2) -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod

Re: writing to file with mp2

2005-07-27 Thread Stas Bekman
here: http://perl.apache.org/docs/2.0/api/APR/PerlIO.html#Description Just open the file and write it out like you always do in Perl. -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ m

Re: Request-local storage?

2005-07-22 Thread Stas Bekman
Simon Perreault wrote: On Friday 22 July 2005 11:00, Stas Bekman wrote: But you need this functionality only under mod_perl, right? Well, not really. I would still need to cache stuff during the request when running under mod_cgi but then the cache would be automatically reset at the end

Re: Request-local storage?

2005-07-22 Thread Stas Bekman
Simon Perreault wrote: On Friday 22 July 2005 10:27, Stas Bekman wrote: $r->notes for strings $r->pnotes for perl scalars Thank you very much for your quick reply. I didn't know about those methods. I should have mentioned that I am running under ModPerl::Registry and am trying

Re: Request-local storage?

2005-07-22 Thread Stas Bekman
notes_ -- __ 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: set the UIDs and GIDs in Mod_Perl 2

2005-07-22 Thread Stas Bekman
likely some tweaks might be needed. -- ______ 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:/

Re: set the UIDs and GIDs in Mod_Perl 2

2005-07-22 Thread Stas Bekman
nt to 'suexec' to). -- ______ 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: [mp2] lifetime of Apache2::RequestRec

2005-07-21 Thread Stas Bekman
om fashion. When debugging this kind of issues it's the best to run in a single server mode (httpd -X). -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_pe

Re: The mod_perl protocol handler sample code have some problem!

2005-07-21 Thread Stas Bekman
ing else). Randy, can you write a test that can emulate such a situation? -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailt

Re: mod_perl2 and Attribute::Handlers?

2005-07-21 Thread Stas Bekman
send it here. Thanks. -- __ 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

Re: memory leak with perl5.8/freebsd/mod_perl 1.29

2005-07-20 Thread Stas Bekman
oting.html#httpd_keeps_on_growing_after_each_restart -- __ 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: Modification of read only value attempted

2005-07-20 Thread Stas Bekman
sion that just reads the file in? -- ______ 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://mo

Re: Strange error in log when trying to implement PerlTypeHandler

2005-07-20 Thread Stas Bekman
m. Perhaps from mod_mime itself, or...? grep the apache sources for 'Invalid type' string? -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide --->

Re: make test fails under HP-UX 11.11 - working!

2005-07-12 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://apac

Re: vhosts and mod_perl

2005-07-12 Thread Stas Bekman
amespace the configs, (eg. Project1::Config) and make sure that what they export doesn't overlap. Also documented in deal at: http://perl.apache.org/docs/1.0/guide/porting.html#Name_collisions_with_Modules_and_libs :) -- ______

Re: make test fails under HP-UX 11.11 (fwd)

2005-07-11 Thread Stas Bekman
Hugh Williams wrote: Stas Bekman wrote: [Hugh, in the future please inline the bug report, including it after your signature makes it impossible to reply to it, while quoting it] Sorry... I've re-inserted above the sig below for ongoing completness. Hugh Williams wrote: Hi; My

Re: [mp2] make test fails under HP-UX 11.11

2005-07-11 Thread Stas Bekman
x27;s file descriptors limit? run either: csh: limit bash: ulimit Thanks. -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL

Re: Apache::Test too late for PerlSwitches

2005-07-11 Thread Stas Bekman
nf.in -- __ 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 XML Content Production Name Space

2005-07-11 Thread Stas Bekman
e app should come first? > Currently I call them Apache::XML::iCal etc. BTW, once you've passed the ApacheX part usually it's module-authors /on/ perl.org list where the namespaces are best polished. -- ______ Stas

Re: I need to unsub

2005-07-08 Thread Stas Bekman
OTECTED]> List-Post: <mailto:modperl@perl.apache.org> List-Id: -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL P

Re: MP2 books (was Re: Lost my )

2005-07-08 Thread Stas Bekman
o in pdf) you will get more than one book. They should be good enough to teach you how to write pure MP2 code. -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl

Re: Failure calling BOOT: code

2005-07-08 Thread Stas Bekman
? You use perl 5.6.1, so there can be no threads :) -- ______ 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://apache

Re: Modification of read only value attempted

2005-07-07 Thread Stas Bekman
50 or whatever the number of server you are running. see the mod_perl guide/the practical mod_perl book for more information. -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/

Re: Modification of read only value attempted

2005-07-07 Thread Stas Bekman
some environment issue? running out of disk space, RAM, etc.? -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http

Re: Broken pipe & Connection reset by peer

2005-07-07 Thread Stas Bekman
5 09:54:18 2005] [info] [client XX.XX.XX.XX] (104)Connection reset by peer: client stopped connection before rwrite completed [Tue Jul 5 09:54:18 2005] [debug] Apache.c(364): (104)Connection reset by peer: mod_perl: rwrite returned -1 (fd=5, B_EOUT=8)\n -- ___

Re: Failure calling BOOT: code

2005-07-06 Thread Stas Bekman
apache.org/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://modperlbook.org http://apache.org http://ticketmaster.com

Re: Can't get simple ModPerl::Registery test page working

2005-07-06 Thread Stas Bekman
more in it and it resets /perl/ to something else. Besides, how did you issue the request? (what's the url?) Also please submit a complete bug report as explained here: http://perl.apache.org/bugs/ Thank you. -- ______ Stas Bekman

Re: Can't get simple ModPerl::Registery test page working

2005-07-06 Thread Stas Bekman
d problems with acl-based filesystems and it is not executed anyway. -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL

Re: Revisions to Testing POD

2005-07-06 Thread Stas Bekman
William McKee wrote: Well, I posted too fast. Scratch that first diff for this version which has a bit more detail about how the UPLOAD function is working. Thanks William. Committed with a few tweaks. -- __ Stas Bekman

Re: Revisions to Testing POD

2005-07-06 Thread Stas Bekman
hods added by the C framework: +These are two special methods added by the C framework: I've changed: s/C framework/C framework/ the rest committed as submitted. Thanks William. -- ______ Stas BekmanJAm_pH -

Re: Problems with DBI & modperl on Irix 6.5

2005-07-06 Thread Stas Bekman
80proxy.t > Checking if your kit is complete... > Looks good > I see you're using perl 5.008002 on IP27-irix, okay. That could be it. So take a look at the URL I've quoted in first place again and see if you have more than one perl installed. -- _____

Re: Problems with DBI & modperl on Irix 6.5

2005-07-06 Thread Stas Bekman
so' for module DBI: 71121247:/var/sgi_apache/server/sbin/httpd: rld: Fatal Error: unresolvable symbol in /opt/perl-5.8.2/lib/site_perl/5.8.2/IP27-irix/auto/DBI/DBI.so: PL_curstackinfo at /opt/perl-5.8.2/lib/5.8.2/IP27-irix/DynaLoader.pm -- _____

Re: Problems with DBI & modperl on Irix 6.5

2005-07-06 Thread Stas Bekman
[Robert, please don't forget to Reply-All] Robert Aspinall wrote: I saw that article, however, as far as I can tell I'm using the same perl libraries that I compiled modperl with. Right, what about DBI.so, that's the only that fails. Stas Bekman wrote: Robert Aspinall wrote

Re: Modification of read only value attempted

2005-07-06 Thread Stas Bekman
Dump $x; For example $$ is readonly, so you get: perl -MDevel::Peek -le 'Dump $$' SV = IV(0x805d9b0) at 0x805b7cc REFCNT = 1 FLAGS = (IOK,READONLY,pIOK) IV = 16911 You can see the readonly flag set. -- __ S

Re: Problems with DBI & modperl on Irix 6.5

2005-07-06 Thread Stas Bekman
od_perl was compiled with). Please take a look at: http://perl.apache.org/docs/1.0/guide/troubleshooting.html#_relocation_errors__or__undefined_symbol_ -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://st

[JOB SEARCH] Looking for a new job

2005-07-06 Thread Stas Bekman
exploring other areas as well :) Thank you. [1] http://stason.org/schedule.html -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mai

Re: Bareword "Apache::OK" not allowed while "strict subs" in use

2005-06-28 Thread Stas Bekman
hanks. -- __ 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: t/report: 'make test' ERRORS on latest mod_perl HEAD on OSX 10.4.1

2005-06-28 Thread Stas Bekman
Geoffrey Young wrote: [...] t/modules/proxy.t 255 65280 12 200.00% 1 I can't speak about that one. We had a few similar reports for Apache 2.1... -- __ Stas BekmanJAm_pH --&

Re: ModPerl 2.0.0 RC5: Not starting httpd in make test

2005-06-28 Thread Stas Bekman
lve the 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 http://apacheweek.com http:/

Re: t/report: 'make test' ERRORS on latest mod_perl HEAD on OSX 10.4.1

2005-06-28 Thread Stas Bekman
d resend the report the way it's suggested in this section. Thanks. -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTE

Re: how to run a startup script once (redux)

2005-06-28 Thread Stas Bekman
http://perl.apache.org/docs/2.0/user/handlers/server.html#Dealing_with_Restarts -- __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org

Re: module requires either Apache::Foo or Apache2::Foo

2005-06-28 Thread Stas Bekman
::Constants nor Apache2::Const, since each of these packages are in the mod_perl core, so you should simply ask for mod_perl :) -- ______ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_pe

  1   2   3   4   5   6   7   8   9   10   >