Hey, it's not really a Django question but maybe someone has an idea :).
I have the following method: def sendfile(request, dataset_id): ds = DataSet.objects.select_related().get(id=dataset_id) filename = ds.table_information.object_name response = HttpResponse() response['X-Sendfile'] = os.path.join(DOWNLOADDIR, filename) content_type, encoding = mimetypes.guess_type(location) if not content_type: content_type = 'application/octet-stream' response['Content-Type'] = content_type response['Content-Length'] = os.path.getsize(location) response['Content-Disposition'] = 'attachment; filename="%s"' % os.path.basename(location) return response I have tested the single parts in the django shell and get "good values" (files size, name, content type). I also do get the download dialogue but the file I download is empty ... mod_xsendfile is installed and SHOULD work properly (don't know how to test it besides using this method :-P.) Does anyone have an idea why I get an empty file? Thanks! Katja --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---