Re: Authenticating against django auth db from apache

2014-08-19 Thread Héctor Urbina
I deleted my browser's cache and it worked!. I just thought that closing my session on the django project's page would also close my session on this directory... H. On Tuesday, August 19, 2014 3:49:07 PM UTC-4, Héctor Urbina wrote: > > Hello Collin, > > Yes, commenting out the check_password li

Re: Authenticating against django auth db from apache

2014-08-19 Thread Héctor Urbina
Hello Collin, Yes, commenting out the check_password line fixes the problem. On settings, I'm importing User from django.contrib.auth.models. I discovered that commenting out that stops the ImportError. However, the authentication doesn't happen when I visit my secret location. Apache simply sh

Re: Authenticating against django auth db from apache

2014-08-14 Thread Collin Anderson
Does commenting out the check_password line in wsgi.py actually fix the problem? Are you importing "auth" somewhere in your settings? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from

Authenticating against django auth db from apache

2014-08-14 Thread Héctor Urbina
Hello, I'm following intructions in https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/apache-auth/, but the wsgi.py script is giving the following error: ImportError: Could not import settings 'uddo.settings' (Is it on sys.path? Is there an import error in the settings file?): cannot