[imp] Re: Parse error in help.php3
Matt Thompson
wassoc@mattyt.net
Wed, 5 Sep 2001 10:49:02 -0700 (PDT)
> > require './' . $module . /etc/horde/lang.php3';
>
> There's a quote missing there (should be '/etc/horde ... etc.). Looks like
> that's something that's specifically munged by the debian package, which I'm
> guessing you're using? You should report it to the package maintainer.
I changed it so that it now looks like this:
/* Get the right translation of the help files for this page */
if (empty($module)) $module = '';
else $module = basename($module);
require './' . $module . '/etc/horde/lang.php3';
$language = select_lang($module);
...and now I get:
Fatal error: Failed opening required './imp/etc/horde/lang.php3' in
/usr/share/horde/help.php3 on line 33
Does that have something to do with the "require './'" part?
And yes, I'm using the Debian packages for IMP/Horde. Once we get this
ironed out, I'll definitely file a bug report with the Debian maintainer.
I can't believe no other Debian IMP user ever clicked the question marks.
:)
Matt Thompson wassoc@mattyt.net
Network Administrator
Williamson & Associates
http://www.wassoc.com
>From chuck@horde.org Date: Wed, 5 Sep 2001 13:51:23 -0400
Return-Path: <chuck@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 94270 invoked from network); 5 Sep 2001 17:53:29 -0000
Received: from h00104bc60b3c.ne.mediaone.net (HELO marina.horde.org) (24.91.198.7)
by horde.org with SMTP; 5 Sep 2001 17:53:29 -0000
Received: by marina.horde.org (Postfix, from userid 33)
id B2ADE3D99; Wed, 5 Sep 2001 13:51:23 -0400 (EDT)
Received: from 206.243.191.252 ( [206.243.191.252])
as user chuck@localhost by marina.horde.org with HTTP;
Wed, 5 Sep 2001 13:51:23 -0400
Message-ID: <999712283.3b96661b8fcef@marina.horde.org>
Date: Wed, 5 Sep 2001 13:51:23 -0400
From: Chuck Hagenbuch <chuck@horde.org>
To: imp@lists.horde.org
References: <999708419.3b96570307a5f@hordemail.intranet.wishard.edu> <999709984.3b965d204a776@marina.horde.org> <999711791.3b96642fcaf61@hordemail.intranet.wishard.edu>
In-Reply-To: <999711791.3b96642fcaf61@hordemail.intranet.wishard.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
Subject: Re: [imp] (imp) LDAP search criteria options
Quoting Michael Stamper <michael@wishard.edu>:
> > > How can I expand the options for the "email" search to include the
> > > "contains" criteria?
> >
> Sorry, I forgot to include that information.
> Horde 1.2.4
> IMP 2.2.4
If adding it to the last parameter to the LDAPServer constructor in
config/ldap.php3 doesn't do it, then somewhere - probably in
templates/contacts/ldap-php3.inc - you'll just have to hack it in. It's been
years since I looked at that ldap code, sorry...
-chuck
--
Charles Hagenbuch, <chuck@horde.org>
Some fallen angels have their good reasons.
>From chuck@horde.org Date: Wed, 5 Sep 2001 13:53:00 -0400
Return-Path: <chuck@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 95190 invoked from network); 5 Sep 2001 17:55:06 -0000
Received: from h00104bc60b3c.ne.mediaone.net (HELO marina.horde.org) (24.91.198.7)
by horde.org with SMTP; 5 Sep 2001 17:55:06 -0000
Received: by marina.horde.org (Postfix, from userid 33)
id 1A6313D99; Wed, 5 Sep 2001 13:53:01 -0400 (EDT)
Received: from 206.243.191.252 ( [206.243.191.252])
as user chuck@localhost by marina.horde.org with HTTP;
Wed, 5 Sep 2001 13:53:00 -0400
Message-ID: <999712380.3b96667cee851@marina.horde.org>
Date: Wed, 5 Sep 2001 13:53:00 -0400
From: Chuck Hagenbuch <chuck@horde.org>
To: imp@lists.horde.org
References: <Pine.LNX.3.96.1010905104328.493C-100000@doma.mattyt.net>
In-Reply-To: <Pine.LNX.3.96.1010905104328.493C-100000@doma.mattyt.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
Subject: Re: [imp] Re: Parse error in help.php3
Quoting Matt Thompson <wassoc@mattyt.net>:
> Fatal error: Failed opening required './imp/etc/horde/lang.php3' in
> /usr/share/horde/help.php3 on line 33
>
> Does that have something to do with the "require './'" part?
Oh, yeah. Sorry, I wasn't really think about what that line looks like. You
probably just want:
require '/etc/horde/lang.php3';
... although that changes the behavior somewhat. Hmm.
> And yes, I'm using the Debian packages for IMP/Horde. Once we get this
> ironed out, I'll definitely file a bug report with the Debian maintainer.
> I can't believe no other Debian IMP user ever clicked the question marks.
Stranger things have happened. :)
-chuck
--
Charles Hagenbuch, <chuck@horde.org>
Some fallen angels have their good reasons.