roundcube plugins password changer - blank page

  • Please post line 35-45 of following file:
    /var/www/imscp/gui/public/tools/webmail/plugins/imscp_pw_changer/config.inc.php

  • 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

  • Which version you're using? The password should be escaped. I'll check

  • 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..

  • 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