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; } #

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

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: //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: 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: 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: 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.

Re: mod_perl not able to run some pl files.

2004-06-01 Thread Brian Reichert
ble to read the file. But this file should certainly not be world-writable. > Thanks, > Bheema. -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA BSD admin/

Re: mod_perl not able to run some pl files.

2004-05-31 Thread Brian Reichert
x27;s group readable. But we'll never know, if you don't answer the questions I asked. :/ > Thanks, > Bheema. -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA

Re: mod_perl not able to run some pl files.

2004-05-28 Thread Brian Reichert
m -ls What are the permissions on it? If you installed as root, but had a restrictive umask, it may not be world-readable, which would thwart the apache process from reading it. -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Dayti

Re: mod_perl not able to run some pl files.

2004-05-27 Thread Brian Reichert
in that path, do you mean that you used that perl installation to make/install the module? Or did you merely copy it in? If the latter, make sure that you have permissions on the file set properly. > Thanks, > Bheema -- Brian Reichert <[EMAI

Re: Problem with perl system() function

2004-04-29 Thread Brian Reichert
shell); see if that'd be useful for you... my ($out, $err) = system2(@args); Are you checking on the exit status of your command? my ($exit_value, $signal_num, $dumped_core) = &System2::exit_status($?)? Good luck... -- Brian Reichert <[EMAIL PROTECTED]>

Re: "*:80 has no VirtualHosts" but only via perl!

2004-04-26 Thread Brian Reichert
;*:80' => [ > { Maybe perl's treating this an RE? (Just arm-waving; I's still pre-coffee...) -- Brian Reichert <[EMAIL PROTECTED]> 37 Crystal Ave. #303Daytime number: (603) 434-6842 Derry NH 03038-1713 USA