Opened 16 years ago

Last modified 16 years ago

#9014 closed

django admin MultiPartParserError in google chrome — at Initial Version

Reported by: aliixx Owned by: nobody
Component: Uncategorized Version: 1.0
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Following exception gets thrown in google chrome when you either save and continue editing or save and add another for any item in the django admin.
tested in Firefox 3 and IE 8 beta and i cannot replicate the error. Maybe its an issue with the way Chrome handles multipart form posts.

Environment:

Request Method: GET
Request URL: http://....
Django Version: 1.0-final-SVN-unknown
Python Version: 2.5.2
Installed Applications:
['django.contrib.auth',

'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.flatpages',
'bbs.clients',
'bbs.channels',
'bbs.advertisers']

Installed Middleware:
('django.middleware.common.CommonMiddleware',

'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.middleware.doc.XViewMiddleware',
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware')

Traceback:
File "C:\Python25\Lib\site-packages\django\core\handlers\base.py" in get_response

  1. response = callback(request, *callback_args, callback_kwargs)

File "C:\Python25\Lib\site-packages\django\contrib\admin\sites.py" in root

  1. return self.model_page(request, *url.split('/', 2))

File "C:\Python25\lib\site-packages\django\views\decorators\cache.py" in _wrapped_view_func

  1. response = view_func(request, *args, kwargs)

File "C:\Python25\Lib\site-packages\django\contrib\admin\sites.py" in model_page

  1. return admin_obj(request, rest_of_url)

File "C:\Python25\Lib\site-packages\django\contrib\auth\admin.py" in call

  1. return super(UserAdmin, self).call(request, url)

File "C:\Python25\Lib\site-packages\django\contrib\admin\options.py" in call

  1. return self.change_view(request, unquote(url))

File "C:\Python25\Lib\site-packages\django\db\transaction.py" in _commit_on_success

  1. res = func(*args, kw)

File "C:\Python25\Lib\site-packages\django\contrib\admin\options.py" in change_view

  1. if request.POST and request.POST.has_key("_saveasnew"):

File "C:\Python25\Lib\site-packages\django\core\handlers\modpython.py" in _get_post

  1. self._load_post_and_files()

File "C:\Python25\Lib\site-packages\django\core\handlers\modpython.py" in _load_post_and_files

  1. self._post, self._files = self.parse_file_upload(self.META, self._req)

File "C:\Python25\Lib\site-packages\django\http\init.py" in parse_file_upload

  1. parser = MultiPartParser(META, post_data, self.upload_handlers, self.encoding)

File "C:\Python25\Lib\site-packages\django\http\multipartparser.py" in init

  1. raise MultiPartParserError("Invalid content length: %r" % content_length)

Exception Type: MultiPartParserError at /admin/auth/user/2/
Exception Value: Invalid content length: 0

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top