I have had a virtualenv for Trunk up and running for a while, but now I am trying to branch, and get things setup on another virtualenv for my 'refactor' branch.

Everything looks to be setup correctly, but when I try to run any manage.py commands, I get this error:

_mysql_exceptions.OperationalError: (1045, "Access denied for user 'brian'@'localhost' (using password: NO)")

I just don't understand why it's not attempting to use the password I have set in my django settings file. Is there some addition mysql setup I could have overlooked? Does this issue ring any bells for anyone?

Thanks in advance.

link|improve this question

43% accept rate
Are both virtualenvs running on the same physical machine? – Nathan Villaescusa Apr 21 '11 at 6:44
I'm having the same problem in one machine. It ssems that django is not importing the settings from settings.py and failing silently – duduklein Jan 4 at 11:33
feedback

1 Answer

I found the problem I was having. Django was importing a different settings.py file.

I had another django project inside my django product like myproject/myproject/.

Instead of importing myproject/settings.py, it was importing myproject/myproject/settings.py

I assume that Aptana Studio created that project there. If you use eclipse you are also likely to have this problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.