From owner-freebsd-database@FreeBSD.ORG Mon Jul 16 18:50:09 2007 Return-Path: X-Original-To: freebsd-database@freebsd.org Delivered-To: freebsd-database@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D14816A411 for ; Mon, 16 Jul 2007 18:50:09 +0000 (UTC) (envelope-from shaunc@crye-leike.com) Received: from mx.crye-leike.com (mx.crye-leike.com [208.62.148.9]) by mx1.freebsd.org (Postfix) with ESMTP id 0DC4513C4B6 for ; Mon, 16 Jul 2007 18:50:08 +0000 (UTC) (envelope-from shaunc@crye-leike.com) Received: from mail.crye-leike.com (local.mail [10.62.148.196]) by mx.crye-leike.com (8.13.8/8.13.8) with ESMTP id l6GI27jw009106; Mon, 16 Jul 2007 13:02:07 -0500 Received: from [172.16.30.163] (qh_6696 [172.16.30.163] (may be forged)) by mail.crye-leike.com (8.13.6/8.13.6) with ESMTP id l6GI25nX021982; Mon, 16 Jul 2007 13:02:05 -0500 Date: Mon, 16 Jul 2007 13:00:54 -0500 From: Shaun Cummiskey To: "Joseph Mays" In-Reply-To: <035801c7c7cd$8e8dcfb0$b12118d8@engineering01> References: <035801c7c7cd$8e8dcfb0$b12118d8@engineering01> Message-Id: <20070716125538.25BB.SHAUNC@crye-leike.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.31 [en] X-SA-Status: 2 X-Scanned-By: MIMEDefang 2.58 on 10.62.148.9 Cc: freebsd-database@freebsd.org Subject: Re: PHP5/MySQL problem X-BeenThere: freebsd-database@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Database use and development under FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jul 2007 18:50:09 -0000 On Mon, 16 Jul 2007 13:20:07 -0400 "Joseph Mays" wrote: > You can examine the php setup at http://geekfleet.tai-gear.com/phpinfo.php It doesn't appear that your installation of PHP was compiled with MySQL support. If you go down to the MySQL section of the phpinfo output, the value for MYSQL_MODULE_TYPE should be either "builtin" or "external." IIRC, PHP will build with its own native MySQL support by default; specifying --disable-all at config time overrode that option. I would suggest appending --with-mysql --with-mysqli to PHP's configure command, and recompiling. hth