Saturday, March 04, 2006

First Problems

I've been looking around the code to try to find where to configure the database access (userid and password). Haven't found it yet, but I went ahead and tried to point my webbrowser to http://mydomain.com/horde/test.php and got some errors:
Warning: main(Log.php): failed to open stream: No such file or directory in /home/domain/public_html/horde/lib/Horde.php on line 3

Warning: main(): Failed opening 'Log.php' for inclusion (include_path='/home/domain/public_html/horde/lib:.:/usr/lib/php:/usr/local/lib/php') in /home/domain/public_html/horde/lib/Horde.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /home/domain/public_html/horde/lib/Horde.php:3) in /home/domain/public_html/horde/lib/Test.php on line 84

Warning: Cannot modify header information - headers already sent by (output started at /home/domain/public_html/horde/lib/Horde.php:3) in /home/domain/public_html/horde/lib/Test.php on line 85
Sure enough, the 3rd line of /lib/Horde.php is looking to include once 'Log.php', which I don't see anywhere in the install. But wait, there's more...

The output of test.php goes on to list various modules with either a Yes or a Warning message (I assume for optional compontents). Finally, in the PEAR section, I get:
  • Mail_Mime: No
    You do not have the Mail_Mime package installed on your system. See the INSTALL file for instructions on how to install the package. THIS IS A REQUIRED MODULE!
  • Log: No
    Make sure you are using a version of PEAR which includes the Log classes, or that you have installed the Log package seperately. See the INSTALL file for instructions on installing Log. THIS IS A REQUIRED MODULE!
So I guess I know why the Log.php isn't found. I'll have to look into it, but I think installing a PEAR module is gonna be a show stopper on a shared hosting web server.

Update: Could be a path problem in /config/mime_drivers.php

0 Comments:

Post a Comment

<< Home