Author Topic: Problems with updated install of roundcube 0.5.3 on Ubuntu Ocelot  (Read 2967 times)

Offline genec

  • Newbie
  • *
  • Posts: 5
I just upgraded my ubuntu install to ocelot and roundcube, which has been updated to version 0.5.3, is having some issues.

First, roundcube was not connecting to mysql.  I eventually figured a workaround.  It appears that the following line in db.inc.php is not having the desired effect:
include_once("/etc/roundcube/debian-db.php");
so, instead I just pasted all the database variable definitions directly into db.inc.php ($dbuser, $dbpass, $dbtype, $dbserver, $dbname).  /etc/roundcube/debian-db.php looked like this:
Code: [Select]
dbuser='rc'
dbpass='XXXXXXXX'
basepath=''
dbname='roundcube'
dbserver=''
dbport=''
dbtype='mysql'


The bigger issue is that once roundcube was coming up, and I tried to log in to the webpage, it would just return me to the login page.  The wait cursor would spin briefly at the top and that's it.  I know the login itself is working because if I use an incorrect login, an error message appears.  But when I enter a correct login, nothing.

Any help on this would be greatly appreciated.

Gene