Previously I had the following issue:
I have created a mysql database named xyz and a user named xyz_user so what exactly should this line be in db.inc.php?
$rcmail_config['mysql'] = 'mysql://xyz_user@localhost/xyz';
That doesn't seem to work for some reason.
I keep getting the following errors:
*DB Error in /home/xyz/public_html/roundmail/program/include/rcube_db.inc (63):* DB Error: not found
*Fatal error*: Call to undefined function: query() in */home/xyz/public_html/roundmail/program/include/rcube_db.inc* on line *119
Now it looks like the problem was with not having pear set up. Since I am on a shared server I had to install PEAR in my home folder. I did that successfully, I think, but now I get the following error.
*Fatal error*: Cannot redeclare class db in */usr/lib/php/DB.php* on line *271*
I added this to index.php but I don't think that's working out.
ini_set("include_path", 'public_html/pear/PEAR/' . PATH_SEPARATOR . ini_get("include_path")); require_once '/home/xyz/public_html/pear/PEAR/DB.php';
Any more ideas from anyone? This is a really slick app. I can't wait for it to work.
Mike