From owner-freebsd-apache@FreeBSD.ORG Tue Feb 1 11:04:52 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 1AE8B16A4CE for ; Tue, 1 Feb 2005 11:04:52 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id A183443D3F for ; Tue, 1 Feb 2005 11:04:51 +0000 (GMT) (envelope-from gert.cuykens@gmail.com) Received: by rproxy.gmail.com with SMTP id f1so999960rne for ; Tue, 01 Feb 2005 03:04:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=H18m+G40giuw7V1FFhSY6bCILUfoclUQA+roxh8OdQpjX1yKg3UfDQShP3GX/r6r+wuAtdllwBmmqckLjQne2diGJP9L/L6nyiaAYn3kUw6qOJnyjitLTv/7pCJMT6rLuNZwu3JCbl4JIl5Kq6e9nA9e8AmwlOjsAQ36SQLVAuo= Received: by 10.38.59.4 with SMTP id h4mr52012rna; Tue, 01 Feb 2005 03:04:51 -0800 (PST) Received: by 10.38.74.23 with HTTP; Tue, 1 Feb 2005 03:04:51 -0800 (PST) Message-ID: Date: Tue, 1 Feb 2005 12:04:51 +0100 From: Gert Cuykens To: freebsd-apache@freebsd.org In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: Subject: Re: AddModule mod_php5.c X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gert Cuykens List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Feb 2005 11:04:52 -0000 On Tue, 1 Feb 2005 11:44:21 +0100, Gert Cuykens wrote: > me becomming a bit nuts, how do you make php 5 work on apache 2 ? > > LoadModule php5_module libexec/apache2/libphp5.so > AddModule mod_php5.c > > 7rxI# apachectl restart > Syntax error on line 109 of /usr/local/etc/apache2/httpd.conf: > Invalid command 'AddModule', perhaps mis-spelled or defined by a > module not included in the server configuration > 7rxI# > ok it works now and i have no idea why lol except for this message The $cfg['PmaAbsoluteUri'] directive MUST be set in your configuration file! The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results. How do you fix that ?