strange behaviour of HORDE

Robin P. Blanchard Robin_Blanchard@gactr.uga.edu
Mon, 10 Dec 2001 08:37:18 -0500


Friday morning I successfully installed the latest CVS (head)
horde/imp/turba combination, commented out all other unused horde
modules from horde/config/registry.php, and setup horde/imp to use mysql
for prefs. All works great. I logged in repeatedly and checked mail,
using different user accoungs. I returned from lunch to find that now
when I go try to browse to horde, I get:

Fatal error: Cannot redeclare _filecleanup() in ...horde/lib/Horde.php
on line 58

If I point my browser directly at imp or turba, I can login and use the
modules. I cannot, however, login via the horde main page (which is
configured by horde/config/registry.php to use IMP for all auth).

I can stop and restart apache and the problem persists. I have
determined that the only way to get it working again, is to reinstall
the horde/imp/turba tree and copy over the configs from the "dead"
treee. It will then again work for some unknown amount of time, after
which the above message returns.

Same behaviour is seen with RC3 modules as well.

???

Sounds as if there are files being modified or created within the tree
but a find for modified files returns nothing.

Ideas?

(using php-4.0.6 with a recent CVS of pear).


-- 
------------------------------------
Robin P. Blanchard
IT Program Specialist
Georgia Center for Continuing Ed.
fon: 706.542.2404 fax: 706.542.6546
email: Robin_Blanchard@gactr.uga.edu
------------------------------------


>From pgc@ucecom.com Date: 10 Dec 2001 15:38:12 -0500
Return-Path: <pgc@ucecom.com>
Mailing-List: contact dev-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list dev@lists.horde.org
Received: (qmail 47415 invoked from network); 10 Dec 2001 15:34:01 -0000
Received: from unknown (HELO ucecom.com) (195.8.161.130)
  by clark.horde.org with SMTP; 10 Dec 2001 15:34:01 -0000
Received: from hankey.ucecom.com ([140.4.2.19]) by stan.ucecom.com
          (Netscape Messaging Server 3.6)  with ESMTP id AAA22F59
          for <dev@lists.horde.org>; Tue, 11 Dec 2001 09:28:00 +0000
From: "Paul Cooper" <pgc@ucecom.com>
To: dev@lists.horde.org
In-Reply-To: <1007675788.3c0fe98c65f40@marina.horde.org>
References: <20011206192749.A30133@ucecom.com> 
	<1007675788.3c0fe98c65f40@marina.horde.org>
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
X-Mailer: Evolution/1.0 (Preview Release)
Date: 10 Dec 2001 15:38:12 -0500
Message-Id: <1008016693.7067.0.camel@hankey.ucecom.com>
Mime-Version: 1.0
Subject: Re: [dev] adding a group

On Thu, 2001-12-06 at 16:56, Chuck Hagenbuch wrote:
> Quoting Paul Cooper <pgc@ucecom.com>:
> 
> > Plus to be able to add a group I had to make a couple fo changes to 
> > Group.php and Category.php - diffs attached.
> 
> Committed, thanks. I've been meaning to get back to this for a while; hopefully 
> it'll happen sooner with your prodding/help. :)
> 
> -chuck

Cool. I have  a question. I can now successfully add groups and
subgroups but I can't add users to a group. Problem is in addUserToGroup

 function addUserToGroup($userId, $group)
 {
	return $this->users->add($userId, $group);
 }

there is no users instantiated in the class (or at least that I can
see). Should this be anther category object but with group =>
horde.users?

Paul