From owner-freebsd-apache@FreeBSD.ORG Sun Mar 20 13:54:24 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F0E616A4CE for ; Sun, 20 Mar 2005 13:54:24 +0000 (GMT) Received: from mail.yellowspace.net (mail.yellowspace.net [80.190.200.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59EDE43D1F for ; Sun, 20 Mar 2005 13:54:23 +0000 (GMT) (envelope-from lopez.on.the.lists@yellowspace.net) Received: from [192.168.1.201] ([84.153.127.229]) (AUTH: LOGIN lopez.on.the.lists@yellowspace.net) by mail.yellowspace.net with esmtp; Sun, 20 Mar 2005 14:54:21 +0100 In-Reply-To: <3.0.1.32.20050319124237.00aa3268@pop.redshift.com> References: <3.0.1.32.20050319124237.00aa3268@pop.redshift.com> Mime-Version: 1.0 (Apple Message framework v619.2) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <492ee5b059cb94091b734985f6f8246d@yellowspace.net> Content-Transfer-Encoding: 7bit From: Lorenzo Perone Date: Sun, 20 Mar 2005 14:54:15 +0100 To: freebsd-apache@freebsd.org X-Mailer: Apple Mail (2.619.2) Subject: Re: mmcache problem X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2005 13:54:24 -0000 Hi, I've had this problem before, actually with apache 1 and 2. Did you verify if the the php session module (session.so) is installed and loaded? Have a look at /usr/local/php/extensions.ini and make sure there is a extension=session.so if not, you may have to install it depending on what you did until now. If you installed php via the port lang/php4, it might be just enough to cd /usr/ports/www/php4-session and make install. The module ports usually also add the extension= line in /usr/local/php/extensions.ini. However, always verify that file, as the ports tend to mess it up with multiple entries when you do reinstalls. If you will use the extensions.ini to load mmcache, also take care that its line has to be _before_ session.so's. It _may_ be possible to do without the session module, possibly with a mmcache.sessions="0" or similar. I did not try this. Also, consider trying eAccelerator 0.92a, which is the successor of mmcache, particularly with php 4.3.10. I've had some weird situations with mmcache and php 4.3.10. I've not had the time yet to verify them thoroughly, but it seems to me that php 4.3.10 exposes some bugs in mmcache that 4.3.9 did not expose that roughly (apache core dumps), some of which seem to be resolved in eaccelerator (at least for what i can see). Hope this helps, Lorenzo On 19.03.2005, at 21:42, ray@redshift.com wrote: > Hi List, > > I'm having problems getting mmcache to work with Apache 1.3.33 & > PHP4.3.10. I've tried building mmcache from source and also building it > from /usr/ports/www > > Get the following error message in my apache logs no matter what I > do: > > /libexec/ld-elf.so.1: /usr/local/lib/php/20020429/mmcache.so: Undefined > symbol "php_session_register_module" > > I've tried compiling apache with full module support, as well as > stripped down with just mod_so support. I've tried getting mmcache to > work with PHP4 loaded as a DSO and also with PHP4 statically compiled > into apache. Still always the same error message. I've tried > everything I can think of. I have tried loading mmcache.so directly > via a LoadModule statement in httpd.conf as well as allowing PHP to > load it via the PHP.INI file. I get the error message above when I run > PHP from the command line and also when Apache tries to run. > > My php.ini file has the following in it: > > [mmcache] > zend_extension="/usr/local/lib/php/20020429/mmcache.so" > mmcache.shm_size="16" > mmcache.cache_dir="/tmp/mmcache" > mmcache.enable="1" > mmcache.optimizer="1" > mmcache.check_mtime="1" > mmcache.debug="0" > mmcache.filter="" > mmcache.shm_max="0" > mmcache.shm_ttl="0" > mmcache.shm_prune_period="0" > mmcache.shm_only="0" > mmcache.compress="1" > mmcache.keys="shm_and_disk" > mmcache.sessions="shm_and_disk" > mmcache.content="shm_and_disk" > > I'm at a loss. I can't seem to get it working. The only information > on the web I can find shows mmcache being installed no problem and I > don't seem to be able to find much information regarding any of the > error messages, etc. > > Does anyone have any ideas and/or has anyone gotten it to work with > Apache 1.3.33 and PHP4.3.10 - either with PHP as a module or when > statically compiled? > > Thanks! > > Ray > > _______________________________________________ > freebsd-apache@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-apache > To unsubscribe, send any mail to > "freebsd-apache-unsubscribe@freebsd.org" From owner-freebsd-apache@FreeBSD.ORG Sun Mar 20 22:34:05 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4716016A4CE for ; Sun, 20 Mar 2005 22:34:05 +0000 (GMT) Received: from outgoing.redshift.com (outgoing.redshift.com [207.177.231.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41D4543D5D for ; Sun, 20 Mar 2005 22:34:04 +0000 (GMT) (envelope-from ray@redshift.com) Received: from workstation (216-228-19-21.dsl.redshift.com [216.228.19.21]) by outgoing.redshift.com (Postfix) with SMTP id 7E9C097016; Sun, 20 Mar 2005 14:34:03 -0800 (PST) Message-Id: <3.0.1.32.20050320143411.00a5f3f8@pop.redshift.com> X-Mailer: na X-Sender: redshift.com Date: Sun, 20 Mar 2005 14:34:11 -0800 To: Lorenzo Perone , freebsd-apache@freebsd.org From: ray@redshift.com In-Reply-To: <492ee5b059cb94091b734985f6f8246d@yellowspace.net> References: <3.0.1.32.20050319124237.00aa3268@pop.redshift.com> <3.0.1.32.20050319124237.00aa3268@pop.redshift.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Subject: Re: mmcache problem X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2005 22:34:05 -0000 Hi Lorenzo, Thanks for the thorough run down. I don't think I had session.so running, so that may have been the problem. I compiled PHP4.3.10 from source and configured it with very limited support (e.g --disable-all). Same with Apache - so it probably wasn't in there. I ended up switching to APC and was able to get it working with much fewer headaches. It also only required a couple of modules in order to allow the install program to run. For now I think APC is fitting the bill. Thanks again! Ray At 02:54 PM 3/20/2005 +0100, Lorenzo Perone wrote: | Hi, I've had this problem before, actually with apache 1 and 2. | | Did you verify if the the php session module (session.so) | is installed and loaded? | | Have a look at | /usr/local/php/extensions.ini and make sure there is a | extension=session.so | if not, you may have to install it depending on what you did | until now. | | If you installed php via the port lang/php4, it might be just | enough to cd /usr/ports/www/php4-session and make install. | The module ports usually also add the extension= line in | /usr/local/php/extensions.ini. However, always verify that file, | as the ports tend to mess it up with multiple entries when you do | reinstalls. | | If you will use the extensions.ini to load mmcache, | also take care that its line has to be _before_ session.so's. | | It _may_ be possible to do without the session module, possibly with a | mmcache.sessions="0" or similar. I did not try this. | | Also, consider trying eAccelerator 0.92a, which is the successor | of mmcache, particularly with php 4.3.10. | I've had some weird situations with mmcache and php 4.3.10. | I've not had the time yet to verify them thoroughly, but it seems to | me that php 4.3.10 exposes some bugs in mmcache that 4.3.9 did not | expose that roughly (apache core dumps), some of which seem to be | resolved in eaccelerator (at least for what i can see). | | | Hope this helps, | | Lorenzo | | | On 19.03.2005, at 21:42, ray@redshift.com wrote: | | > Hi List, | > | > I'm having problems getting mmcache to work with Apache 1.3.33 & | > PHP4.3.10. I've tried building mmcache from source and also building it | > from /usr/ports/www | > | > Get the following error message in my apache logs no matter what I | > do: | > | > /libexec/ld-elf.so.1: /usr/local/lib/php/20020429/mmcache.so: Undefined | > symbol "php_session_register_module" | > | > I've tried compiling apache with full module support, as well as | > stripped down with just mod_so support. I've tried getting mmcache to | > work with PHP4 loaded as a DSO and also with PHP4 statically compiled | > into apache. Still always the same error message. I've tried | > everything I can think of. I have tried loading mmcache.so directly | > via a LoadModule statement in httpd.conf as well as allowing PHP to | > load it via the PHP.INI file. I get the error message above when I run | > PHP from the command line and also when Apache tries to run. | > | > My php.ini file has the following in it: | > | > [mmcache] | > zend_extension="/usr/local/lib/php/20020429/mmcache.so" | > mmcache.shm_size="16" | > mmcache.cache_dir="/tmp/mmcache" | > mmcache.enable="1" | > mmcache.optimizer="1" | > mmcache.check_mtime="1" | > mmcache.debug="0" | > mmcache.filter="" | > mmcache.shm_max="0" | > mmcache.shm_ttl="0" | > mmcache.shm_prune_period="0" | > mmcache.shm_only="0" | > mmcache.compress="1" | > mmcache.keys="shm_and_disk" | > mmcache.sessions="shm_and_disk" | > mmcache.content="shm_and_disk" | > | > I'm at a loss. I can't seem to get it working. The only information | > on the web I can find shows mmcache being installed no problem and I | > don't seem to be able to find much information regarding any of the | > error messages, etc. | > | > Does anyone have any ideas and/or has anyone gotten it to work with | > Apache 1.3.33 and PHP4.3.10 - either with PHP as a module or when | > statically compiled? | > | > Thanks! | > | > Ray | > | > _______________________________________________ | > freebsd-apache@freebsd.org mailing list | > http://lists.freebsd.org/mailman/listinfo/freebsd-apache | > To unsubscribe, send any mail to | > "freebsd-apache-unsubscribe@freebsd.org" | | | From owner-freebsd-apache@FreeBSD.ORG Sun Mar 20 22:58:22 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BADC316A4CE for ; Sun, 20 Mar 2005 22:58:22 +0000 (GMT) Received: from mail.yellowspace.net (mail.yellowspace.net [80.190.200.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11AE143D1F for ; Sun, 20 Mar 2005 22:58:22 +0000 (GMT) (envelope-from lopez.on.the.lists@yellowspace.net) Received: from [192.168.1.201] ([84.153.127.229]) (AUTH: LOGIN lopez.on.the.lists@yellowspace.net) by mail.yellowspace.net with esmtp; Sun, 20 Mar 2005 23:58:20 +0100 Mime-Version: 1.0 (Apple Message framework v619.2) In-Reply-To: <492ee5b059cb94091b734985f6f8246d@yellowspace.net> References: <3.0.1.32.20050319124237.00aa3268@pop.redshift.com> <492ee5b059cb94091b734985f6f8246d@yellowspace.net> X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <9c10c032b93c5dfa498b881540cd1c0a@yellowspace.net> Content-Transfer-Encoding: 7bit From: Lorenzo Perone Date: Sun, 20 Mar 2005 23:58:19 +0100 To: freebsd-apache@freebsd.org X-Mailer: Apple Mail (2.619.2) Subject: Re: mmcache problem X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Mar 2005 22:58:22 -0000 Sorry all, I just noticed I posted the wrong order: On 20.03.2005, at 14:54, Lorenzo Perone wrote: > If you will use the extensions.ini to load mmcache, > also take care that its line has to be _before_ session.so's. of course it's the contrary, first, session.so then, mmcache.so :) Lorenzo From owner-freebsd-apache@FreeBSD.ORG Mon Mar 21 11:00:38 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0560216A4CE for ; Mon, 21 Mar 2005 11:00:37 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B52C943D55 for ; Mon, 21 Mar 2005 11:00:37 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j2LB0bX0012754 for ; Mon, 21 Mar 2005 11:00:37 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j2LB0a4Y012748 for apache@freebsd.org; Mon, 21 Mar 2005 11:00:36 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 21 Mar 2005 11:00:36 GMT Message-Id: <200503211100.j2LB0a4Y012748@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: apache@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2005 11:00:38 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2005/02/11] ports/77391 apache Apache 2.x Modules depending on wrong Apa o [2005/03/05] ports/78451 apache www/mod_perl not compilled 2 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/12/09] ports/74907 apache [PATCH] www/mod_perl: cleanups 1 problem total. From owner-freebsd-apache@FreeBSD.ORG Tue Mar 22 04:13:26 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7419E16A4CE for ; Tue, 22 Mar 2005 04:13:26 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id C843B43D1D for ; Tue, 22 Mar 2005 04:13:25 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BDF9351ABE; Mon, 21 Mar 2005 20:13:24 -0800 (PST) Date: Mon, 21 Mar 2005 20:13:24 -0800 From: Kris Kennaway To: apache@FreeBSD.org Message-ID: <20050322041324.GP16132@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="eQRovl/b3gD6H26W" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: [ports-i386@pointyhat.freebsd.org: mod_auth_external-2.2.9 failed on i386 5] X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2005 04:13:26 -0000 --eQRovl/b3gD6H26W Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. See http://pointyhat.freebsd.org for the full log. Thanks, Kris ----- Forwarded message from User Ports-i386 ----- Delivered-To: kris@freebsd.org Date: Wed, 9 Mar 2005 01:59:58 GMT From: User Ports-i386 To: krion@FreeBSD.org, kris@FreeBSD.org Subject: mod_auth_external-2.2.9 failed on i386 5 X-Bogosity: No, tests=3Dbogofilter, spamicity=3D0.000000, version=3D0.92.8 building mod_auth_external-2.2.9 on gohan32.freebsd.org in directory /x/tmp/5/chroot/54328 maintained by: apache@FreeBSD.org port directory: /usr/ports/www/mod_auth_external2 build started at Wed Mar 9 01:58:17 UTC 2005 FETCH_DEPENDS=3D PATCH_DEPENDS=3D EXTRACT_DEPENDS=3D BUILD_DEPENDS=3Dapache-2.0.53.tbz expat-1.95.8.tbz libiconv-1.9.2_1.tbz per= l-5.8.6_2.tbz RUN_DEPENDS=3Dapache-2.0.53.tbz expat-1.95.8.tbz libiconv-1.9.2_1.tbz perl-= 5.8.6_2.tbz add_pkg =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Vulnerability check disabled =3D> mod_auth_external-2.2.9.tar.gz doesn't seem to exist in /tmp/distfiles= /apache. =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/apache/. fetch: ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache/mod_= auth_external-2.2.9.tar.gz: File unavailable (e.g., file not found, no acce= ss) =3D> Attempting to fetch from ftp://pointyhat.freebsd.org/pub/FreeBSD/distf= iles/apache/. fetch: ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache/mod_auth_ex= ternal-2.2.9.tar.gz: File unavailable (e.g., file not found, no access) =3D> Attempting to fetch from http://www.unixpapa.com/software/. fetch: http://www.unixpapa.com/software/mod_auth_external-2.2.9.tar.gz: No = address record =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/apache/. fetch: ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache/mod_= auth_external-2.2.9.tar.gz: File unavailable (e.g., file not found, no acce= ss) =3D> Attempting to fetch from ftp://pointyhat.freebsd.org/pub/FreeBSD/distf= iles/apache/. fetch: ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache/mod_auth_ex= ternal-2.2.9.tar.gz: File unavailable (e.g., file not found, no access) =3D> Couldn't fetch it - please try to retrieve this =3D> port manually into /tmp/distfiles/apache and try again. *** Error code 1 Stop in /a/ports/www/mod_auth_external2. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D build ended at Wed Mar 9 01:59:55 UTC 2005 ----- End forwarded message ----- --eQRovl/b3gD6H26W Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCP5tkWry0BWjoQKURAqfEAJ93JxQ1Xfp/byC5Ettb6MZ7Ur0HkgCg8SzK hU4VeXSQJjocB0Dq3+yrpsg= =XaC0 -----END PGP SIGNATURE----- --eQRovl/b3gD6H26W-- From owner-freebsd-apache@FreeBSD.ORG Tue Mar 22 04:13:33 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FABC16A4CE for ; Tue, 22 Mar 2005 04:13:33 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id E939743D54 for ; Tue, 22 Mar 2005 04:13:32 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2229B51EEC; Mon, 21 Mar 2005 20:13:32 -0800 (PST) Date: Mon, 21 Mar 2005 20:13:32 -0800 From: Kris Kennaway To: apache@FreeBSD.org Message-ID: <20050322041331.GQ16132@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hqGLDPnWUqy9q1ws" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: [ports-i386@pointyhat.freebsd.org: mod_log_config-st-1.0 failed on i386 5] X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2005 04:13:33 -0000 --hqGLDPnWUqy9q1ws Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. See http://pointyhat.freebsd.org for the full log. Thanks, Kris ----- Forwarded message from User Ports-i386 ----- Delivered-To: kris@freebsd.org Date: Wed, 9 Mar 2005 02:02:11 GMT From: User Ports-i386 To: krion@FreeBSD.org, kris@FreeBSD.org Subject: mod_log_config-st-1.0 failed on i386 5 X-Bogosity: No, tests=3Dbogofilter, spamicity=3D0.000000, version=3D0.92.8 building mod_log_config-st-1.0 on gohan14.freebsd.org in directory /x/tmp/5/chroot/28948 maintained by: apache@FreeBSD.org port directory: /usr/ports/www/mod_log_config-st build started at Wed Mar 9 02:00:26 UTC 2005 FETCH_DEPENDS=3D PATCH_DEPENDS=3D EXTRACT_DEPENDS=3D BUILD_DEPENDS=3Dapache-2.0.53.tbz expat-1.95.8.tbz libiconv-1.9.2_1.tbz per= l-5.8.6_2.tbz RUN_DEPENDS=3Dapache-2.0.53.tbz expat-1.95.8.tbz libiconv-1.9.2_1.tbz perl-= 5.8.6_2.tbz add_pkg =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Vulnerability check disabled =3D> mod_log_config-st-1.0.tar.gz doesn't seem to exist in /tmp/distfiles/a= pache2. =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/apache2/. fetch: ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache2/mod= _log_config-st-1.0.tar.gz: File unavailable (e.g., file not found, no acces= s) =3D> Attempting to fetch from ftp://pointyhat.freebsd.org/pub/FreeBSD/distf= iles/apache2/. fetch: ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache2/mod_log_co= nfig-st-1.0.tar.gz: File unavailable (e.g., file not found, no access) =3D> Attempting to fetch from http://sheepkiller.nerim.net/ports/mod_log_co= nfig-st/. fetch: http://sheepkiller.nerim.net/ports/mod_log_config-st/mod_log_config-= st-1.0.tar.gz: No address record =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/apache2/. fetch: ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache2/mod= _log_config-st-1.0.tar.gz: File unavailable (e.g., file not found, no acces= s) =3D> Attempting to fetch from ftp://pointyhat.freebsd.org/pub/FreeBSD/distf= iles/apache2/. fetch: ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache2/mod_log_co= nfig-st-1.0.tar.gz: File unavailable (e.g., file not found, no access) =3D> Couldn't fetch it - please try to retrieve this =3D> port manually into /tmp/distfiles/apache2 and try again. *** Error code 1 Stop in /a/ports/www/mod_log_config-st. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D build ended at Wed Mar 9 02:02:04 UTC 2005 ----- End forwarded message ----- --hqGLDPnWUqy9q1ws Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCP5trWry0BWjoQKURAkQ6AKCq2+mu2rBe7Ax3OJfcQi25RP0/DwCg14Lq ew5WGj0IyhIEcSDHqD2uym8= =+qsD -----END PGP SIGNATURE----- --hqGLDPnWUqy9q1ws-- From owner-freebsd-apache@FreeBSD.ORG Tue Mar 22 13:29:09 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2128F16A4CE for ; Tue, 22 Mar 2005 13:29:09 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [193.30.224.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8442843D53 for ; Tue, 22 Mar 2005 13:29:08 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from [192.168.8.51] (abeille.free.absolight.net [82.66.245.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 42E43A2402C; Tue, 22 Mar 2005 14:29:07 +0100 (CET) Date: Tue, 22 Mar 2005 14:29:14 +0100 From: Mathieu Arnold To: Kris Kennaway , apache@FreeBSD.org Message-ID: In-Reply-To: <20050322041324.GP16132@xor.obsecurity.org> References: <20050322041324.GP16132@xor.obsecurity.org> X-Mailer: Mulberry/4.0.0a5 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: [ports-i386@pointyhat.freebsd.org: mod_auth_external-2.2.9 failed on i386 5] X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2005 13:29:09 -0000 +-le 21/03/2005 20:13 -0800, Kris Kennaway a dit : | FYI; can you please investigate and/or report to the developers? If | you are already aware of this problem but do not yet have a fix, | please mark the port BROKEN in the appropriate case, so that users do | not unexpectedly encounter it. | | See http://pointyhat.freebsd.org for the full log. I just tried, and got it, must be some strange problem on the build machine. Do you want me to put it up in my public_distfiles ? | ----- Forwarded message from User Ports-i386 | ----- | | Delivered-To: kris@freebsd.org | Date: Wed, 9 Mar 2005 01:59:58 GMT | From: User Ports-i386 | To: krion@FreeBSD.org, kris@FreeBSD.org | Subject: mod_auth_external-2.2.9 failed on i386 5 | X-Bogosity: No, tests=bogofilter, spamicity=0.000000, version=0.92.8 | | building mod_auth_external-2.2.9 on gohan32.freebsd.org | in directory /x/tmp/5/chroot/54328 | maintained by: apache@FreeBSD.org | port directory: /usr/ports/www/mod_auth_external2 | build started at Wed Mar 9 01:58:17 UTC 2005 | FETCH_DEPENDS= | PATCH_DEPENDS= | EXTRACT_DEPENDS= | BUILD_DEPENDS=apache-2.0.53.tbz expat-1.95.8.tbz libiconv-1.9.2_1.tbz | perl-5.8.6_2.tbz RUN_DEPENDS=apache-2.0.53.tbz expat-1.95.8.tbz | libiconv-1.9.2_1.tbz perl-5.8.6_2.tbz add_pkg | ================================================================ | ======================================== | ===> Vulnerability check disabled | => mod_auth_external-2.2.9.tar.gz doesn't seem to exist in | /tmp/distfiles/apache. => Attempting to fetch from | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache/. fetch: | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache/mod_auth_ex | ternal-2.2.9.tar.gz: File unavailable (e.g., file not found, no access) => | Attempting to fetch from | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache/. fetch: | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache/mod_auth_external- | 2.2.9.tar.gz: File unavailable (e.g., file not found, no access) => | Attempting to fetch from http://www.unixpapa.com/software/. | fetch: http://www.unixpapa.com/software/mod_auth_external-2.2.9.tar.gz: No | address record => Attempting to fetch from | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache/. fetch: | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache/mod_auth_ex | ternal-2.2.9.tar.gz: File unavailable (e.g., file not found, no access) => | Attempting to fetch from | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache/. fetch: | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache/mod_auth_external- | 2.2.9.tar.gz: File unavailable (e.g., file not found, no access) => | Couldn't fetch it - please try to retrieve this | => port manually into /tmp/distfiles/apache and try again. | *** Error code 1 | | Stop in /a/ports/www/mod_auth_external2. | ================================================================ | build ended at Wed Mar 9 01:59:55 UTC 2005 | | ----- End forwarded message ----- -- Mathieu Arnold From owner-freebsd-apache@FreeBSD.ORG Tue Mar 22 13:30:12 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 016BE16A4CE for ; Tue, 22 Mar 2005 13:30:12 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [193.30.224.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7759A43D39 for ; Tue, 22 Mar 2005 13:30:11 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from [192.168.8.51] (abeille.free.absolight.net [82.66.245.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id B2E34A2402A; Tue, 22 Mar 2005 14:30:10 +0100 (CET) Date: Tue, 22 Mar 2005 14:30:18 +0100 From: Mathieu Arnold To: Kris Kennaway , apache@FreeBSD.org Message-ID: <341823B282939FEFF2C33B4F@[192.168.8.51]> In-Reply-To: <20050322041331.GQ16132@xor.obsecurity.org> References: <20050322041331.GQ16132@xor.obsecurity.org> X-Mailer: Mulberry/4.0.0a5 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: [ports-i386@pointyhat.freebsd.org: mod_log_config-st-1.0 failed on i386 5] X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2005 13:30:12 -0000 +-le 21/03/2005 20:13 -0800, Kris Kennaway a dit : | FYI; can you please investigate and/or report to the developers? If | you are already aware of this problem but do not yet have a fix, | please mark the port BROKEN in the appropriate case, so that users do | not unexpectedly encounter it. | | See http://pointyhat.freebsd.org for the full log. Same with this one, fetched without any problem. | ----- Forwarded message from User Ports-i386 | ----- | | Delivered-To: kris@freebsd.org | Date: Wed, 9 Mar 2005 02:02:11 GMT | From: User Ports-i386 | To: krion@FreeBSD.org, kris@FreeBSD.org | Subject: mod_log_config-st-1.0 failed on i386 5 | X-Bogosity: No, tests=bogofilter, spamicity=0.000000, version=0.92.8 | | building mod_log_config-st-1.0 on gohan14.freebsd.org | in directory /x/tmp/5/chroot/28948 | maintained by: apache@FreeBSD.org | port directory: /usr/ports/www/mod_log_config-st | build started at Wed Mar 9 02:00:26 UTC 2005 | FETCH_DEPENDS= | PATCH_DEPENDS= | EXTRACT_DEPENDS= | BUILD_DEPENDS=apache-2.0.53.tbz expat-1.95.8.tbz libiconv-1.9.2_1.tbz | perl-5.8.6_2.tbz RUN_DEPENDS=apache-2.0.53.tbz expat-1.95.8.tbz | libiconv-1.9.2_1.tbz perl-5.8.6_2.tbz add_pkg | ================================================================ | ======================================== | ===> Vulnerability check disabled | => mod_log_config-st-1.0.tar.gz doesn't seem to exist in | /tmp/distfiles/apache2. => Attempting to fetch from | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache2/. fetch: | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache2/mod_log_co | nfig-st-1.0.tar.gz: File unavailable (e.g., file not found, no access) => | Attempting to fetch from | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache2/. fetch: | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache2/mod_log_config-st | -1.0.tar.gz: File unavailable (e.g., file not found, no access) => | Attempting to fetch from | http://sheepkiller.nerim.net/ports/mod_log_config-st/. fetch: | http://sheepkiller.nerim.net/ports/mod_log_config-st/mod_log_config-st-1.0. | tar.gz: No address record => Attempting to fetch from | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache2/. fetch: | ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/apache2/mod_log_co | nfig-st-1.0.tar.gz: File unavailable (e.g., file not found, no access) => | Attempting to fetch from | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache2/. fetch: | ftp://pointyhat.freebsd.org/pub/FreeBSD/distfiles/apache2/mod_log_config-st | -1.0.tar.gz: File unavailable (e.g., file not found, no access) => Couldn't | fetch it - please try to retrieve this | => port manually into /tmp/distfiles/apache2 and try again. | *** Error code 1 | | Stop in /a/ports/www/mod_log_config-st. | ================================================================ | build ended at Wed Mar 9 02:02:04 UTC 2005 | | ----- End forwarded message ----- -- Mathieu Arnold From owner-freebsd-apache@FreeBSD.ORG Tue Mar 22 17:21:11 2005 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC72B16A4CF; Tue, 22 Mar 2005 17:21:11 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6651143D53; Tue, 22 Mar 2005 17:21:11 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D7457512C8; Tue, 22 Mar 2005 09:21:10 -0800 (PST) Date: Tue, 22 Mar 2005 09:21:10 -0800 From: Kris Kennaway To: Mathieu Arnold Message-ID: <20050322172110.GE68269@xor.obsecurity.org> References: <20050322041324.GP16132@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qFgkTsE6LiHkLPZw" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: apache@FreeBSD.org cc: Kris Kennaway Subject: Re: [ports-i386@pointyhat.freebsd.org: mod_auth_external-2.2.9 failed on i386 5] X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Mar 2005 17:21:12 -0000 --qFgkTsE6LiHkLPZw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 22, 2005 at 02:29:14PM +0100, Mathieu Arnold wrote: > +-le 21/03/2005 20:13 -0800, Kris Kennaway a dit : > | FYI; can you please investigate and/or report to the developers? If > | you are already aware of this problem but do not yet have a fix, > | please mark the port BROKEN in the appropriate case, so that users do > | not unexpectedly encounter it. > |=20 > | See http://pointyhat.freebsd.org for the full log. >=20 > I just tried, and got it, must be some strange problem on the build machi= ne. More likely: the DNS server for that master site was down. > Do you want me to put it up in my public_distfiles ? Either that or add another external mirror. Kris --qFgkTsE6LiHkLPZw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCQFQGWry0BWjoQKURArvDAKCU2W1QzYmg4x9aDoDGwV8EEHlB9ACguqgo gRRDN6bs7bWAovhQhMg8Pa8= =Dfqh -----END PGP SIGNATURE----- --qFgkTsE6LiHkLPZw--