Fred Moyer wrote:
Colin Wetherbee wrote:
[Fri Dec 14 23:57:52 2007] [error] [client 192.168.171.80] Can't
locate object method "log" via package "Apache2::RequestRec" at
/home/cww/sites/js.iron.denterprises.org/htdocs/jet-set/JetSet/Debug.pm
line 33.\n
use Apache2::Log ();
should take care
Colin Wetherbee wrote:
Based on some documentation I read [0] [1], I am trying to use the
following function to write messages to my virtual host's error log.
30 sub Debug(@)
31 {
32 my $r = Apache2::RequestUtil->request;
33 $r->log->debug(@_);
34 }
I have tried several variations of this,
Colin Wetherbee wrote:
Fred Moyer wrote:
I've been having fun with dtrace, and I most recently used it to see
what files are being accessed by mod_perl during requests. I've
preloaded all the modules in my application that I know about into
startup.pl, but when I startup my httpd server and m
Based on some documentation I read [0] [1], I am trying to use the
following function to write messages to my virtual host's error log.
30 sub Debug(@)
31 {
32 my $r = Apache2::RequestUtil->request;
33 $r->log->debug(@_);
34 }
I have tried several variations of this, restarting the server a
2007/12/14, Malcolm <[EMAIL PROTECTED]>:
> On Thursday 13 December 2007 10:00:30 am Jeff Pang wrote:
>
> > right now I got these exceptions in error_log:
> >
> > [Thu Dec 13 21:53:49 2007] [notice] child pid 4660 exit signal
> > Segmentation fault (11)
>
> Apache::Scoreboard is basically just a wra
On Thursday 13 December 2007 10:00:30 am Jeff Pang wrote:
> right now I got these exceptions in error_log:
>
> [Thu Dec 13 21:53:49 2007] [notice] child pid 4660 exit signal
> Segmentation fault (11)
Apache::Scoreboard is basically just a wrapper around the apache scoreboard
api, so we're dealin
On Fri 14 Dec 2007, Torsten Foertsch wrote:
> So, I want to write a number of key-value pairs to a bdb database as a
> transaction.
Sorry for the SPAM. I forgot the -Txn flag to BerkeleyDB::Btree->new.
Torsten
Hi,
this is not really a mod_perl question but I know there is wisdom about it on
the list.
So, I want to write a number of key-value pairs to a bdb database as a
transaction. Here is my code:
my ($db, $env)=($I->bdb_db, $I->bdb_env);
my $txn=$env->txn_begin;
$txn->Txn($db);
my $count