Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 52467 invoked from network); 13 Mar 2007 15:15:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Mar 2007 15:15:39 -0000 Received: (qmail 24457 invoked by uid 500); 13 Mar 2007 15:15:40 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 24448 invoked by uid 500); 13 Mar 2007 15:15:40 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 24437 invoked by uid 99); 13 Mar 2007 15:15:40 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 08:15:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [68.236.108.169] (HELO liex2.liaison-intl.com) (68.236.108.169) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Mar 2007 08:15:29 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: perl-status not reporting anything Date: Tue, 13 Mar 2007 11:15:08 -0400 Message-ID: <788CE35B4DF22443A7AA542796706AB501180E03@liex2.liaison-intl.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: perl-status not reporting anything Thread-Index: AcdlgmLG3eAHuxzvQOWp7TTJ3dGyZw== From: "John Saylor" To: X-Virus-Checked: Checked by ClamAV on apache.org hi i'm doing some debugging with Apache::Status and coming up to an obstacle. i have 2 modules- one of which works and one doesn't and i'm having a hard time figuring out what's going on. here's the top part of the testing module: package ZZ::testing; use strict; use warnings; use Apache::Constants qw( :common ); sub date_handler { my $r =3D shift; [rest of handler omitted] and here's the top part of the getAccount module: package ZZ::getAccount; use strict; use warnings; use Mail::Sendmail; use HTML::Template; use Apache::Constants qw( :common ); use ZZ::DBCon; sub lost_password { my $r =3D shift; [rest of handler omitted] now with the URL /perl-status?ZZ::testing, i get a report on all the Apache::Constants exported by common and the date_handler subroutine. but with the URL /perl-status?ZZ::getAccount i get blanks- nothing, no functions at all even though the same Apache::Constants library is imported. is getAccount a reserved word or something? any help is appreciated- thx. -- \js=20