Re: PATCH porting.pod "First Mystery"

2003-09-05 Thread Brian McCauley
Stas Bekman <[EMAIL PROTECTED]> writes: > local is perl4-ism, nowadays it's used only for localizing special > perl variables, like $|. Using package variables and local() in to do the job of block-scoped lexicals is a Perl4-ism. On the other hand, when using global variables (in which I include

Re: PATCH porting.pod "First Mystery"

2003-09-03 Thread Brian McCauley
Stas Bekman <[EMAIL PROTECTED]> writes: > Brian McCauley wrote: > [...] > >>Nice, but: > >> > >> > +The easiest and the fastest way to solve the nested subroutines > >> > +problem is to change C to C C for all variables for > >

Re: PATCH porting.pod "First Mystery"

2003-09-01 Thread Brian McCauley
Stas Bekman <[EMAIL PROTECTED]> writes: > [EMAIL PROTECTED] wrote: > > In private mail Stas Bekman <[EMAIL PROTECTED]> writes: > > > >>oops, that should be the modperl list... at modperl-docs we discuss > >>mostly site/docs techical issues and there are very few people on this > >>list to get enou

Re: Apache::DProf problems

2003-08-30 Thread Brian Hirt
i'll double check, but i'm fairly certain it's loaded first. what if a module is loaded after the fact, but like this: eval { use $module }; some modules are dynamically loaded at run time depending on certain situations. On Friday, August 29, 2003, at 04:26 PM, Stas Bekma

Apache::DProf problems

2003-08-29 Thread Brian Hirt
I've installed Apache::DProf, but it seems hardly any of the calls are profiled. dprofpp shouws MOF::Dispatcher::handler as taking up 100% of the time, but there is no information recorded in for calls within that function. MOF::Dispatcher::handler is calling thousands of other functions and

Re: using "-|" construct

2003-08-29 Thread Brian Reichert
OMADMIN,"-|")) { # parent > [...] > >This works fine for command line exection and from cgi but fails in > >modperl (apache 1x). > > > >The problem is that the initial read pipe apparently fails to open > >under modperl. > > > >Is there a wo

Re: IPC::Run

2003-07-19 Thread Brian Reichert
.] > I'd do a > >use BFD; [EMAIL PROTECTED]; Years ago, I wrote System2 to also run commands in the background specifically to avoid lots of 'sh' invokations, and gather input. No 'timeout' feature, but I still use it regularly. May be useful... Check CPAN..

Re: Convert Cookies-->HTTP Request Headers?

2003-04-04 Thread Brian Reichert
headers. When you say 'HTTP request headers', did you really mean to say 'CGI parameters', as the CGI module uses the term? > Thanks! > > Matt Kruse -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA BSD admin/developer at large

Re: MaxRequestsPerChild; which request am I?

2003-04-04 Thread Brian Reichert
On Fri, Apr 04, 2003 at 08:38:53AM -0800, Bill Moseley wrote: > On Fri, 4 Apr 2003, Brian Reichert wrote: > > Eh? I'm confused. What is '$request' in that example? If you > > mean it's the request object, then that doesn't do what I expect. > > No

Re: MaxRequestsPerChild; which request am I?

2003-04-04 Thread Brian Reichert
On Thu, Apr 03, 2003 at 11:10:58PM -0800, Bill Moseley wrote: > On Fri, 4 Apr 2003, Brian Reichert wrote: > > > Dunno if someone has a good answer, or a suggestion of a better > > forum for this: > > > > Apache has a configuration directive: MaxReq

MaxRequestsPerChild; which request am I?

2003-04-03 Thread Brian Reichert
re a correlation the cumulative request-per-child resource utilization on performance... Any clues? Better buzzwords for web research? Thanks for any input... -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (6

Re: best way to configure for multiple developers?

2003-04-03 Thread Brian C. Thomas
Hi Thanks for the info. I'll try setting up some virtual hosts. More below... On Wed, Apr 02, 2003 at 06:07:01PM -0500, Perrin Harkins wrote: > Brian C. Thomas wrote: > >I have read through the lists looking for issues related to mp2 and > >@INC, and have read the part

best way to configure for multiple developers?

2003-04-03 Thread Brian C. Thomas
Hi I have read through the lists looking for issues related to mp2 and @INC, and have read the part about "+Parent" and virtual hosts. What about the following scenario? One apache2 server w/ mp2 (no virtual hosts) and several perl coders using the server as a development site. Is there a "best

RE: notes() and mod_perl ErrorDocuments

2003-03-20 Thread Hann, Brian
form parameters, is there any way I could make them available to whichever handler that is for the full series of requests? The handler gets those values when the user first gets to auth_fail but after that there isn't really any way I can keep passing them on, is there? Thanks, Bri

RE: notes() and mod_perl ErrorDocuments

2003-03-20 Thread Hann, Brian
thout copying them to a separate location for each one. Perhaps with some kind of shared memory? Brian -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 3:12 PM To: Hann, Brian Subject: Re: notes() and mod_perl ErrorDocuments Hann,

RE: notes() and mod_perl ErrorDocuments

2003-03-19 Thread Hann, Brian
SO-8859-1'); $r->status(401); $r->send_http_header; So far it seems to be working fine, and my notes() are coming across. Brian -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 2:23 PM To: Hann, Brian Cc: [EMAIL PROTECTED] Subjec

notes() and mod_perl ErrorDocuments

2003-03-19 Thread Hann, Brian
work.  If it is not, is there some way I could internally mimic Apache's authentication challenge/response setup?  For instance, what happens when you return AUTH_REQUIRED to Apache?  Is it possible to do this inside a mod_perl handler by using set_handlers()?   Thanks,   Brian Hann

Problems with custom authentication module

2003-03-18 Thread Hann, Brian
one down.   Thanks,   Brian Hann  

Re: CGI.pm and friends port to mp2

2003-03-13 Thread Brian P Millett
d_fastcgi-2.4.0) release for httpd-2.0, so you might want to think about that. -- Brian Millett Enterprise Consulting Group "Shifts in paradigms (314) 205-9030 often cause nose bleeds." [EMAIL PROTECTED] Greg Glenn

Re: mod_perl 2.0 question about $r->connection->auth_type

2003-02-13 Thread Brian P Millett
Stas Bekman wrote: Brian Millett wrote: Hi, I've just about got the Apache::AuthCookieDBI to work with Apache 2.0.44 & mod_perl 1.99_09-dev, but I ran into a problem with the $r->connection object not having "auth_type" or "user" defined. The $r->auth_

mod_perl 2.0 question about $r->connection->auth_type

2003-02-12 Thread Brian Millett
ce? What should I look for, or use? Thanks. -- Brian Millett Enterprise Consulting Group "Shifts in paradigms (314) 205-9030 often cause nose bleeds." [EMAIL PROTECTED] Greg Glenn

RE: coredump with 3 PerlSetVars

2003-02-03 Thread Hann, Brian
few more things and then I'll post the results. Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 11:00 AM To: Hann, Brian Cc: [EMAIL PROTECTED] Subject: Re: coredump with 3 PerlSetVars Apache 1.3.6 is ancient, has num

coredump with 3 PerlSetVars

2003-02-03 Thread Hann, Brian
Title: Message Can anyone tell me why Apache would dump core when more than 2 PerlSetVars are used in a Location directive?   This is Stronghold 2.4.2, Apache 1.3.6 and mod_perl 1.21   Brian Hann

core dump on custom AuthDBI-type module

2003-01-31 Thread Hann, Brian
n't restart apache at my will.  All I know from my sysadmin is that when my module is set up as a PerlAuthenHandler for a location, the base apache loads, java loads, java dies and then the apache process dies.  No children are forked.   Can anyone tell me a good place to start?   Thanks,   Brian Hann

Apache::AuthDBI Extension

2003-01-15 Thread Hann, Brian
Title: Message At our company we're looking at making an extension on top of AuthDBI that would allow us to make mandatory password changes, match new passwords against dictionaries and other security changes.   Has anyone done something similar already?   Thanks,   Brian Hann  

RE: Modules Executed Twice

2002-12-30 Thread Hann, Brian
Is anyone getting duplicates (i.e. 2 of the same email) of this thread? It just started happening today. Brian -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 5:06 PM To: David Wheeler Cc: [EMAIL PROTECTED] Subject: Re: Modules Executed

Horrible handler memory leak

2002-12-02 Thread Hann, Brian
m wondering what's eating the resources. Thanks, Brian Hann

Re: problems with characters being added to a request.

2002-11-21 Thread Brian Hirt
ve attached two files, the handler, and the output of a page it created. Any help would really be appreciated. On Wed, 2002-11-20 at 21:53, Brian Hirt wrote: > I'm running into a problem with some characters being added during a > mod_perl request. An  charater is getting added w

problems with characters being added to a request.

2002-11-20 Thread Brian Hirt
s in my handler that are printing this variable: print STDERR "docC3[$docContents]\n"; print $docContents; I'm using perl 5.8.0, Apache/1.3.26 and mod_perl/1.27 -- Brian Hirt <[EMAIL PROTECTED]>

Re: [OTish] Version Control?

2002-10-30 Thread brian wheeler
nc (we treat it just like another client). Go for it...its worth the trouble...especially the first time someone breaks something and you can determine who and when it was broken. Brian Wheeler [EMAIL PROTECTED] On Wed, 2002-10-30 at 16:30, [EMAIL PROTECTED] wrote: > We felt the same way but

question about using a proxy with mod_perl

2002-10-18 Thread Brian Hirt
teRule ^http://([^.]+).blah.com/(.*)$ http://$1.blah.com:4374/$2 [P,L] should work, but it doesn't. -- Brian Hirt <[EMAIL PROTECTED]>

Re: [OT] - Mailing List Servers/mods .. etc

2002-09-26 Thread Brian Reichert
'm going to be > able to get away with anything less than writing it from scratch.. Offload all of your mail-handling onto a MLM/MUA combo you trust. Don't reinvent _that_ wheel. > Would be greatful for any advice, Good luck. > Kindest, > Jimbo -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA Intel architecture: the left-hand path

Re: mod perl and apache with ssl and openssl

2002-09-24 Thread Brian Hirt
here's a simple script i use to build one of my servers, it builds openssl, and apache with mod_ssl / mod_perl On Tue, 2002-09-24 at 09:07, Allan P. Magmanlac wrote: > Hello, > >Can anyone advise me on how to build > apache server with ssl and openssl and > using mod perl. > > this is h

RE: [OT] sf.net ?

2002-09-18 Thread Hann, Brian
No, it is for me as well. -Original Message- From: iudicium ferat [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 11:21 AM To: Modperl (E-mail) Subject: [OT] sf.net ? Is it me or is sf.net down? -Sx- :]

mod_perl with a perl built with -Dusethreads, will it work?

2002-07-23 Thread Brian
hanks, Brian -- Linux 2.4.18 libc 2.1.3 apache 1.3.26 mod_perl 1.27

liapreq problems

2002-06-24 Thread Brian Zammit
efile.PL line 12. [root@borg libapreq-1.0]# slocate mod_perl.pm /usr/lib/perl5/site_perl/5.6.1/i386-linux/mod_perl.pm --- Thanks for your time, Brian.

Re: PerlSetVar WhatEverSecure

2002-06-14 Thread Brian Reichert
On Thu, Jun 13, 2002 at 09:42:41PM -0700, Jim Helm wrote: > It's not the prettiest in the world, but try this (see attached file). Thanks for the pointers; I'll give it a look-over... -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Crystal Ave. #3

Re: PerlSetVar WhatEverSecure

2002-06-13 Thread Brian Reichert
On Thu, Jun 13, 2002 at 10:40:18AM -0500, Michael Schout wrote: > Brian Reichert wrote: > > > > > > > PerlSetVar FormScriptSecure 1 > > AuthType Apache::AuthTicket > > ... > > > > > > But, in each case, my login

Re: .htaccess errors

2002-06-12 Thread Brian Reichert
file: unable to check > htaccess file, ensure it is readable > > -rw-r--r-- 1 www www 599 Jun 11 17:57 /usr/local/www/data/.htaccess > > ^^ In this case what does 'ls -ld /usr/local/www/data' show? -- Brian 'you Bastard' Reichert<[EMAIL

PerlSetVar WhatEverSecure

2002-06-07 Thread Brian Reichert
e 1 AuthType Apache::AuthTicket ... But, in each case, my login program is server in the clear. What am I missing? Is this working for other people? This server installed from the latest sources, circa last week... -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]&

Re: 'Apache::Session' using REMOTE_USER as key

2002-05-31 Thread Brian Parker
Perrin Harkins wrote: > Brian Parker wrote: > > I'm trying to use Apache::Session::MySQL. Since I'm generating my own > > session key outside of Apache::Session (using $ENV{REMOTE_USER}), what > > method(s) do I have to override to prevent Apache::Session from

'Apache::Session' using REMOTE_USER as key

2002-05-31 Thread Brian Parker
od(s) do I have to override to prevent Apache::Session from trying to create a session key for me? Since I'm not using Apache::Session's key generation capability, is there another implementation that would be more appropriate for my application? (Sorry, if this is OT.) TIA, Brian

question: login_screen method for Apache::AuthTicket?

2002-05-24 Thread Brian Reichert
'destination'. request 'destination' -> But I'm not seeing that happen. Can anyone clear this up? I can offer more details of my environemt, if anyone asks... -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Crystal Ave. #303

Re: login.pl not sending cookies via POST?

2002-05-23 Thread Brian Reichert
orks just fine with POST. I agree that is _should_; I've written such things before. My setup is on a Cobalt XTR server, and the vendor's made some _weird_ decisions... But, thanks for the feedback... > > -Fran > -- Brian 'you Bastard' Reichert<[EMAIL

login.pl not sending cookies via POST?

2002-05-22 Thread Brian Reichert
thTicket works out-of-the-box. (I haven't re-tested Apache::AuthCookieDBI.) I have no idea why POST _doesn't_ work, mind you... Just an FYI to the public at large... (Just wasted a day chasing crap with tcpdump, trying to track this one down...) -- Brian 'you Bastard' Reich

Apache::AuthCookieDBI not sending cookies?

2002-05-21 Thread Brian Reichert
on: Apache::AuthCookieDBI: didn't have the secret key for auth realm CredTest [Wed May 22 01:16:26 2002] [error] ses_key bad I get these same result with two different browsers, and using the example login.pl programs that come with Apache::AuthCookieDBI and Apache::AuthCookie. Does a

Lock block problem with Apache::Session::Oracle

2002-04-18 Thread Brian Lavender
Apache::Session::Oracle, so it will release a lock it creates. I am not that familiar with how locks are created in Oracle, but my DBA took a look at the database, and said that there were some stale locks. I can run Apache::Session::Oracle under CGI without a problem. Any tips? brian use strict

[JOB WANTED] !

2002-03-27 Thread brian moseley
hiya. quick note to let folks know that i am once again available for work in the sf bay area. i'm finally all settled in san francisco and am eager to get back to the craft after several months off. my resume is located at http://www.maz.org/bcm/resume.pdf (text, html, word versions also availa

Re: Exiting a script, or how do you do exit?

2002-03-13 Thread Brian Lavender
Found the FAQ's. Seems that I can put in goto END; and then put an end block in the code. END: { 1; } On Wed, Mar 13, 2002 at 07:07:18PM -0800, Brian Lavender wrote: > I developing some code, which I am running under > > Apache::Registry > > I seem to recall that y

Exiting a script, or how do you do exit?

2002-03-13 Thread Brian Lavender
I developing some code, which I am running under Apache::Registry I seem to recall that you don't want to put exit; in a script, because the script continues to run. I have some code, where I may send a redirect, and then I am done. Is there a pseudo exit, or return command? brian --

Re: Can't locate TIEHASH Apache::Session::Oracle

2002-03-11 Thread Brian Lavender
On Mon, Mar 11, 2002 at 02:08:10PM -0800, Brian Lavender wrote: > I am trying to test the Apache::Session::Oracle > > Here is the error I am getting. What is wrong? I was able to > successfully install and test Apache::Session which tested > Apache::Session::Oracle > &

Can't locate TIEHASH Apache::Session::Oracle

2002-03-11 Thread Brian Lavender
ut to the form was: $input Your name is $session{name} http://penguin:8080/perl/example.perl/$session{_session_id}";>Reload this session http://penguin:8080/perl/example.perl";>New session http://penguin:8080/perl/example.perl/$session{_session_id}"; method="post"> Type in your name here: __EOS__ -- Brian Lavender http://www.brie.com/brian/

Re: Apache::Session problem with DBD::Oracle

2002-03-11 Thread Brian Lavender
The tests were writing to an NFS mounted directory, and I think NFS was creating some lock files which prevented the directory from being written to. I moved the install to a non NFS mounted area, and it all worked. brian On Mon, Mar 11, 2002 at 12:00:47PM -0800, Brian Lavender wrote: >

Re: Apache::Session problem with DBD::Oracle

2002-03-11 Thread Brian Lavender
at t/99dbfilestore.t line 73. t/99dbfilestore.dubious Test returned status 17 (wstat 4352, 0x1100) after all the subtests completed successfully On Mon, Mar 11, 2002 at 02:33:17PM -0500, Geoffrey Young wrote: > Brian Lavend

Apache::Session problem with DBD::Oracle

2002-03-11 Thread Brian Lavender
I am trying to install Apache::Session and it is failing on the DBD::Oracle tests. It is asking for a default user. Do I need to configure Oracle for a default user? Or do I need to set some environment variable with a user id and password? brian Here are the errors I am getting: t/99oracle

Re: Breaks in mod_perl, works in Perl

2002-03-06 Thread Brian Reichert
it? It's a part of your process, and hence should make use of whatver you're STDERR handle is. WHy not cop oot, and just redirect STDERR to a file, and collect it's output when youre done? Not graceful, but low-tech... > > Mark > -- Brian 'you Bastard' Re

Re: [OT] Apache Config Problem

2002-02-19 Thread Brian Reichert
ocs-2.0/misc/rewriteguide.html> > Thanks, > > Rob -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA Intel architecture: the left-hand path

Re: Caching LDAP connections

2002-02-08 Thread brian moseley
On Fri, 8 Feb 2002, Remi Godin wrote: > Is there an Apache::Net::LDAP type module that would > cache LDAP connections? Something that behaves in the > same manner as Apache::DBI how about ResourcePool? it includes a ResourcePool::Resource::Net::LDAP class.

RE: mod_perl "version" for Tomcat

2002-02-06 Thread brian moseley
On Wed, 6 Feb 2002, Stathy G. Touloumis wrote: > Hmmm, from what I've read of Tomcat it is recommended to > use it in conjuction with apache and just proxy specific > requests to Tomcat. that's why i recommended he spend his time getting apache working with ssl. ps: you don't proxy requests to

Re: mod_perl "version" for Tomcat

2002-02-06 Thread brian moseley
On Wed, 6 Feb 2002, Brett W. McCoy wrote: > Why would you need mod_perl with Tomcat? You can use > Tomcat with Apache using mod_jk, and get the best of > both worlds. presumably so that he doesn't have to port his cgi programs to servlets. i'm pretty sure tomcat has the capability to execute c

Re: New mod_perl Logo

2002-01-31 Thread brian moseley
On Wed, 30 Jan 2002, Paul Cotter wrote: > Give it some other marketting name, even if it keeps its > original name in places like this. didn't you people read perrin's message? do you think this is the first time this topic has been discussed? do you think it's gonna change doug's mind /this/ t

Re: kylix: rad!

2002-01-14 Thread brian moseley
On Sun, 13 Jan 2002, Daniel Aldham wrote: > Slashdot and Freshmeat ran a story on the weekend about > the Borland/Kylix license. Pretty draconian stuff. that's where i heard of it.

Re: kylix: rad!

2002-01-13 Thread brian moseley
On Mon, 14 Jan 2002, Gunther Birznieks wrote: > OK, I learned mod_perl, now where are my hot chicks! :) no, no, you have to pledge the frat! > I think a UI tool would help a bit, but it wouldn't > necessarily solve the hard part of mod_perl which is the > lack of Interpreter cleanup between inv

Re: kylix: rad!

2002-01-13 Thread brian moseley
On Sun, 13 Jan 2002, Sam Tregar wrote: > Ah, gimme a break. You want to convince me that > non-programmers can find their way to the party with a > fancy GUI? Go right ahead! I'll let you wear the > moose-hat for a whole week if you succeed. However, > that doesn't mean I'm going to stay quie

Re: kylix: rad!

2002-01-13 Thread brian moseley
On Sun, 13 Jan 2002, Sam Tregar wrote: > On Sat, 12 Jan 2002, Perrin Harkins wrote: > > > Well, does this product actually have any users to compete for? GUI > > builders usually don't work for anything but the most trivial websites > > that could be written in anything and do fine. People seem

Re: kylix: rad!

2002-01-13 Thread brian moseley
On Sat, 12 Jan 2002, Perrin Harkins wrote: > Well, does this product actually have any users to > compete for? unknown. i figure a large established software company isn't going to spend time developing a product for a market that doesn't exist, but you never know. > GUI builders usually don't

kylix: rad!

2002-01-12 Thread brian moseley
have you folks seen kylix? http://www.borland.com/kylix/ check out this white paper that describes how to create cgis and modules for apache: http://www.borland.com/kylix/papers/apache_development.pdf kylix looks pretty much like ye olde application framework, just like what many of us have

Re: [ANNOUNCE] Apache::AppCluster 0.2

2002-01-09 Thread brian moseley
On Wed, 9 Jan 2002, Mark Maunder wrote: > Well, I guess two methods could be added to the client > object. One to add a concurrent request to be called > (register_request()) and one to send all registered > requests concurrently. I'm not the author though, so > you'll have to chat to Jochen abou

Re: [ANNOUNCE] Apache::AppCluster 0.2

2002-01-09 Thread brian moseley
On Wed, 9 Jan 2002, Mark Maunder wrote: > The difference is that AppCluster allows you to call > multiple remote methods on the server (or on multiple > distributed servers) simultaneously. However, I wasn't > aware of PlRPC and I really like the interface i.e. the > way it creates a copy of the

Re: irc

2001-12-26 Thread brian moseley
On Wed, 26 Dec 2001, Philippe M. Chiasson wrote: > I am usually on rhizomatic, and #mod_perl sounds pretty > good to me. there's folks on both #mod_perl and #modperl. let's drop #mod_perl, cos the other is easier to type. who runs rhizomatic? do they have a standard channel registration process

Re: transient object data

2001-12-22 Thread brian moseley
On Sat, 22 Dec 2001, brian moseley wrote: > doesn't it seem like there should be a way to denote > object data as transient so that it doesn't get > serialized by Storable, etc? dammit, i keep deleting peoples' replies before i am able to reply to them myself. gunther

Re: irc

2001-12-22 Thread brian moseley
On Sat, 22 Dec 2001, brian moseley wrote: > i can't believe i never thought to ask this in 4 years, > but: do any of you hang out on irc anywhere in > particular? shouldn't there be a #mod_perl somewhere, if > there isn't already? hmm.. i went to #take23 on openproje

irc

2001-12-22 Thread brian moseley
i can't believe i never thought to ask this in 4 years, but: do any of you hang out on irc anywhere in particular? shouldn't there be a #mod_perl somewhere, if there isn't already?

Cache::Cache locking

2001-12-22 Thread brian moseley
Apache::Singleton::Server got me thinking about Cache::Cache and locking again. if i'm going to have a server-global object, i am going to need to protect against multiple processes updating it simultaneously, right? we've already talked about this in regards to sessions. most folks seem to feel

transient object data

2001-12-22 Thread brian moseley
doesn't it seem like there should be a way to denote object data as transient so that it doesn't get serialized by Storable, etc? i've solved this problem in the past by writing a class-specific serialization method that undefs things i don't want serialized. but it seems like something that the

Re: [ANNOUNCE] Apache::Singleton 0.03

2001-12-22 Thread brian moseley
On Sat, 22 Dec 2001, Tatsuhiko Miyagawa wrote: > Note that multiple process cannot share blessed reference without > serialization, so *One instance for one server* is just an idea. > What it means is, one instance for one process, and multiple > instances with sha

RE: mod_perl vs. C for high performance Apache modules

2001-12-14 Thread brian moseley
On Fri, 14 Dec 2001, Thomas Moore wrote: > I spoke to the technical lead at Yahoo who said mod_perl > will not scale as well as c++ when you get to their > level of traffic, but for a large ecommerce site > mod_perl is fine. the old "memory is cheap" rationalization doesn't go over very well at

Forking problem with mod_perl...

2001-12-02 Thread Brian
ave any idea why SIG{CHLD} would be ignored under mod_perl? Brian Johnson Programmer/Systems Administrator Source1Results.com http://www.source1results.com Online Marketing Management and Solutions

Re: [OT] log analyzing programs

2001-12-02 Thread Brian Reichert
any. I roll my own. It depends on the analysis I need to perform. I tend to scan them, and chuck the the elements into a MySQL database, so I can run real checks. > Bill Moseley > mailto:[EMAIL PROTECTED] -- Brian 'you Bastard' Reichert<[EMAIL PROTECTED]> 37 Cryst

Re: Running a shell command inside a cgi/perl script

2001-11-30 Thread Brian Reichert
that you aren't making use of unique filenames. This is a CGI program; you could hypothetically have multiple instances of this code running at once. Hope this helps... > > Can somebody guide me to do it right ?. > > Thanks > > Raj kairam > -- > J. J. Horner > "H*","6a686f726e657240

Re: Apache::Registry HTTP HEAD "feature" fix ;-)

2001-11-25 Thread brian moseley
instead of redirecting stdout to /dev/null, how about redirecting it to a temporary buffer? that way you can calculate the size of the output and set the content length on the response. On Sun, 25 Nov 2001, Jean-Michel Hiver wrote: > Hi guys, > > As promised I have been producing a fix for Ap

[JOB WANTED] looking for a job!

2001-11-15 Thread brian moseley
hiya. after almost a year off for good behavior in australia, i'm moving back to the states. anybody want to hire me? :) preferred locations include the sf bay area (but not the south bay), portland, and seattle. i'd also consider vancouver and toronto, visa issues permitting. i'm looking for a

[ANNOUNCE] Wombat and libservlet releases

2001-11-06 Thread brian moseley
(apologies to those for whom this is a cross-post) after many months, i'm finally able to announce releases of my various servlet packages. - libservlet 0.9.2 (servlet api) http://libservlet.sourceforge.net/ - Wombat 0.7.1 (servlet container) http://wombat.sourceforge.net/ - Apache::

Need help with a backtrace from a seg fault

2001-10-12 Thread Brian Cocks
-G -L/usr/local/lib' Characteristics of this binary (from libperl): Compile-time options: USE_LARGE_FILES Built under solaris Compiled at Jun 4 2001 12:07:15 @INC: /usr/local/lib/perl5/5.6.0/sun4-solaris /usr/local/lib/perl5/5.6.0 /usr/local/lib/perl5/site_perl/5.6.0/su

Re: [VERY OT] What hourly rate to charge for programming?

2001-10-10 Thread brian moseley
On Thu, 11 Oct 2001 [EMAIL PROTECTED] wrote: > And imitation Guiness. Also Tooheys, (Four-X, > rednecked Queensland favourite), Hahn, etc. Home-brew imitation guinness is still better than any of the rest. altho when it's not available i a quite happy with vb!

Re: [OT] What hourly rate to charge for programming?

2001-10-10 Thread brian moseley
On Wed, 10 Oct 2001, Gunther Birznieks wrote: > At 05:14 PM 10/10/2001, [EMAIL PROTECTED] wrote: > >I'd like to know where I can get paid more than AU$10/hour (US$4.90 to US$5 > >per hour) for my mod_perl programming... > > > >You guys in America get $100US per hour?! My god, I'm in the wrong > >

Apache::LogFile is broken

2001-10-10 Thread Brian B.
e any useful suggestions. Any fixes or workarounds (other than downgrading)? thanks in advance, Brian - Original Message - From: "Bryan T. Schmidt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 13, 2001 5:55 PM Subject: Apache::LogFile > H

Re: backticks in mod_perl

2001-10-05 Thread Brian Reichert
of a > command into an array? What's wrong with system(), and doing a split on $/, or the like? > (my @out = `command`;) > I am sure the answer is somewhere out there, but I couldn't find it. > thx. > > > BYe! > EXP -- Brian 'you Bastard' Reichert

Re: Perl Scripting help

2001-09-26 Thread Brian Reichert
an latter be manipulaterd. ie. capture the STDOUT. This isn't the right forum for this, really, but assuming you mean STDOUT/STDERR, consider this: <http://www.cpan.org/authors/id/R/RE/REICHERT/System2-0.81.tar.gz> > Any help, suggestions or sample code would be appreciated. > &

Re: Can't build mod_ssl + mod_perl

2001-09-17 Thread Brian P Millett
cho "Making the final Apache/ModPerl/SSL" $MAKE if [ $? -ne 0 ]; then echo "Unable to make Apache/ModPerl/SSL!!" exit 1 fi ## Ok, if there are no certificates, then make a certificate if [ "$CERT" = "/path/to/your/server.crt" ]; then echo "Making test certificate" make certificate TYPE=test fi INSTALL FINALLY!!! $MAKE install --END-- -- Brian Millett Enterprise Consulting Group "Shifts in paradigms (314) 205-9030 often cause nose bleeds." [EMAIL PROTECTED] Greg Glenn

Re: AxKit and Last-Modified (again)

2001-09-13 Thread Brian Wheeler
On Thu, 2001-09-13 at 09:19, Robin Berjon wrote: > On Thursday 13 September 2001 16:03, Brian Wheeler wrote: > > I tried Matt & Robin's suggestion of AxOutputTransformer, but apparently > > the version of AxKit I'm running (# $Id: AxKit.pm,v 1.105 2001/06/05 >

AxKit and Last-Modified (again)

2001-09-13 Thread Brian Wheeler
filter using Apache::Filter (the same way I'm running Apache::ASP and Apache::RegistryFilter scripts which seem to function correctly)? Brian

Segmentation Fault problems

2001-09-12 Thread Brian Cocks
/lib/perl5/site_perl/5.6.1 /usr/local/lib/perl5/site_perl/5.6.0/sun4-solaris /usr/local/lib/perl5/site_perl/5.6.0 /usr/local/lib/perl5/site_perl/5.005/sun4-solaris /usr/local/lib/perl5/site_perl/5.005 /usr/local/lib/perl5/site_perl . -- Brian Cocks Senior Software Architect Multi-Ad Services, Inc. [EMAIL PROTECTED] (309)690-5834

Re: AxKit & Last-Modified header

2001-09-12 Thread Brian Wheeler
On Wed, 2001-09-12 at 19:34, J. Zobel wrote: > On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: > > > The only difference between the two (request-wise) is that static pages > > return a "Last-Modified" header and dynamic data doesn't. It seems to > > me

Re: AxKit & Last-Modified header

2001-09-12 Thread Brian Wheeler
On Wed, 2001-09-12 at 19:34, J. Zobel wrote: > On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: > > > The only difference between the two (request-wise) is that static pages > > return a "Last-Modified" header and dynamic data doesn't. It seems to > > me

RE: AxKit & Last-Modified header

2001-09-11 Thread Brian Wheeler
On Tue, 2001-09-11 at 06:41, Matt Sergeant wrote: > > -Original Message- > > From: Geoffrey Young [mailto:[EMAIL PROTECTED]] > > > > > -Original Message- > > > From: Matt Sergeant [mailto:[EMAIL PROTECTED]] > > > > > > &g

AxKit & Last-Modified header

2001-09-11 Thread Brian Wheeler
oesn't. It seems to me that if I drop that header, everything will work :) I've tried doing: $r->header_out("Last-Modified"=>''); and $r->header_out("Last-Modified"=>undef); but the header still comes out. Thoughts? Am I on the right track? Brian

Children exiting with Segmentation Fault

2001-08-31 Thread Brian Cocks
ris Compiled at Aug 30 2001 17:04:47 @INC: /usr/local/lib/perl5/5.6.1/sun4-solaris /usr/local/lib/perl5/5.6.1 /usr/local/lib/perl5/site_perl/5.6.1/sun4-solaris /usr/local/lib/perl5/site_perl/5.6.1 /usr/local/lib/perl5/site_perl/5.6.0/sun4-solaris /usr/local/lib/perl5/site_perl/5

Re: server log oddness

2001-08-26 Thread brian moseley
was there ever a response to this message? i don't recall one, but i may have missed it. thanks. On Sat, 4 Aug 2001, brian moseley wrote: > > when exactly is the server log (Apache->server->log) shut > down? > > i've registered a server cleanup handler that,

server log oddness

2001-08-04 Thread brian moseley
when exactly is the server log (Apache->server->log) shut down? i've registered a server cleanup handler that, among other things, tries to write some debugging messages to the server log. however, it seems that calling $slog->debug somehow silently dies; my code stops executing at the point i c

  1   2   3   4   >