Strange Horde Logout issue

Norman

Well-Known Member
Sep 20, 2004
88
0
156
Hello everyone.

I'm currently moving from a reseller account using Cpanel Relase 55 I think it is, to a dedicated server with the same release level but I have osme Horde Oddities going on

on the reseller account, once logged into horde and done with my mail, I click logout and usually it takes me back to the main "HORDE" page where I can enter a new email and check another email, but on the new server, it takes me to a like "Cpanel" logout where it's almost like a new cpanel login rather than Horde login.

Does anyone know how to fix this problem?
 

Screenweb

Member
Sep 3, 2004
6
0
151
I've also noticed this and its annoying me aswell.
 

Norman

Well-Known Member
Sep 20, 2004
88
0
156
Screenweb said:
I've also noticed this and its annoying me aswell.
Is this a problem with the horde setup on cpanel 55? I don't understand why it's doing it, but I've programmed modules in horde and I'm trying to track it down.. :D
 

Screenweb

Member
Sep 3, 2004
6
0
151
No idea, I'm guessing so as its a problem on both cpanel server's i'm using and I think they are both currently up to date.
 

Norman

Well-Known Member
Sep 20, 2004
88
0
156
Okay guys, just so you all know I got this figured out..

Due to the "annoying" double login issues, most cpanels are installed with IMP doing the authentication.. this will give you that Ugly white, non-branded page when you logout.

If you want to be taken bakc to IMP login, do this:

1) edit the /usr/local/cpanel/base/horde/config/registry.php
2) Change these two lines:
PHP:
$this->registry['auth']['login'] = 'imp';
$this->registry['auth']['logout'] = 'imp';
to this:
PHP:
$this->registry['auth']['login'] = 'imp';
//$this->registry['auth']['logout'] = 'imp';
This will allow you to return to the "IMP" Login page when logging out :)

Enjoy, let me know if this helps anyone else..