Hi, On Wed, Oct 21, 2009 at 4:54 AM, <thippesh@gmit.info> wrote:
Access denied for user 'kohaadmin'@'localhost' (using password: YES) at /usr/share/koha/lib/C4/Context.pm line 666.
The permissions on your data base are not set correctly. From an INSTALL file: $ mysql -uroot -p<password> .... Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 22 Server version: 5.0.32-Debian_7etch3-log Debian etch distribution .... Type 'help;' or '\h' for help. Type '\c' to clear the buffer. .... mysql> grant all on <kohadatabasename>.* to '<kohadatabaseuser>'@'localhost' identified by '<kohadatabaseuserpassword>'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> quit HTH Kind Regards, Chris