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
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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-users?hl=en
-~----------~----~----~----~------~----~------~--~---