'WSGIRequest' object has no attribute 'user'
Asked Answered
C

3

5

I'am trying to make an auth module in my django project. But when I open my web site url I have a this error: 'WSGIRequest' object has no attribute 'user'

I've trying to find information about this problem and somebody said that the problem is in MIDDLEWARE_CLASSES but I can't understand it.

This is my MIDDLEWARE_CLASSES:

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    #'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

myproject/admin.py

from django.contrib import admin
from personal_area.models import UserProfile

admin.site.register(UserProfile)

myproject/forms.py

from personal_area.models import UserProfile
from django.contrib.auth.models import User
from django import forms


class UserForm(forms.Model):
    password = forms.CharField(widget=forms.PasswordInput())

    class Meta:
        model = User
        fields = ('username', 'email', 'password')


class UserProfileForm(forms.ModelForm):
    class Meta:
        model = UserProfile
        fields = ('website', 'picture')

myproject/models.py

from django.db import models
from django.contrib.auth.models import User


class UserProfile(models.Model):

    user = models.OneToOneField(User)

    website = models.URLField(blank=True)
    picture = models.ImageField(upload_to='profile_images', blank=True)

    def __unicode__(self):
        return self.user.username

myproject/views.py

from django.shortcuts import render, render_to_response, HttpResponseRedirect, RequestContext
from django.contrib import auth

from personal_area.forms import UserForm, UserProfileForm


def register(request):

    context = RequestContext(request)
    registered = False

    if request.method == 'Post':
        user_form = UserForm(data = request.POST)
        profile_form = UserProfileForm(data = request.POST)

        if user_form.is_valid() and profile_form.is_valid():
            user = user_form.save()

            user.set_password(user.password)
            user.save()

            profile = profile_form.save(commit = False)
            profile.user = user

            if 'picture' in request.FILES:
                profile.picture = request.FILES['picture']

            profile.save()
            registered = True

        else:
            print(user_form.errors, profile_form.errors)

    else:
        user_form = UserForm()
        profile_form = UserProfileForm()

    return render_to_response('personal_area/register.html', {'user_form': user_form, 'profile_form': profile_form,
                                                              'registered': registered}, context)

myproject/register.html

{% extends "home/base.html" %}

 {% block auth %}
        <h1>Register with Rango</h1>

        {% if registered %}
        Rango says: <strong>thank you for registering!</strong>
        <a href="/personal_area/">Return to the homepage.</a><br />
        {% else %}
        Rango says: <strong>register here!</strong><br />

        <form id="user_form" method="post" action="/personal_area/register/"
                enctype="multipart/form-data">

            {% csrf_token %}

            {{ user_form.as_p }}
            {{ profile_form.as_p }}

            <input type="submit" name="submit" value="Register" />
        </form>
        {% endif %}
{% endblock %}

This is tutorial for my module:

http://www.tangowithdjango.com/book/chapters/login.html#linking-together

Contortionist answered 26/10, 2014 at 18:4 Comment(0)
P
17

Your middleware ordering is wrong. Please read this part carefully. The order should be:

'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
Particulate answered 26/10, 2014 at 19:51 Comment(0)
F
5

Just remove CLASSES after MIDDLEWARE, and comment-out SessionAuthenticationMiddleware:

MIDDLEWARE = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    #'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
Flasher answered 14/5, 2018 at 11:25 Comment(1)
This helped me after upgrading from Django 1.11 to Django 2.0Vacillation
C
0

In addition to adjusting MIDDLEWARE, I also needed to update the wsgi entry-point:

Old:

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

New:

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
Couthie answered 11/1, 2023 at 15:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.