I *finally* managed to get this to work. The problem is in Apache::Scoreboard, in Scoreboard.xs: apparently ap_exists_scoreboard_image() can return the value 0 even when everything is OK, causing the existence test to fail and Apache::Scoreboard not to load.

The following patch to Scoreboard.xs seems to do the trick:

342c342
<     if (ap_exists_scoreboard_image()) {
---
>     if ( image != NULL ) {

I hope this makes life easier for other people. Apache::VMonitor really is a nice tool.

d

Phillip wrote:

Hey guys,

I've installed Apache 2.2.3 and mod_perl 2.0.3 + libapreq2, >apparently
all successfully (my application runs pretty well).  Now I want to
install Apache::VMonitor and can't.

I've running on Debian sarge and have Apache 1.3.33 installed as
well >in
/usr/sbin/apache.
Where are your two apxs binaries (full path) ?
$ echo $PATH
$ which apxs


Reply via email to