Hi i am very green at django and just learnt python. I'm struggling to set it all up right. So apologies now!
I have django and python installed (windows 7). Everything in tutorial has worked (sort of) up to now. Now trying to syncdb my first db as in tutorial posts. I've created one in myadmin III called posts and my setting.py file looks like..
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': os.path.join(BASE_DIR, 'C:/Program Files/PostgreSQL/9.3/data/base/polls.db'),
'PASSWORD': '',
However i get this error (amongst others)
conn = _connect(dsn, connection_factory=connection_factory, async=async)
django.db.utils.OperationalError: fe_sendauth: no password supplied
The dbase does not seem to have a password set nor the server connection in postgresql. So don't know what i need to do?
What password should i use?
Many thanks!