View previous topic :: View next topic |
Author |
Message |
snerkel Tux's lil' helper
![Tux's lil' helper Tux's lil' helper](/images/ranks/rank_rect_1.gif)
Joined: 24 Oct 2004 Posts: 80 Location: uk
|
Posted: Tue Jan 10, 2006 8:04 pm Post subject: problem with Horde and IMP |
|
|
Hi. I used to use horde on another server and it worked fine. I have setup another server with qmail and using horde as webmail client. I get this error when trying to visit horde webpage:
Quote: |
Notice: Only variable references should be returned by reference in /var/www/mail.unitrix.co.uk/htdocs/lib/Auth.php on line 80
Notice: Only variable references should be returned by reference in /var/www/mail.unitrix.co.uk/htdocs/lib/Prefs.php on line 144 |
I have followed the Gentoo qmail guide all the way through and the server is setup perfectly. I have installed horde using the vhosts flag and put it into its own vhost. Last time round i discovered a problem with the gentoo guide. It says to emerge horde-imp and then tells you to edit a file but when doing it as a vhost you must do things differently. I had it working fine before and i cant understand the problem.
Can anyone offer me any advice?
Thanks,
Ben. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Robelix l33t
![l33t l33t](/images/ranks/rank_rect_4.gif)
![](images/avatars/1526712478443629230203f.gif)
Joined: 21 Jul 2002 Posts: 760 Location: in a World created by a Flying Spaghetti Monster
|
Posted: Tue Jan 10, 2006 8:20 pm Post subject: |
|
|
This are some warnings in php that didn't exist in earlier versions.
Fix a) Ignore them - it's just a notice:
change config/conf.php
from:
$conf['debug_level'] = E_ALL;
to:
$conf['debug_level'] = E_ALL & ~E_NOTICE;
Fix b) In Horde-CVS-Version this should be fixed. But if it's a production server it's not a good idea to use this. _________________ mysql> SELECT question FROM life, universe, everything WHERE answer=42;
Empty set (2079460347 sec) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
snerkel Tux's lil' helper
![Tux's lil' helper Tux's lil' helper](/images/ranks/rank_rect_1.gif)
Joined: 24 Oct 2004 Posts: 80 Location: uk
|
Posted: Tue Jan 10, 2006 9:16 pm Post subject: |
|
|
Robelix wrote: | Fix a) Ignore them - it's just a notice:
change config/conf.php
from:
$conf['debug_level'] = E_ALL;
to:
$conf['debug_level'] = E_ALL & ~E_NOTICE;
|
Thanks for the reply. Where can i find config/config.php ?
Thanks, |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Robelix l33t
![l33t l33t](/images/ranks/rank_rect_4.gif)
![](images/avatars/1526712478443629230203f.gif)
Joined: 21 Jul 2002 Posts: 760 Location: in a World created by a Flying Spaghetti Monster
|
Posted: Wed Jan 11, 2006 3:13 pm Post subject: |
|
|
snerkel wrote: |
Thanks for the reply. Where can i find config/config.php ?
|
It's config/conf.php - and you find it in the Horde directory - most propably: /var/www/localhost/htdocs/horde/ _________________ mysql> SELECT question FROM life, universe, everything WHERE answer=42;
Empty set (2079460347 sec) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|