Roundcube Community Forum

Release Support => Older Versions => Release Candidate 2 => Topic started by: lmdfln on November 23, 2007, 02:45:56 AM

Title: basic install problem
Post by: lmdfln on November 23, 2007, 02:45:56 AM
Hi

Im trying to do the basic install of roundcube lastest release.. but i get this error

-bash-3.00$ mysql --user=(fll_round) -p (fll_roundcube) < mysql.initial.sql
-bash: syntax error near unexpected token `('
-bash-3.00$

My sql user is fll_round and the mysql database is fll_roundcube

What am i doing wrong?

Thnx Flemming
Denmark
Title: Re: basic install problem
Post by: yoi55 on December 14, 2007, 01:57:07 PM
Hello, I just installed RoundCube and had the same problem you are having. I access my web site through CPanel. I entered PHPMyAdmin and manually imported the mysql.initial.sql into the database and it worked fine. Hope this helps :)
Title: Re: basic install problem
Post by: wackhacker on December 28, 2007, 03:53:58 AM
Quote from: lmdfln

-bash-3.00$ mysql --user=(fll_round) -p (fll_roundcube) < mysql.initial.sql
-bash: syntax error near unexpected token `('

My sql user is fll_round and the mysql database is fll_roundcube

Remove the () around fll_round and fll_roundcube, because you do not need those from the commandline.

This should do it:
Code: [Select]
mysql -u fll_round -pfll_roundcube < mysql.initial.sql

Regards,

Jacco