Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Web app written in Python+Django. On my machine, it works fine; as soon as I push it into production, it starts acting up.

For some reason, my login screen loads fine. But, as soon as I try to log in, I get the homepage either as a download (if I turn gzip middleware on), or as a plain text page containing the response.

My production server runs Python 2.6.8, and my Django version is 1.4.1-final. I don't have access to mod_wsgi, so I use CGI instead. Here's my .htaccess and FCGI script. It's really just a cheap shared hosting plan, but I have another Django site there that works fine.

share|improve this question

2 Answers

up vote 1 down vote accepted
+200

It seems unlikely, but setting a different content_type in your response can make this happen sometimes, e.g.

response = HttpResponse(my_data, content_type='application/vnd.ms-excel') response['Content-Disposition'] = 'attachment; filename="foo.xls"'

(Django Docs)

Can you link a line or two of your response call?

share|improve this answer
It's probably something like that, somewhere; yet, I don't recall ever needing anything like it, and a search of my codebase returns nothing. The login page uses a function-based generic view, while the homepage (which renders as text) uses a custom view; I'll look at that. – egasimus Nov 29 '12 at 20:07
Here's my custom view. Maybe it's due to using render instead of render_to_response. Gonna check it out now. – egasimus Nov 29 '12 at 20:14
Ahh. It was that rogue print statement I used for crude debugging. I'm an ass! – egasimus Nov 29 '12 at 20:41
@egasimus Please write directly to your question that it is closed yet. Nobody should waste time by it more. – hynekcer Dec 2 '12 at 0:15

Most probably it's due to the fact you expose it as a cgi, but you use django.core.servers.fastcgi. Apparently django isn't supposed to be exposed as plain CGI, but some tried, found this blogpost : http://joemaller.com/1467/django-via-cgi-on-shared-hosting/

share|improve this answer
thanks for your downvote, gentleman, I appreciate – vincent Nov 25 '12 at 17:05
Wasn't me who down voted, but flup, which Django uses for implementing its FASTCGI bridge, can actually downgrade to running as CGI if it detects that it was run in context of a CGI script. Thus as long as wasn't setup in a way that would prevent it, it may technically work. That said, running Django as CGI is a very bad idea because the load time of Django and the application would be even worse than the actual Python interpreter startup time, so response times would be really bad. – Graham Dumpleton Nov 25 '12 at 22:07
Still, why would some pages load, and some not? And there's another site running there with mostly the same settings (it doesn't use any form of login, though) – egasimus Nov 26 '12 at 3:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.