From owner-freebsd-questions@FreeBSD.ORG Mon Feb 16 15:46:29 2004 Return-Path: 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 2D45D16A4CE for ; Mon, 16 Feb 2004 15:46:29 -0800 (PST) Received: from may.priocom.com (may.priocom.com [213.156.65.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E624943D31 for ; Mon, 16 Feb 2004 15:46:28 -0800 (PST) (envelope-from mirya@ukrpost.net) Received: from dialup-147.87.sitel.com.ua ([217.27.147.87]) by may.priocom.com with asmtp (Exim 4.24) id 1AssOj-0000S5-BC for freebsd-questions@freebsd.org; Tue, 17 Feb 2004 01:43:36 +0200 Date: Tue, 17 Feb 2004 01:49:23 +0200 From: Kyryll A Mirnenko X-Mailer: The Bat! (v1.61) Personal Organization: X-Priority: 3 (Normal) Message-ID: <151-2005248.20040217014923@ukrpost.net> To: "freebsd-questions-request@freebsd.org" In-Reply-To: <20040216200051.766A016A4E0@hub.freebsd.org> References: <20040216200051.766A016A4E0@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: phpMyAdmin not loading MySQL extensions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Kyryll A Mirnenko List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Feb 2004 23:46:29 -0000 Hi Tweax, That's not PHPMyAdmin's problem, your PHP can't find dynamic module (and phpMyAdmin seems to dl() PHP's mysql extension). If you've find mysql.so (if have something like mysql.so.4, just link it to mysql.so to make PHP happy: ln -s mysql.so.4 mysql.so ), try to put it into dynamic modules database: ldconfig -m /path/to/mysql/module (often ldconfig -m /usr/local/mysql/lib). Note this directory should be owned by root (chown root:wheel /usr/local/mysql/lib). To do it at boottime, make *.sh script in /usr/local/etc/rc.d & put "ldconfig..." there. That's the thing mysql-client standart package installer does. Best regards, Kyryll mailto:mirya@ukrpost.net