Author Topic: Change Password Problem in RoundCube  (Read 5010 times)

Offline rb

  • Newbie
  • *
  • Posts: 1
Change Password Problem in RoundCube
« on: January 19, 2016, 05:47:45 PM »
Hello,

I can not change password in Roundcube  :(
I am forgetting something? someone help?

Thanks,
rb



Roudcube errors log:
Code: [Select]
[19-Jan-2016 23:26:29 +0100]: <4i01uh22> DB Error: [1305] FUNCTION roundcube1.update_passwd does not exist (SQL Query: SELECT update_passwd('$1$xxx', 'rb@xxx.org')) in C:\htdocs\www.xxx.org\rcmail\program\lib\Roundcube\rcube_db.php on line 543 (POST /rcmail/?_task=settings&_action=plugin.password-save?_task=&_action=)

Specs:
OS Windows + apache + php + mysql
Roundcube Webmail 1.1.4 with password plugin enabled

php.ini
com.allow_dcom = true
extension=php_com_dotnet.dll

.../password/config.inc.php
$config['password_driver'] = 'hmail';
$config['password_db_dsn'] = 'mysql://roundcube1:xxx@localhost/roundcube1';
$config['password_query'] = 'UPDATE hm_accounts SET accountpassword=md5(%p),accountpwencryption = 2 WHERE accountaddress=%u LIMIT 1';

// hMail Driver options
// -----------------------
// Remote hMailServer configuration
// true:  HMailserver is on a remote box (php.ini: com.allow_dcom = true)
// false: Hmailserver is on same box as PHP
$config['hmailserver_remote_dcom'] = false;
// Windows credentials
$config['hmailserver_server'] = array(
    'Server' => 'localhost', // hostname or ip address
    'Username' => 'xxx', // windows username
    'Password' => 'xxx' // windows user password
);