From owner-freebsd-questions@FreeBSD.ORG Fri Jan 13 09:10:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF75616A41F for ; Fri, 13 Jan 2006 09:10:07 +0000 (GMT) (envelope-from gandalf@messias.qhigh.com) Received: from smtp.enternet.hu (smtp.enternet.hu [62.112.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FC9A43D49 for ; Fri, 13 Jan 2006 09:10:07 +0000 (GMT) (envelope-from gandalf@messias.qhigh.com) Received: from [83.216.45.176] (helo=[172.16.0.26]) by smtp.enternet.hu with esmtpa (Exim 4) id 1ExKwd-0005Bz-R2; Fri, 13 Jan 2006 10:10:04 +0100 Message-ID: <43C76E56.9040306@messias.qhigh.com> Date: Fri, 13 Jan 2006 10:09:42 +0100 From: gandalf User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Andrew L. Gould" , freebsd-questions@freebsd.org References: <20060113030322.5939bae3@grokwell.org> In-Reply-To: <20060113030322.5939bae3@grokwell.org> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: php5 and apache2? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jan 2006 09:10:08 -0000 Andrew L. Gould wrote: >I just finished upgrading via portupgrade and found that I now have >both apache13 and apache2 installed. Upon examination of the php5 port, I've found >that the "WITH_APACHE2=YES" option is no longer available. > >I'd like to stick with apache2 since I had everything working nicely >(php5, webdav, ssl, etc). > >Any advice? > > I had the same problem before. I suppose you used portupgrade to install binary packages, right? The php5 package depends on apache13, this is why portupgrade installed apache13. You should deinstall php5 and apache13. Then refresh your ports tree. Finally, reinstall php5 from the ports: cd /usr/ports/lang/php5 make make install cd /usr/ports/lang/php5-extensions make make install This will detect your apache2 installation and will compile with apache2. Best, Les