Re: CGI module deprecation

2017-11-29 Thread Brian Scott
uses CGI. I haven't verified the speed or size claims but it's working well on an old Raspberry-Pi (very low volumes) so can't be too bad. It claims to be 100% compatible on the parsing side with all the html stuff removed. I haven't pushed very hard to verify this. Brian On

unsubscribe

2017-08-02 Thread Brian Barnes

Re: Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread Brian Candler
ately I'm now battling with Apache2::SiteControl, but that's a different ball game. Sorry for the noise, but hopefully somebody finds this useful. Regards, Brian.

Re: Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread Brian Candler
On 25/06/2014 13:41, Brian Candler wrote: I notice that there is a newer version of Apache2::AuthCookie (3.22) available, so I installed that from CPAN. But this changes the error to: [Wed Jun 25 13:35:26.054231 2014] [perl:error] [pid 17668] [client 10.0.2.2:50801] Can't locate object m

Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread Brian Candler
l/5.18.2/Apache2/AuthCookie.pm line 388.\n, referer: http://localhost:8013/testsite/protected/example.html and indeed, I see no 'requires' member in http://perl.apache.org/docs/2.0/api/Apache2/RequestRec.html Does anybody have any clues they can pass on? Many thanks, Brian Candler.

trying to compile mod_perl against httpd-2.4.1

2012-02-21 Thread Brian Millett
* 2030.0 (2.4.0-dev) c->remote_ip becomes c->peer_ip and r->client_ip, * c->remote_addr becomes c->peer_addr and r->client_addr I guess I'm asking is anyone has made any progress with mod_perl with the new httpd 2.4 ?? -- Brian Millett &quo

Re: combining multiple filtered files into a single response

2010-11-19 Thread Brian
lush buckets are predictable?). It's a bit messy and I'm still hoping someone here may offer a cleaner mechanism, but if not then I'll try that. Thanks, Brian

Re: combining multiple filtered files into a single response

2010-11-18 Thread Brian
my $footer = generate_footer($file); $r->write($header); my $subr = $r->lookup_uri("/fetch?name=$file", $myfilter); $r->write(...output of $subr...?); $r->write($footer); } It's a little more complicated than that, but hopefully you get the idea... Brian

Re: mod_perl 1.30 seg faults

2010-10-30 Thread Brian Hirt
Thanks, I don't know how I missed that. I swear I checked that i was running the latest version, /facepalm --brian On Oct 29, 2010, at 10:42 PM, Salvador Ortiz Garcia wrote: > Hi Brian, > > That bug was fixed in mod_perl 1.31. > > Sure you can upgrade to last 1.x mo

mod_perl 1.30 seg faults

2010-10-29 Thread Brian Hirt
0 is old and apache 1.3.42 is end of life.Yes we will be upgrading to a newer version in the future, but I'm trying to find an interim solution over the next few months. Any help is much appreciated. Thanks! Brian Program terminated with signal 11, Segmentation fault. #0 0x4012ad6a

problem with Apache2::AuthCookie

2009-07-29 Thread Brian Clarkson
I started having an odd problem with a simple subclass of Apache2::AuthCookie after a mod_perl upgrade. When authorization fails, apache apparently returns a forbidden page to the user (not just a forbidden status to the authentication hook) then fails to redirect the user back to the login page

Segfault in Perl_av_undef

2009-05-07 Thread Brian Hirt
ever going to be rolled? If not, should I be running SVN or should I manually patch this particular bug against 1.30? Thanks for the advice, Brian (gdb) bt #0 0x7f881ab96c43 in Perl_av_undef () from /usr/lib/libperl.so.5.10 #1 0x0043eafb in perl_shutdown (s=, p=) at mod_perl.c

tests failing when installing libapreq under Leopard

2008-10-22 Thread Brian
s a little outside of my understanding. Here is a copy/paste of my console during the whole installation process: bartobrians-macbook-pro:src brian$ cd libapreq-1.33 bartobrians-macbook-pro:libapreq-1.33 brian$ perl Makefile.PL -apxs /usr/local/httpd/sbin/apxs -httpd /usr/local/httpd/sbin/httpd [

Performance issue

2008-10-10 Thread Brian Gaber
I have an AIX 5.2 (16 GB RAM), Apache 2.2.8, MySQL 5.0.51a and mod_per 2.04 environment. I had a Perl cgi-bin program using CGI.pm that I converted to work in mod_perl. The converted script still uses CGI.pm and is now enabled in Apache via: PerlModule ModPerl::Registry Alias /perl/ /usr/local/a

RE: Segfault when connecting during Apache startup with Apache::DBI

2008-06-27 Thread Brian Gaber
On AIX 5.2 I am using Perl 5.8.0, MySQL 5.0.51a, Apache 2.2.28, mod_perl 2.04, DBI 1.604 and DBD 4.0007 and it all works good. --Brian -Original Message- From: Tobias Kremer [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2008 5:51 AM To: modperl@perl.apache.org Subject: Re: Segfault

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
($dept2show) = $q->param('deptLtr') =~ /^([a-zA-Z]{1})$/; } -Original Message- From: Dondi Stroma [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 4:38 PM To: Brian Gaber Cc: modperl@perl.apache.org Subject: Re: CGI.pm param and mod_perl Brian Gaber wrote: > Th

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
on the CGI.pm query object and thus param('var') is not new on every run. Why, I have no idea. BTW, when you and Michael talk about logging via [warn] are you reffering to a syslog change or some Perl function? Thanks. Brian -Original Message- From: Dondi Stroma

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
s O <- ERROR I selected C The value of set is 0 SELECT * FROM atlantic_rr WHERE dept REGEXP '^O' ORDER BY dept, pay_list -Original Message- From: Michael Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 4:21 PM To: Brian Gaber Cc: Dondi Stroma; modperl@perl.apac

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
ime. But even then my advice wasn't that helpful since the assignment would still only happen at compile time. > I suspect the problem is something else, possibly part of the script > that we haven't seen. Yeah, I'm starting to think the same thing. Brian, why don't

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
gnment would still only happen at compile time. > I suspect the problem is something else, possibly part of the script > that we haven't seen. Yeah, I'm starting to think the same thing. Brian, why don't you print the value of the param to the log ("warn" is good for this) for the request (along with the SQL that you're generating) so you/we can see what the actual value being pulled it. -- Michael Peters Plus Three, LP

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
ared at" error. What is the recommended approach? Pass a reference to $q? Thanks -Original Message- From: Michael Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 3:21 PM To: Brian Gaber Cc: modperl@perl.apache.org Subject: Re: CGI.pm param and mod_perl Brian Gaber wro

RE: CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
} I am running this script simultaneously on two PCs. Sometimes $dept2show has the expected value, but often is has the an old value. -Original Message- From: Michael Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2008 2:54 PM To: Brian Gaber Cc: modperl@perl.apache.org

CGI.pm param and mod_perl

2008-06-13 Thread Brian Gaber
rams? One thought, my code is written to use the CGI.pm default object so that I do not have something like $q = new CGI; Could this be the cuase? Thanks. Brian

RE: mod_perl2 newbie DBI question

2008-06-13 Thread Brian Gaber
Michael, Thank you very much for this valuable advice. Cheers. Brian -Original Message- From: Michael Peters [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2008 3:05 PM To: Brian Gaber Cc: Jim Brandt; modperl@perl.apache.org Subject: Re: mod_perl2 newbie DBI

RE: mod_perl2 newbie DBI question

2008-06-12 Thread Brian Gaber
eeing this in your development environment? Yes Can you reproduce the problem reliably? Yes Thanks. -Original Message- From: Jim Brandt [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2008 2:36 PM To: Michael Peters Cc: Brian Gaber; modperl@perl.apache.org Subject: Re: mod_perl2

mod_perl2 newbie DBI question

2008-06-12 Thread Brian Gaber
I have a MySQL database application that is used and managed by cgi-bin scripts (CGI.pm). In development the performance was fine, but a productin trial showed the performance to be unacceptable. I am attempting to fix the performance by using mod_perl2 which I have never used. I have successful

Re: perl at apachecon

2008-04-02 Thread Brian Millett
with OSCON, there were many more. -- Brian Millett - [ Garibaldi, "Revelations"] "What's up, Doc?" signature.asc Description: OpenPGP digital signature

Re: perl at apachecon

2008-04-02 Thread Brian Millett
u'll need to create one to register anyway). the main site is http://www.us.apachecon.com/us2008/ and the dates are november 3-7 in cool new orleans. thanks Wow, not many proposals. :-( OSCON 2008 doesn't have much perl either. A disturbing trend. -- Brian Millett - [ Sinclai

Re: mod_perl2 and SDBM-tied hashes

2007-08-02 Thread Brian Reichert
lding apache and modperl from source. That I know, but I'm trying to limit the set of RPMs I'm building interally (we have an internal distribution model that entirely RPM-based.) -- Brian Reichert <[EMAIL PROTECTED]> 55 Crystal Ave. #286

Re: mod_perl2 and SDBM-tied hashes

2007-08-02 Thread Brian Reichert
ry for read/write sharing on all dbms except BerkeleyDB. Interesting; thanks for the pointer > - Perrin -- Brian Reichert <[EMAIL PROTECTED]> 55 Crystal Ave. #286Daytime number: (603) 434-6842 Derry NH 03038-1725 USA BSD admin/developer at large

Re: mod_perl2 and SDBM-tied hashes

2007-07-29 Thread Brian Reichert
feedback, BTW...) If it's a factor: RedHat's apache2 RPM defaults to the prefork MPM. If I try to use the worker MPM, I get a 'free(): invalidpointer' error. -- Brian Reichert <[EMAIL PROTECTED]> 55 Crystal Ave. #286Daytime number: (603) 434-6842 Derry NH 03038-1725 USA BSD admin/developer at large

mod_perl2 and SDBM-tied hashes

2007-07-29 Thread Brian Reichert
esting'; my %info=(); my $hashref = { @ARGV }; tie (%info, $dbclass, $loc, O_RDWR|O_CREAT, 0640) || die "$0: can't tie $loc: $!"; %info = %{$hashref}; while(1) { print "\n"; foreach (sort keys %info) { print "$_: $info{$_}\n"; } sleep 1; } #

[mp2] [BUG] [PATCH] Build error: HP-UX 11i error w/ fully pathed gcc compiler

2007-02-22 Thread Brian . T . Wightman
= " -Ae "; } --- 623,630 sub ccopts_hpux { my $cflags = shift; ! # Modified to allow fully-pathed gcc executable. ! return if $Config{cc} =~ m/gcc$/; #XXX? return if $$cflags =~ /(-Ae|\+e)/; $$cflags .= " -Ae "; } Thanks, Brian -- Brian T. Wightman[EMAIL PROTECTED]

Re: Protecting source code

2006-08-25 Thread Danny Brian
I think that if mod_perl programs could be very well encrypted, this technology would be a little more used than it is now, but they can't, and if this is a disadvantage for some of us, we shouldn't say that the programmers shouldn't need such a thing. Teddy makes a good point. This discussio

Re: I swear, [idiots unsubscribe help request]

2006-08-22 Thread Danny Brian
P.P.S You might try being nicer to volunteers you are trying to help you and not call them idiots. I suspect the subject was meant to be read, "idiot's unsubscribe help request", and not, "help me unsubscribe, idiots!" - Danny

Re: segv issue

2006-06-07 Thread Dan Brian
I have tested the problem with a barebones build of httpd on FreeBSD 5 and 6. I do not believe any different library versions are shared between this module and Apache or other loaded Apache modules; symbol conflicts were my first thought. No idea why... but I've definitely encountered that

Re: segv issue

2006-06-07 Thread Danny Brian
I have tested the problem with a barebones build of httpd on FreeBSD 5 and 6. I do not believe any different library versions are shared between this module and Apache or other loaded Apache modules; symbol conflicts were my first thought. No idea why... but I've definitely encountered that

segv issue

2006-06-07 Thread Danny Brian
I'm wondering if anyone can shed light on the circumstances of a segv with httpd2.2.2/mod_perl2.0.2. The module being loaded in Sleepycat::DbXml (part of the Sleepycat BDB XML distribution). The segfault occurs upon Apache startup with either: a) The module is loaded as use Sleepycat::DbX

[mp1] CGI upload_hook with PerlRun

2006-03-28 Thread Brian Dimeler
Hi, I have a file-uploading script from a server running perl scripts as plain old CGI, and I'm trying to port it to an Apache 1.3 server using PerlRun. Everything works except CGI's upload hook. On the vanilla CGI server, the upload hook routine is called repeatedly during the upload process,

Re: [OT] modperl vs. Ruby

2006-02-24 Thread Danny Brian
On Feb 24, 2006, at 4:00 PM, Alan Bailward wrote: It probably really comes down to personal preference and familiarity FWIW. And marketing.

Re: child process exited with status 3221225477 -- Restarting

2006-02-02 Thread Brian Reichert
child process exited with status 3221225477 -- Restarting." See perlvar(1) for a discussion on how to unpeel that into separate parts; see $?. Dunno what that might mean under Windows, though... -- Brian Reichert <[EMAIL PROTECTED]> 55 Crystal Ave. #286

[mp1] Apache::PerlRun errs on backtick operator

2006-01-18 Thread Brian Dimeler
I'm moving my all of my PerlRun scripts to a new webserver, and have discovered that a few modules which invoke system commands via the backtick `` operator are failing to compile when they reach those commands. This doesn't happen when I run the scripts from the command line; only when run as m

Re: @CustomLog and @LogFormat directives

2005-11-10 Thread Brian Phillips
Unfortunately I'm not using Apache2... :-( Any ideas for Apache 1.3?On 10 Nov 2005 11:37:50 -0800, Randal L. Schwartz <merlyn@stonehenge.com> wrote: >>>>> "Brian" == Brian Phillips < [EMAIL PROTECTED]> writes:Brian> Even using Apache->http

@CustomLog and @LogFormat directives

2005-11-10 Thread Brian Phillips
%{User-Agent}i\"" combined     });     our $CustomLog = 'logs/access_log combined'; I'd like to be able to do something like this:     @LogFormat = (     '"%h %l %u %t \\"%r\\" %>s %b \\"%{Referer}i\\" \\"%{User-Agent}i\\"" combined'],     '"%h %l %u %t \\"%r\\" %>s %b" common',     '"%{Referer}i -> %U" referer',     '%{User-agent}i agent',     );     @CustomLog = (     ['logs/access_log', 'common'],     ['logs/referer_log', 'referer'],     ['logs/agent_log', 'agent'],     ); Does anyone have a working example of how to use multiple values for these specific directives? Thanks in advance, Brian

Re: mod_perl, mysql, and set names

2005-11-04 Thread Brian Phillips
You could also just make sure something like the following is in a my.cnf file (on my system it's /var/lib/mysql/my.cnf): [perl] default-character-set=utf8 And then when you connect, you'll need to specify two options to DBI to make DBD::mysql read from the option file: DBI->connect( 'dbi:mysql:lo

Apache::Constants qw(HTTP_OK)

2005-11-03 Thread Brian Duggan
s::HTTP_OK called at -e line 1. What am I missing? -Brian

Re: Apache2::Cookie blank value bug?

2005-08-24 Thread Dan Brian
On Aug 24, 2005, at 3:40 PM, Ted wrote: Blank value in cookie causes server to die with a Segmentation Fault. For me, too.

Re: mod_perl 1.29: send_fh(): result status?

2005-08-24 Thread Brian Gorby
Brian Gorby wrote: Is this something that's possible in general? with mod_perl? Found it. Apache::Connection->aborted() is just what I needed. -Brian

mod_perl 1.29: send_fh(): result status?

2005-08-24 Thread Brian Gorby
the file was sent / received in entirety before recording the download; if the download times out for whatever reason for the client, the download will not be recorded. Is this something that's possible in general? with mod_perl? -Brian

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

2005-08-10 Thread Dan Brian
By the way, Stas deserves some severe kudos for these materials. They were the best tutorial materials at OSCON, reading like a well- written book. You could stand up and read the whole thing without any preparation. But, don't do that. :-) Thanks Stas! - Dan

Re: mod_perl variables

2005-08-10 Thread Dan Brian
On Aug 10, 2005, at 11:07 AM, Boysenberry Payne wrote: This message contains information that is confidential and proprietary to Humaniteque and / or its affiliates. It is intended only for the recipient named and for the express purpose(s) described therein. Any other use is prohibited. Pleas

Re: trying to build a statically-linked apache2/mod_perl2

2005-06-25 Thread Brian Huxtable
in a specified location, eg with --prefix Brian Huxtable's posting suggests the documented method worked for him though he did not indicate that had been done with a clean file-system. I did try adding the "MP_COMPAT_1X=1 MP_GENERATE_XS=1" he used, but it still did not work for me.

Re: trying to build a statically-linked apache2/mod_perl2

2005-06-25 Thread Brian Huxtable
test (yes, twice) > make install It builds and installs fine. Then I add /opt/apache2/bin to my path to install libapreq (I think it needs apxs): > perl -MCPAN -e shell > install Apache2::Request The CPAN install warns about a few of the later tests but I haven't noticed any problems with the few functions I use. Brian

Re: [mp2] Small "bug" / feature request / documentation in make test needed

2005-06-23 Thread Brian Huxtable
4/mod_perl 2.0.0 (RC5/RC6/Release) on CentOS 4 with no other Apache installed/running. I wasn't able to figure out why the first test run hangs (everything looks like it should be working). The second test run has no problems. Brian

RE: [mp2] PerlSetEnv Issue

2005-06-22 Thread Brian Becker
pulate there is another check to MpReqSETUP_ENV - so before I called modperl_env_request_unpopulate I set MpReqSETUP_ENV_On. Brian -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 8:38 AM To: Brian Becker Cc: modperl@perl.apache.org Su

Re: seg faults on RHEL 3

2005-06-22 Thread Brian Duggan
I've seen set LANG=en_GB.UTF8 - get rid of the .UTF8 and stuff > works... Great, thanks. I got the latest RHEL 3 perl source rpm (perl-5.8.0-89.10), set LC_ALL=C, LANG=en_US, rebuilt perl, then rebuilt apache/mod_perl as before, and no more seg faults. Yay. -Brian

seg faults on RHEL 3

2005-06-22 Thread Brian Duggan
tp_main.c:5657 Any suggestions for fixes or how I might diagnose this further would be appreciated. Brian

[mp2] PerlSetEnv Issue

2005-06-16 Thread Brian Becker
  return OK; } 1; Startup.pl $ENV{MOD_PERL} or die "not running under mod_perl!"; use base qw(ModPerl::Registry); use A::Authenticate2; 1; #return true value Brian Becker

Re: [mp1] binmode(STDOUT, ':utf8') fails silently

2005-05-05 Thread Brian Dimeler
till curious about binmode(), though; is there some mod_perl-specific reason that it would fail? Brian Dimeler wrote: Hi, I'm trying to set binmode(STDOUT, ':utf8') from within a PerlRun script (mod_perl 1.29, apache 1.3.29, perl 5.8.6), and it's failing (returning undef) wi

[mp1] binmode(STDOUT, ':utf8') fails silently

2005-05-05 Thread Brian Dimeler
Hi, I'm trying to set binmode(STDOUT, ':utf8') from within a PerlRun script (mod_perl 1.29, apache 1.3.29, perl 5.8.6), and it's failing (returning undef) without setting $!, as the docs claim it should. I really shouldn't even have to do this at all, since I'm already setting Content-type: text

Re: Apache2::Reqest

2005-04-25 Thread Dan Brian
ively though, but it built and installed fine, and the few things i was using A:R for didn't blow up. Adam -Original Message- From: Dan Brian [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 4:49 PM To: mod_perl Mailing List Subject: Apache2::Reqest I'm sure this has been d

Re: Apache2::Reqest

2005-04-25 Thread Dan Brian
This is for [EMAIL PROTECTED] Also, search those archives... they hold more answers :) It's not usually easy to get help compiling a nightly dev shapshot on any list (thus, the "dev snapshot" part). I figured that since the newer mp2 leaves this group the CVS ... doh, I mean, SVN :P, version as

Apache2::Reqest

2005-04-25 Thread Dan Brian
I'm sure this has been discussed in recent days, but I couldn't find the thread. Has anyone succeeded in getting the CVS version of libapreq (Apache2::Request) to work with the newer-namespace mp2? I can't get the CVS version to compile, but wondered if there was a working snapshot anyone was

Re: ticketing solutions

2005-04-22 Thread Dan Brian
What are people using to do authentication ticketing from mp? Nothing jumps out of CPAN at me, mostly because what I've seen just makes md5's out of username/password/expiration. Any recommendations? What were you expecting it to do beyond making a hash for verification? My point was that I don't

ticketing solutions

2005-04-22 Thread Dan Brian
What are people using to do authentication ticketing from mp? Nothing jumps out of CPAN at me, mostly because what I've seen just makes md5's out of username/password/expiration. Any recommendations? Ideally, I'm looking for a solution that might be usable both inside and outside mp, over multi

Re: ticketing solutions

2005-04-22 Thread Dan Brian
Thanks all; I'll look at the solutions mentioned! On Apr 22, 2005, at 6:35 PM, Michael Schout wrote: Dan Brian wrote: My point was that I don't need a CPAN module to verify hashes. Features could include a mechanism for rotating a key on the servers being accessed, IP verification ...

Re: Which OS would you choose given a free choice

2005-04-15 Thread Dan Brian
I'm getting a new server and was planning on going with Fedora Core 3 and plesk. But it was just suggested that I maybe consider FreeBSD and DA. Never even heard of DA (about to look it up) but being a Mac user I must know a little about FreeBSD. So if you had a free choice of OS and control panel

Re: ModPerl performance on BSDs

2005-03-14 Thread Dan Brian
I've been running mp2 in production on FreeBSD 4.9 without issue for about 6 months. On Mar 14, 2005, at 7:28 AM, William McKee wrote: On Thu, Mar 10, 2005 at 04:15:38PM -0500, Jonathan Vanasco wrote: I've been looking mostly at NetBSD, FreeBSD and OpenBSD -- has anyone had remarkable success or

Re: very basic question

2005-03-14 Thread Brian Reichert
send stderr to stdout? You can fake it thusly; add this early on in your script: exec 2>&1 -- Brian Reichert <[EMAIL PROTECTED]> 55 Crystal Ave. #286Daytime number: (603) 434-6842 Derry NH 03038-1725 USA BSD admin/developer at large

Re: Controlling licensed software? [veering OT]

2005-02-20 Thread Dan Brian
Thanks for everybody's answers, but as stated in my previous e-mail where its hosted is not negotiable. Who is it "not negotiable" for? If the client is the one demanding this, that should be a huge warning flag for you. I realize you already said that this wasn't negotiable, but the reason peop

Re: [OSCon 2005] RFC

2005-02-11 Thread Dan Brian
If your goal is to convince people to switch to mod_perl, I don't think this will work very well. People choose platforms for practical reasons, the most common being that they already have employees who know that platform. Relative ease of parsing a form has little to do with it, especially sin

Re: //scriptname gets script source on https server on Win32

2005-02-09 Thread Brian Reichert
using mod_rewrite to correct requested URLs. > Josef > -- > Josef Ender, Bitspot AG > http://www.bitspot.com -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA BSD admin/developer at large

Re: [OSCon 2005] rfc Open Source Dynamic Data Compression

2005-02-03 Thread Dan Brian
I'd cite the fact that places like Google use compression for almost all serving. A lot of people don't know that compression is wide-spread among the big sites. Yes Dan, you are right regarding the Google, however to date Google and Yahoo are rather exceptions than the rule for the content deliv

Re: [OSCon 2005] rfc Open Source Dynamic Data Compression

2005-02-03 Thread Dan Brian
Any additional suggestions? I'd cite the fact that places like Google use compression for almost all serving. A lot of people don't know that compression is wide-spread among the big sites.

Re: Mac::Glue and mod_perl

2005-01-14 Thread Brian Dimeler
Well, if you mean restarting the whole computer, no; but I had shut down and restarted the webserver a few times, and always gotten the same results. Martin Moss wrote: please forgive the really daft question, but have done a complete server shutdown and restart? I've come across bus errors befor

Mac::Glue and mod_perl

2005-01-14 Thread Brian Dimeler
ername and pass, as above. So, does anyone know why it's causing a "bus error" when I try to run it in the webserver? Is there a workaround? Brian

[Fwd: Re: OT: Free Software as a "Security Hole"]

2005-01-12 Thread brian wheeler
I forgot to CC the list! Forwarded Message > From: brian wheeler <[EMAIL PROTECTED]> > To: Goehring, Chuck, RCI - San Diego > <[EMAIL PROTECTED]> > Subject: Re: OT: Free Software as a "Security Hole" > Date: Wed, 12 Jan 2005 12:28:34 -050

Re: [summary] The Conflict of mp1 vs mp2 vs mp22 vs ... vs mpNN

2004-12-31 Thread Dan Brian
Stas> 99.9% of users do *not* need to use this workaround. So that Stas> issue is moot if you ask me. Randal> You keep saying this like you believe it. In fact, the number keeps Randal> getting closer to 100% each time. Randal> This is pure, fabricated *fiction*. For me, this ends up being the s

Re: Slashdot | Help Test mod_perl 2 Release Candidates

2004-12-26 Thread Dan Brian
Stas> My submission to /.org made it to the Apache section: Stas> Stas> It's about asking to help testing the mp2-RCs. Oh good. Another place to post my "use Apache2 considered harmful" rant...

Re: Why MP2

2004-12-14 Thread Dan Brian
In preparation for the upcoming release of mod_perl2, I'd like to prepare a list of reasons why a person/company would look at using mod_perl2, specifically, why upgrade from mod_perl1, and converting from other technologies. So with that, what reasons do you have for wanting MP2? What prevent

CGI::Carp and PerlRun

2004-12-09 Thread Brian Dimeler
, which is *supposed* to be able to run CGI scripts without modification, and if there's a workaround? Thanks, Brian -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Re: mod_perl marketing

2004-11-30 Thread Dan Brian
So far only a few people actually did something (publishing articles, helping to update and improve the website), the rest are just talking. Many are also spending a lot of time influencing their own spheres (businesses, peers) to learn and actually adopt the technology. I think that's some of t

Re: mod_perl marketing

2004-11-30 Thread Dan Brian
The lack of awareness extends to Apache generally, and not just mod_perl. Saying that "mod_perl isn't just CGI; it allows Perl coding to the Apache API" is not really informative, because people don't know what the Apache API is. (The author that initiated this thread replied to me privately th

Re: mod_perlservice? Heck Yeah!

2004-11-26 Thread Dan Brian
I think it's great that you are proud of your work. Criticism will make your work better. Calling this "cross-language remoting" is kind of a misnomer, because standards like SOAP/XML-RPC are what allow RPC to occur cross-language. Yours is a Perl server solution (by definition), and not bas

Re: mod_perlservice? what the heck?

2004-11-24 Thread Dan Brian
Having spent time building lots of webapps with flash, and knowing many people who still do so and come from art school backgrounds, their system seems simple enough and tailored exactly for someone who doesn't know programming. You need to know programming to use it. Perl, specifically. It seem

Re: New to ModPerl 2

2004-11-14 Thread Dan Brian
Note, though, that libapreq2 will require some changes in your code, but probably less than not using libapreq. Be sure to read the documentation, especially the notes about converting from v1, for Apache::Request and Apache::Cookie at: I'll add to your list (of potential confusion) that $r->

Re: user login ( authentication )

2004-11-02 Thread Brian Reichert
> > You don't use the database's authentication, per se; the proscribed > > mechanism is to create a separate MySQL table for uid/password for > > web-based authentication. > > > -- > David L Nicol > transportation infrastructure technology contracting sin

Re: user login ( authentication )

2004-11-01 Thread Brian Reichert
ntication. > ...any advice(help) much appreciated Any luck googling? This has been done so many times... > /G > -- > www.gh-webinteractive.com -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 43

Re: Apache::DBI, Postgresql, and transactions

2004-10-27 Thread Brian Dimeler
Thanks! It seems to be working correctly after implementing your changes. Brian Perrin Harkins wrote: I plan to submit a patch for Ima::DBI to fix this, but in the meantime I am handling it by overriding db_Main and doing the connections myself. Here's the code I use: my $db_op

Re: Apache::DBI, Postgresql, and transactions

2004-10-26 Thread Brian Dimeler
Thanks for the suggestion, but it's the same connection with the same params every time. The connection code is actually in a Class::DBI module, which gets use()'d by all of my scripts. This module isn't in my startup script, so that each process keeps its own copy. So there are multiple handle

Apache::DBI, Postgresql, and transactions

2004-10-26 Thread Brian Dimeler
sly, about an hour after restarting, the cleanup handlers either aren't running or aren't printing debug info anymore, and the 'transaction aborted' errors are back. Does anyone know what could cause this, or how I could better diagnose my system? I'm running Postgres 7.4, P

Re: debugging run away httpd process

2004-10-15 Thread Brian Reichert
have the opportunity to point lsof at the descriptors in question; this is just in case there was a latency-induced flaw in terms of what details /proc was exposing. That may not be a factor at all, of course, given what you found the problem to be... > > Tor. > -- Brian

Re: debugging run away httpd process

2004-10-14 Thread Brian Reichert
; > > -- >Victor > Development Engineer > Outblaze Ltd > --> -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303

Re: libapreq2 versus everything else

2004-08-25 Thread Dan Brian
While the whole issue has always been somewhat confusing, there's no more overlap in MP2. Apache::Request inherits from Apache::RequestRec just like it did from its MP1 equivalent Apache.pm before, and adds parsing and handling of request parameters incl. multipart/form-data and uploads, as wel

Re: libapreq2 versus everything else

2004-08-25 Thread Dan Brian
ering about the sentiment of the list.) Thanks, Dan Brian -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html

libapreq2 versus everything else

2004-08-25 Thread Dan Brian
pache::Cookie etc.), and I'm trying to get a handle on the direction of these efforts for migration preparations. Could someone give me a pointer on where to focus? Thanks/regards, Dan Brian -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl

Re: reverse IP lookup for check all doimains on the server

2004-06-17 Thread Brian Reichert
topic. A generic question about how to generate that database (if you're looking for a DB of domains/IPs _not_ hosted on your server) is not on-topic. Good luck... -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number:

Re: reverse IP lookup for check all doimains on the server

2004-06-11 Thread Brian Reichert
<http://perl.apache.org/docs/1.0/api/Apache.html#Server_Configuration_Information> If you want magically divine all domains connected to an arbitrary IP out there on the internet, then you're asking about a reverse lookup database... -- Brian Reichert

Re: reverse IP lookup for check all doimains on the server

2004-06-10 Thread Brian Reichert
On Thu, Jun 10, 2004 at 11:51:02PM +0200, Maxipoint Rep Office wrote: > how create it at all? :-) about that I can not find any documentation Create what? A reverse lookup database? Or CGI tools to display such a database? -- Brian Reichert <[EMAIL PROTECTE

Re: reverse IP lookup for check all doimains on the server

2004-06-10 Thread Brian Reichert
info/216.127.92.54 > > Mario -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA BSD admin/developer at large -- Report problems: http://perl.apache.

  1   2   >