Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8554941
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:00:04+00:00 2026-06-11T15:00:04+00:00

This is the error I am getting: The view extraio.file_uploader.views.Upload_File didn’t return an HttpResponse

  • 0

This is the error I am getting: The view extraio.file_uploader.views.Upload_File didn't return an HttpResponse object.

Can anyone see what I’m doing wrong here? I can’t seem to figure out why I would be getting that exception since I am returning an HttpResponseRedirect.

from django.http import HttpResponseRedirect
from django.shortcuts import render_to_response
from models import Files
from forms import Upload_File_Form

def Upload_File(request):
    if request.method == 'POST':
        form = Upload_File_Form(request.POST, request.FILES)
        if form.is_valid():
            for f in request.FILES.get_list('file'):
                f.save()
                orgfilename = Files(orgname=f.name)
                orgfilename.save()
            return HttpResponseRedirect('success.html')
        else:
            form = Upload_File_Form()
            return render_to_response('upload.html', {'form': form})
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:00:05+00:00Added an answer on June 11, 2026 at 3:00 pm

    You returning your HttpResponse object only on POST request.
    Rewrite your view like this

    def Upload_File(request):
        form = Upload_File_Form(request.POST or None,
                                request.FILES or None)
        if request.method == 'POST':
            if form.is_valid():
                for f in request.FILES.getlist('file'):
                    f.save()
                    orgfilename = Files(orgname=f.name)
                    orgfilename.save()
                return HttpResponseRedirect('success.html')
       return render_to_response('upload.html', {'form': form},
                                 context_instance=RequestContext(request))
    

    EDIT: BTW you forgot to set context_instance in you render_to_response
    Also you can use render instead

    render(request, 'upload.html', {'form': form})
    

    request.FILES.get_list('file') should be request.FILES.getlist('file')

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is the error I am getting The view djangocricket.Cricket.views.home didn't return an HttpResponse
I am getting this error: [code] You have a nil object when you didn't
I am getting this error when trying to pass my object to the view.
I keep getting this error in my google log. Can anyone point me in
I'm getting this error in the log.... What can I do to fix this?
when i scroll table view data then i am getting this error ** Terminating
I'm getting this error when I try to load another view: 2012-02-21 20:31:38.477 App
Hi i keep getting this error its an android.view.InflateException at line #9 xml Heres
I am getting this error and I really can't understand why. The code: b1.setOnClickListener(new
I am getting this error . Uncaught TypeError: Object # has no method 'exec'

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.