#9934: Django is generating requests that result in untyped binary data download
in FF 3
---------------------------+------------------------------------------------
Reporter: voidfiles | Owner: nobody
Status: new | Milestone:
Component: Uncategorized | Version: 1.0
Keywords: | Stage: Unreviewed
Has_patch: 0 |
---------------------------+------------------------------------------------
Hi,
I am having a problem that seems like a ghost. I can find where it's
comming from. It doesn't happen all the time. But what happens is
sometimes when I go to a page. instead of loading the page, the
browsers askes me if I would like to download a file called untyped
binary data.
I am hosting the project on dreamhost. I am use fcgi.
I am starting the requests here in a dispatch.fcgi
#!/home/mysite/opt/bin/python
import sys, os
from flup.server.fcgi import WSGIServer
from django.core.handlers.wsgi import WSGIHandler
# Add a custom Python path.
sys.path.insert(0, "/home/mysite/site_code")
# Switch to the directory of your project. (Optional.)
os.chdir("/home/mysite/site_code")
# Set the DJANGO_SETTINGS_MODULE environment variable.
os.environ['DJANGO_SETTINGS_MODULE'] = "mysite.settings"
WSGIServer(WSGIHandler()).run()
This is what the file looks like that it asks me to download
--
Ticket URL: <http://code.djangoproject.com/ticket/9934>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---