Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 41827 invoked from network); 2 Mar 2007 05:31:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Mar 2007 05:31:18 -0000 Received: (qmail 12289 invoked by uid 500); 2 Mar 2007 05:31:21 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 12062 invoked by uid 500); 2 Mar 2007 05:31:19 -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 12051 invoked by uid 99); 2 Mar 2007 05:31:19 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Mar 2007 21:31:19 -0800 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 [210.193.32.133] (HELO mail.extracktor.com) (210.193.32.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Mar 2007 21:31:07 -0800 Received: (qmail 21273 invoked from network); 2 Mar 2007 05:22:17 -0000 Received: from 60.210-193-15.adsl.qala.com.sg (HELO ?192.168.1.124?) (jhfoo@nexlabs.com@210.193.15.60) by www.nexlabs.com with SMTP; 2 Mar 2007 05:22:17 -0000 Message-ID: <45E7B680.6010605@extracktor.com> Date: Fri, 02 Mar 2007 13:30:40 +0800 From: Foo JH User-Agent: Thunderbird 1.5.0.9 (Windows/20061207) MIME-Version: 1.0 To: Beginner CC: modperl@perl.apache.org Subject: Re: Have I got mod_perl installed? References: <45E5B534.22168.36747B9A@dermot.sciencephoto.com>, <45E63F7D.4000209@extracktor.com> <45E69D70.14948.39FFA240@dermot.sciencephoto.com> In-Reply-To: <45E69D70.14948.39FFA240@dermot.sciencephoto.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org If the signature is on and you don't see it, chances are it's not loaded properly. Beginner wrote: > Lot's of replies, thanx. > > On 1 Mar 2007 at 10:50, Foo JH wrote: > >> To be really sure, turn on the server signature and see what your telnet >> trick gives you. >> >> amend in your http.conf: >> ServerSignature on >> > > ServerSignature is already on: > > httpd.conf:ServerSignature On > > Can we draw any conclusions from this? > > >> Beginner wrote: >> >>> Hi, >>> >>> I am a bit confused. >>> >>> If I do: >>> telnet localhost 80 >>> .... >>> >>> I get: >>> HTTP/1.1 403 Forbidden >>> Date: Wed, 28 Feb 2007 16:53:29 GMT >>> Server: Apache/2.0.52 (Fedora) <- Note no mod_perl here >>> Accept-Ranges: bytes >>> Content-Length: 3931 >>> Connection: close >>> Content-Type: text/html; charset=UTF-8 >>> > ... > > I have a number of handler configured like so: > > > SetHandler perl-script > PerlHandler MY::calendar > Order... > > > These work fine and use the following pragmas; > > package MY::calendar; > > use Apache2::Const qw(OK DECLINED NOT_FOUND); > use APR::Table; > use Apache2::RequestUtil (); > use strict; > use Calendar::Simple; > use Date::Calc qw(Month_to_Text); > use CGI; > use Template; > use warnings; > > $| = 1; > > sub handler { > ... > > The issue with SOAP::Lite is interesting. During the install you get > a list of transports; > > ... > Standalone HTTP server [*] HTTP::Daemon [ yes ] > Apache/mod_perl server [ ] Apache [ no ] > FastCGI server [ ] FCGI [ no ] > POP3 server [ ] MIME::Parser [ no ] > ... > > I'm not sure if the formating will show it here but SOAP::Lite > doesn't see mod_perl installed. However is does install as does > SOAP::Apache so presumbly I can use in the same way I do with my > other modules. > > Still I have the feeling that my installation is not standard and the > mis-match in version is a concern. > > Would any one recommend a course of action? Should I remove the > binary RPMs that my package manager installed and install from > source? > > Thanx, > Dp. > >