[chora] Chora at webroot

Tony Bibbs tony at tonybibbs.com
Wed Jan 11 14:14:34 PST 2006


Ok, I know this has been discuss a million times but I'm still managing 
to have problems.  My only goal is to have chora running from 
http://cvs.example.com and not requiring any logins (i.e. allow 
anonymous browsing). No other horde apps will be added.

That said, I'm having an issue where I keep getting redirected to the 
horde login page and I'm sure it's got to be something trivial I'm doing 
wrong.

Here's my apache2 vhost entry:

<VirtualHost *:80>
     ServerName cvs.example.com
     Alias /horde /path/to/horde/
     DocumentRoot /path/to/horde/chora
</VirtualHost>

config/config.php's cookie path:

$conf['cookie']['path'] = '/';

config/register.php entries:

$this->applications['horde'] = array(
     'fileroot' => dirname(__FILE__) . '/..',
     'webroot' => '/horde',
     'initial_page' => 'login.php',
     'name' => _("Horde"),
     'status' => 'active',
     'templates' => dirname(__FILE__) . '/../templates',
     'provides' => 'horde',
     'allow_guests' => true
);

$this->applications['chora'] = array(
     'fileroot' => '/path/to/horde/chora/',
     'webroot' => '',
     'name' => _("Version Control"),
     'status' => 'active',
     'menu_parent' => 'devel',
     'icon' => '/graphics/chora.gif',
     'allow_guests' => true
);


More information about the chora mailing list