[horde] Fw: HORDE LOGIN PAGE
Patrick Boutilier
boutilpj at ednet.ns.ca
Wed Apr 18 09:46:23 UTC 2007
Suhag Desai wrote:
> Thanks for reply..
>
> I have set my DocumentRoot in httpd.conf "/var/www/horde"
>
> Whenevr i tried to load page by http://192.168.10.71 OR
> http://192.168.10.71/horde OR http://192.168.10.71/horde nothing display ..
>
> My httpd log is "[Wed Apr 18 11:42:22 2007] [error] [client 192.168.10.1]
> File does not exist: /var/www/horde/horde"
>
> pl. let me know , next step.
> -suhag
Sounds like the automatic webroot detection is not working. Try setting
it to '' .
In horde/config/registry.php change
$this->applications['horde'] = array(
'fileroot' => dirname(__FILE__) . '/..',
'webroot' => $webroot,
'initial_page' => 'login.php',
'name' => _("Webmail"),
'status' => 'active',
'templates' => dirname(__FILE__) . '/../templates',
'provides' => 'horde'
);
to
$this->applications['horde'] = array(
'fileroot' => dirname(__FILE__) . '/..',
'webroot' => '',
'initial_page' => 'login.php',
'name' => _("Webmail"),
'status' => 'active',
'templates' => dirname(__FILE__) . '/../templates',
'provides' => 'horde'
);
>
>
> ----- Original Message -----
> From: "Bill Graham" <grahamcw at hurleybulldogs.com>
> To: <horde at lists.horde.org>
> Sent: Wednesday, April 18, 2007 9:42 AM
> Subject: Re: [horde] Fw: HORDE LOGIN PAGE
>
>
> Typically horde is run out of a subdirectory (horde) and you shouldn't
> have to invoke login.php directly.
>
> index.php should be one of your default pages in your web server and
> it should be run when you address the subdirectory.
> Using your example -
> You would invoke horde as http://192.168.10.71/horde
> You aren't giving us much to work with here -
> are you getting any error messages in the logs or on the screen ?
>
> Bill
>
More information about the horde
mailing list