Receiving this running Django on Win7. Friend set up django & database and says all the information in the settings.py is correct but I keep receiving this error when I try to test locally. The other weird thing is when I remove the .sql file from the project directory completely I still receive the same error.
File "c:\python26\lib\site-packages\django\db\backends\postgresql_psycopg2\base.py", line 98, in _cursor
self.connection = Database.connect(**conn_params)
OperationalError: FATAL: password authentication failed for user "post_user"
Settings.py:
DATABASE_ENGINE = 'postgresql_psycopg2'
DATABASE_NAME = 'pinax'
DATABASE_USER = 'post_user'
DATABASE_PASSWORD = 'pass'
DATABASE_HOST = 'localhost'
DATABASE_PORT = ''
Thoughts?