Re: OperationError: fe_sendauth: no password supplied

2009-04-08 Thread Randy Barlow
LeeRisq wrote: > I have also tried entering a password (same one I use to logon to the > network) in settings.py, but when I do that I get this: > This is almost certainly your problem. You need a username and a password to the database you are using. It sounds like you are trying to use

Re: OperationError: fe_sendauth: no password supplied

2009-04-08 Thread LeeRisq
I've copied the Traceback below. >>> from django.db import connection >>> cursor = connection.cursor() Traceback (most recent call last): File "", line 1, in File "C:\Python25\lib\site-packages\django\db\backends\__init__.py", line 56, in cursor cursor = self._cursor(settings) File "C:

Re: OperationError: fe_sendauth: no password supplied

2009-04-08 Thread Adi Sieker
Hi, a full traceback would be helpful. did you supply a password for your database in the settings.py? adi On 08.04.2009, at 15:12, LeeRisq wrote: > > I've been following along with the Djangobook. When I try to configure > the postgresql db, I get that error. I've tried tracing the problem >

Re: OperationError: fe_sendauth: no password supplied

2009-04-08 Thread Randy Barlow
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 LeeRisq wrote: > I've been following along with the Djangobook. When I try to configure > the postgresql db, I get that error. I've tried tracing the problem > myself and have been unsuccessful. > > From Chapter 5: > from django.db import conne

OperationError: fe_sendauth: no password supplied

2009-04-08 Thread LeeRisq
I've been following along with the Djangobook. When I try to configure the postgresql db, I get that error. I've tried tracing the problem myself and have been unsuccessful. >From Chapter 5: >>> from django.db import connection >>> cursor = connection.cursor() Then I get the error. Any ideas?