|
I'm getting this error on my Django site. My question is equivalent to this question on Stack Overflow: http://stackoverflow.com/questions/2979369/databaseerror-current-transaction-is-aborted-commands-ignored-until-end-of-tran The answer given there was to look at the PostgreSQL logs to see what query was failing. My question is how to find the PostgreSQL logs, or otherwise debug this issue, on WebFaction hosting? |
|
ok see this link https://docs.djangoproject.com/en/dev/ref/databases/ you can turn on this option in database settings temporarily to debug 'OPTIONS': { 'autocommit': True, } this will show you the sql error |
|
I just had a simmilar error in an OSQA server I was trying to stand up. It turned out that I had the wrong password in the local_settings.py file for the database. Make sure you password is correct! After changing the password, make sure you restart apache, or the changes will not take effect |