hello On Tue, May 27, 2008 at 03:07:13PM -0400, Roxana Luz Fleipaz wrote: > Hello friends > t/Labels....................DBI > connect('dbname=koha;host=localhost;port=3306','kohaadmin',...) failed: > Access denied for user 'kohaadmin'@'localhost' (using password: YES) at
looks like you forgot to grant access to kohaadmin. mysql_grant_access () { local base login password base="$1" login="$2" password="$3" cat << GRANTACCESS | mysql "$base" grant all on $base.* to '$login'@'localhost' identified by '$password'; flush privileges; GRANTACCESS } If you are a debian user, look at http://musil.biblibre.com/koha/README.install_koha_on_fresh_debian regards, -- Marc Chantreux BibLibre, expert en logiciels libres pour l'info-doc http://biblibre.com _______________________________________________ Koha-devel mailing list Koha-devel@lists.koha.org http://lists.koha.org/mailman/listinfo/koha-devel