Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 78901 invoked from network); 9 Jul 2006 03:40:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Jul 2006 03:39:56 -0000 Received: (qmail 42171 invoked by uid 500); 9 Jul 2006 03:38:12 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 40698 invoked by uid 500); 9 Jul 2006 03:38:06 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 39487 invoked by uid 99); 9 Jul 2006 03:37:59 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Jul 2006 20:37:59 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of hausrath@gmail.com designates 64.233.166.181 as permitted sender) Received: from [64.233.166.181] (HELO py-out-1112.google.com) (64.233.166.181) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Jul 2006 15:39:02 -0700 Received: by py-out-1112.google.com with SMTP id 39so2622900pyu for ; Sat, 08 Jul 2006 15:38:41 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=GqBW0nFRAJtv6eUdOjkdaWXaVbnMPMyIGDEe2viUercHa5ESeYzbLUOyglkclQrg3OcA11Zrbh3slrKutJ8NLmc41Pq8HhWAElvSUNvjw8vFthH9DSCcUZb8b3d1brLpKhwXbN1NI7LV4cVReeO7wu0RA55sAFwppHNAqiY+Bo0= Received: by 10.35.34.18 with SMTP id m18mr3560717pyj; Sat, 08 Jul 2006 15:38:41 -0700 (PDT) Received: by 10.35.37.10 with HTTP; Sat, 8 Jul 2006 15:38:41 -0700 (PDT) Message-ID: <87e3982b0607081538l756b0378wcc0864fe7db09522@mail.gmail.com> Date: Sat, 8 Jul 2006 18:38:41 -0400 From: "Nate Hausrath" To: users@httpd.apache.org In-Reply-To: <1152308317_43918@S2.cableone.net> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_47578_7578936.1152398321215" References: <1152308317_43918@S2.cableone.net> X-Virus-Checked: Checked by ClamAV on apache.org Subject: Re: [users@httpd] ERROR: ap_proxy_is_word, mod_proxy X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_47578_7578936.1152398321215 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Rob, I had a similar issue a few days ago and I finally figured out how to fix it. I basically just recompiled apache2 but enabled proxy from the start, but I installed it to a different directory. For me it was: ./configure --prefix=/place/to/install --enable-mods-shared=most --enable-proxy make make install After it installed, I went to the modules directory of the new installation and copied mod_proxy.so to my existing installation. It was able to restart without a problem then. Hopefully this helps! -Nate On 7/7/06, rsosnowski@cableone.net wrote: > > Using Linux (CentOS 4.2) > > Loaded the mod_proxy and proxy_util modules with the following: > > /usr/local/apache2/bin/apxs -c -i mod_proxy.c > /usr/local/apache2/bin/apxs -c -i -n 'APACHE2' proxy_util.c > > Edited the httpd.conf file by adding: > > LoadModule proxy_module modules/mod_proxy.so > LoadModule APACHE2_module modules/proxy_util.so > > When restart apache with: > > /usr/local/apache2/bin/apachectl restart > > GET THE FOLLOWING ERROR: > Syntax error on line 238 of /usr/local/apache2/conf/httpd.conf: > Cannot load /usr/local/apache2/modules/mod_proxy.so into server: > /usr/local/apache2/modules/mod_proxy.so: undefined symbol: ap_proxy_is_word > > > SUGGESTIONS ON HOW TO RESOLVE, thanks....Rob > > --------------------------------------------------------------------- The > official User-To-User support forum of the Apache HTTP Server Project. See > for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org" from the digest: > users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: > users-help@httpd.apache.org > ------=_Part_47578_7578936.1152398321215 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Rob,

I had a similar issue a few days ago and I finally figured out how to fix it.  I basically just recompiled apache2 but enabled proxy from the start, but I installed it to a different directory.  For me it was:

./configure --prefix=/place/to/install --enable-mods-shared=most --enable-proxy
make
make install

After it installed, I went to the modules directory of the new installation and copied mod_proxy.so to my existing installation.  It was able to restart without a problem then.

Hopefully this helps!

-Nate

On 7/7/06, rsosnowski@cableone.net < rsosnowski@cableone.net> wrote:

Using Linux (CentOS 4.2)

Loaded the mod_proxy and proxy_util modules with the following:

/usr/local/apache2/bin/apxs -c -i mod_proxy.c
/usr/local/apache2/bin/apxs -c -i -n 'APACHE2' proxy_util.c

Edited the httpd.conf file by adding:

LoadModule proxy_module    modules/mod_proxy.so
LoadModule APACHE2_module  modules/proxy_util.so

When restart apache with:

/usr/local/apache2/bin/apachectl restart

GET THE FOLLOWING ERROR:
Syntax error on line 238 of /usr/local/apache2/conf/httpd.conf:
Cannot load /usr/local/apache2/modules/mod_proxy.so into server: /usr/local/apache2/modules/mod_proxy.so: undefined symbol: ap_proxy_is_word


SUGGESTIONS ON HOW TO RESOLVE, thanks....Rob


--------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org

------=_Part_47578_7578936.1152398321215--