Horde Login problem after WHM updated.
My server had a problems logging into Horde after update to 10.9.0-R57. Customers would get to the Horde login page (http://example.com:2095/horde/login.php) successfully, but the login would silently fail when they click the Log in button - the page would just reload with no error messages, PHP errors, etc.
I try to fix it with myqlcheck -r horde but not succesful. But i saw something that show horde_sessionhandler was not there. Then i dump this SQL to fix it :
CREATE TABLE horde_sessionhandler (
session_id VARCHAR(32) NOT NULL,
session_lastmodified INT NOT NULL,
session_data LONGBLOB,
PRIMARY KEY (session_id)
) ENGINE = InnoDB;
GRANT SELECT, INSERT, UPDATE, DELETE ON horde_sessionhandler TO horde@localhost;
Problem solved.

