Python noob, as this is my first project, so excuse my unfamiliarity.
The site worked very well until I clicked "log out" in my application. After that, the site will give me this error: DoesNotExist at / login / The site compliance request does not exist.
I searched everywhere, and the only solution I get is related to setting the site structure, SITE_ID, etc. I think these items are fine on my computer, but I can't find a walkthrough / guide to help me check them out.
Can someone tell me what the problem is and how to fix it? Thanks in advance: 3
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'NAME': '/home/dotcloud/nhs.db', # Or path to database file if using sqlite3. 'USER': '', # Not used with sqlite3. 'PASSWORD': '', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. 'PORT': '', # Set to empty string for default. Not used with sqlite3. }
}
python django
user1576866 Aug 05 2018-12-12T00: 00Z
source share