One thing u can do is get MySQLCC from their website. It's a great GUI for
managing MySQL. U can edit the users and check permissions in a list and
per table. That should let u debug it.
--
REMEMBER THE WORLD TRADE CENTER ---=< WTC 911 >=--
"...ne cede males"
0100
_
ummm
i made a mistake in what i posted... a typing error... it should have been
i did the following to configure the mysql database/table
--
$ mysql -uroot -p
mysql> CREATE DATABASE livejournal;
mysql> GRANT ALL PRIVILEGES ON livejournal.* TO
> lj@
bruce wrote a cross-post with:
> i can access the mysql db/livejournal from the mysql client/command line.
> mysql -ulj -host192.168.1.55 -p
what happens when you try this with the user/host you specified for the
database? i.e.
mysql -u lj -host localhost -p
or omit the host altogether. see
At 10:52 AM 5/3/05 -0700, [EMAIL PROTECTED] wrote:
>'DBD::mysql::db selectrow_hashref failed: Access denied for user:
>'[EMAIL PROTECTED]' (Using password: NO) at /var/www/html/cgi-bin/DBI/Role.pm
>$ mysql -uroot -p
>mysql> CREATE DATABASE livejournal;
>mysql> GRANT ALL PRIVILEGES ON livejournal.*