Fleischer wrote:
Hi guys

This might not be the right forum, but it seems this is the only place I get
correct answers.

Well strictly this list is for help regarding the installation of php itself, but...

I have installed IMP and now I'm trying to configure horde. When I go to
config.php it gives me the following error.:

Notice: Undefined index: log in /usr/local/www/horde/lib/Horde.php on line
51

This just a 'Notice' not a Warning or Error as such. More to do with alerting you to possible bad coding practices. Probably no big deal.

Warning: Cannot modify header information - headers already sent by (output
started at /usr/local/www/horde/lib/Horde.php:51) in
/usr/local/www/horde/lib/Horde.php on line 1332

Now this Warning was issued because of the previous output of the Notice above. After php output the notice text the script attempted to send headers to the browser, headers must be sent before any other output, including whitespace. So you could fix this by removing Notices from PHP's error reporting. In php.ini edit the error_reporting directive to be:
error_reporting  =  E_ALL & ~E_NOTICE & ~E_STRICT

Cheers,

Brad

--
Brad Kowalczyk
Web Developer
www.ibiscode.com

Reply via email to