• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

HORDE doesn't work after update

E

EnigmaBCN

Guest
I get this error when I acces horde via web:

A fatal error has occurred
DB Error: connect failed
Details have been logged for the administrator.

Any idea?:confused:
 
The solution!

1-
Edit C:\Program Files\SWsoft\Plesk\MySQL\Data\my.ini
Add at the end

[MySQLD]
skip-grant-tables

Restart Plesk SQL Server service

2-
Start, Run cmd
cd "\Program Files\SWsoft\Plesk\MySQL\bin"
mysql -P8306 mysql

mysql>update user set password=password('your_password') where user='horde';
mysql>exit

3-
Edit C:\Program Files\SWsoft\Plesk\MySQL\Data\my.ini
Remove

[MySQLD]
skip-grant-tables

Restart Plesk SQL Server service

4-
Edit inetpub\vhosts\webmail\horde\config\conf.php
Update:

$conf['sql']['port'] = 8306;
$conf['sql']['protocol'] = 'tcp';
$conf['sql']['hostspec'] = 'localhost';
$conf['sql']['username'] = 'horde';
$conf['sql']['password'] = 'your_password';

..and that's all folks!!

:D
 
Hmz... I cant see any user calles horde! :S

STRANGE!!!!

And now?
 
Back
Top