On Wed, 2006-02-22 at 22:51 +0000, iGL wrote: > Hi, > My hosting provider is planning to provide django support. I > volunteered to beta test it. > Things are mainly ok, however, when I tried to deploy > http://source.socialistsoftware.com/sssource/ by Jay Graves, I, all of > a sudden, encountered a problem: MSIE refuses("page cannot be > displayed) and Firefox does the same (empty output, only favicon.ico). > Error logs reveal nothing, access logs show the return code is... > 301(moved permanently). > I have no idea what's going on. Any hint is highly appreciated. > > You can take a look: http://www.self-propelled-python.com/blog; > http://www.self-propelled-python.com/blog/admin > > Django app is deployed on mod_python.
Something is wrong on the server side. I used 'curl' to try and retrieve the page from the command line, in order to see the returned headers and this is what I saw: `--> curl -I http://www.self-propelled-python.com/blog/admin/ curl: (52) Empty reply from server For python CGI scripts (mod_python or fastcgi), this is symptomatic of your code throwing an uncaught exception and, consequently, not writing anything to stdout. Check in /var/log/httpd/error_log, which is where any stderr output will (should?) be logged. Cheers, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---