Re: Access denied to the server when trying to connect with mysql database

2009-04-21 Thread 83nini
wohooo, thanks, that worked :) i owe you a cheesecake On 21 Apr, 13:03, Anatoliy wrote: > Try run this in MySQL: > > GRANT ALL ON something TO myusern...@localhost IDENTIFIED BY > "somepassword" > > On Apr 21, 2:52 pm, 83nini <83n...@gmail.com> wrote: > > > > > Yes, i've created a user and grant

Re: Access denied to the server when trying to connect with mysql database

2009-04-21 Thread Anatoliy
Try run this in MySQL: GRANT ALL ON something TO myusern...@localhost IDENTIFIED BY "somepassword" On Apr 21, 2:52 pm, 83nini <83n...@gmail.com> wrote: > Yes, i've created a user and granted the user some rights. > > On 21 Apr, 12:48, Anatoliy wrote: > > > Do you create user and grant rights to

Re: Access denied to the server when trying to connect with mysql database

2009-04-21 Thread 83nini
Yes, i've created a user and granted the user some rights. On 21 Apr, 12:48, Anatoliy wrote: > Do you create user and grant rights to him in MySQL? > > On Apr 21, 1:58 pm, 83nini <83n...@gmail.com> wrote: > > > > > Hi guys, > > > I'm new to django and trying to learn. I'm trying to connect djang

Re: Access denied to the server when trying to connect with mysql database

2009-04-21 Thread Anatoliy
Do you create user and grant rights to him in MySQL? On Apr 21, 1:58 pm, 83nini <83n...@gmail.com> wrote: > Hi guys, > > I'm new to django and trying to learn. I'm trying to connect django to > mysql database which i've created, so what i did is that i modified > the settings.py file to the follo

Access denied to the server when trying to connect with mysql database

2009-04-21 Thread 83nini
Hi guys, I'm new to django and trying to learn. I'm trying to connect django to mysql database which i've created, so what i did is that i modified the settings.py file to the following: DATABASE_ENGINE = 'mysql' DATABASE_NAME = 'something' DATABASE_USER = 'myusername' DATABASE_PASSWORD = 'somep