Author Topic: Error when accessing Roundcube  (Read 3259 times)

Offline trelin

  • Newbie
  • *
  • Posts: 2
Error when accessing Roundcube
« on: February 17, 2008, 07:13:35 PM »
After installation, when i access Roundcube, i get this error

Quote
Parse error: syntax error, unexpected ':' in /usr/local/cpanel/base/roundcube/config/db.inc.php on line 21

When i go to line 21 in the path/file shown, this is what is shown

Quote
$rcmail_config['db_dsnw'] = ‘mysql://root:myusername@localhost/roundcube’;

How do i resolve this error?

Offline roundtriangle

  • Newbie
  • *
  • Posts: 4
Re: Error when accessing Roundcube
« Reply #1 on: February 18, 2008, 02:12:23 PM »
Dont use ` , try ' or "

the next thing:

Code: [Select]
$rcmail_config['db_dsnw'] = "mysql://username:password@localhost/roundcube";
okay?