Please post line 35-45 of following file:
/var/www/imscp/gui/public/tools/webmail/plugins/imscp_pw_changer/config.inc.php
roundcube plugins password changer - blank page
- Moonraker136
- Closed
- Thread is marked as Resolved.
-
-
What version of RoundcubePlugins do you have installed?
And give us the row 39 of /var/www/imscp/gui/public/tools/webmail/plugins/imscp_pw_changer/config.inc.php
-
-
this is line 37,38,39 of zhe pwchanger config
$rcmail_config['password_db_dsn'] = 'mysqli://roundcube_user:=S********@|'#@localhost/imscp';
$rcmail_config['password_length'] = 6;
newest version installed today
-
Is there a ' in your password?
-
-
Which version you're using? The password should be escaped. I'll check
-
the password was autogenaretet from imscp and yes there is a '
version 1.2.2
-
-
by the way imscp accptet no phpmyadmin sql passowrd it gives allways error bavk, because no ascii code. them you can onky autogenarate und when i rerun the installer i get the same problem
-
Atm you can escape the password manually. I'll escape the password in new version..
-
-
so ive to rerun installer to set roundcube pw new? sry but could someone give me the link that i only can set roundcube pw new?
-
Just escape the password on that line:
$rcmail_config['password_db_dsn'] = 'mysqli://roundcube_user:=Sblabla@|'#@localhost/imscp';
to
$rcmail_config['password_db_dsn'] = 'mysqli://roundcube_user:=Sblabla@|\'#@localhost/imscp';PS: I opened a new ticket: http://youtrack.i-mscp.net/issue/IP-1408
-