Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 72445 invoked from network); 7 Jun 2005 13:38:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Jun 2005 13:38:44 -0000 Received: (qmail 47450 invoked by uid 500); 7 Jun 2005 13:38:35 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 47436 invoked by uid 500); 7 Jun 2005 13:38:35 -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 47416 invoked by uid 99); 7 Jun 2005 13:38:34 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from thetwilightgarden.net (HELO ryanxaa1.miniserver.com) (69.10.158.171) by apache.org (qpsmtpd/0.28) with ESMTP; Tue, 07 Jun 2005 06:38:31 -0700 Received: from diarmuid (83-71-103-94.b-ras1.lmk.limerick.eircom.net [83.71.103.94]) by ryanxaa1.miniserver.com (Postfix) with SMTP id C3EEC314 for ; Tue, 7 Jun 2005 13:38:10 +0000 (GMT) From: "diarmuid ryan" To: Subject: mod_perl app fails to load after browsing several pages Date: Tue, 7 Jun 2005 14:43:52 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi, I am having trouble with a modperl app i am currently developing. i browse a couple of pages and perform a few actions but after a short time i am getting a blank response from the server, see access log below, which indicates nothing in the bytes returned part. no errors show in the error logs. this is happening to me both with apache 1.3/modperl 1 and apache 2/mod perl 2. but it happens on various different pages, not any one in particular. so my guess is that it is the start script that hasa problem. any help in trying to troublshoot this would be most helpful. thanks in advance diarmuid apache access log ============================================================================ ===================== 192.168.0.2 - - [07/Jun/2005:14:37:49 +0100] "GET /perl/schoolweb.cgi?action=ManageNews HTTP/1.1" 200 - ============================================================================ ================= script =================================================== #!/usr/bin/perl -w use CGI; use CGI::Carp qw(fatalsToBrowser); use strict; use lib '/srv/www/admin.schoolweb.ie/perl'; use SchoolWeb::Base; $CGI::POST_MAX = 1024 * 1500; srand; BEGIN { my $q = new CGI; my $action = 'SchoolWeb::Actions::' . ($q->param('action') || 'Index'); eval "use $action"; $action->new(); }