>FastCGI: incomplete headers (0 bytes) received from server >"/home/bmabma/egsmtrade.com/hello.fcgi"
Since the hello.fcgi isn't in any way using something from Django, this sounds more like a Dreamhost problem than a Django problem. Did you ask in the Dreamhost forum? Maybe others there might be able to help. I don't use Dreamhost myself, but if you can check the error log for your site, you might see something in there that tells you what the problem is. Because this 0-byte problem usually shows up if your .fcgi gets a traceback while executing from the server - in those cases it only write to stderr (which usuall is captured in the servers error log) and nothing to the socket. Reasons for this might be different pythons used from the server and from the shell, for example (or different sys.path values within the server and the shell environment). bye, Georg