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
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 :)
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:
mysql -u fll_round -pfll_roundcube < mysql.initial.sql
Regards,
Jacco