paths problem ?
Terry Davis
tdavis@birddog.com
Mon, 18 Jun 2001 21:58:28 -0500
Here is the error in apache logs:
File does not exist: /home/web/webmail.domain.com/horde/imp/css.php
css.php is in /home/web/webmail.domain.com/horde
Here is my configuration:
installation directory: /home/web/webmail.domain.com
apache v-host: (i took out ssl stuff)
<VirtualHost 10.2.0.4:443>
DocumentRoot /home/web/webmail.domain.com
ServerName webmail.domain.com
RedirectPermanent /index.html https://webmail.domain.com/horde/imp/
ErrorLog /usr/local/apache/logs/webmail-ssl-error_log
TransferLog /usr/local/apache/logs/webmail-ssl-access_log
ScriptAlias /cgi-bin/ "/home/web/webmail.birddog.com/cgi-bin/"
<Directory /home/web/webmail.domain.com/horde>
order allow,deny
allow from all
AllowOverride all
Options ExecCGI Includes FollowSymLinks
DirectoryIndex index.html index.php
</Directory>
</VirtualHost>
horde.php stuff
$conf['horde']['paths']['root'] = '/horde';
$conf['horde']['paths']['graphics'] = $conf['horde']['paths']['root'] .
'./graphics';
$conf['horde']['paths']['templates'] = './templates';
imp/config/conf.php stuff
$conf['paths']['root'] = '/horde/imp';
$conf['paths']['graphics'] = './graphics';
$conf['paths']['templates'] = './templates';
Any ideas on what I am doing wrong here??
Thank you!
Terry