Notes on Using Python for CGI Scripts under Apache

I've been using PHP for so long that I haven't had much call to delve into the CGI-BIN directory in quite a while. Once I determined that my host has Python installed, I decided to see if I can run Python scripts from the CGI-BIN directory. It can be done, but right off the bat I ran into a problem whose cause wasn't immediately apparent.

I had a simple hello world script in the cgi-bin directory:
hello.py
#!/usr/bin/python
print "Content-Type: text/html\n\n"
print "Hello, world!"

Path to the interpreter correct, check. Permissions set to executable, check. Nevertheless, Apache kept returning an HTTP 500 error, and writing "Premature end of script headers" to the log.

Shame on me for editing the file over ange-ftp from a Windows installation of Emacs; the script was getting saved with the vexing MS-DOS style rn newlines, which was causing the error. Once I figured that out and stripped those damn ^M characters from the file in Emacs literal mode, I remember having the same problem back when I was using PERL.

Emacs-specific Stuff

With a little more digging I finally found out how to do what I've always suspected was possible, that is to configure Emacs to always create files in 'UNIX' mode even when running on Windows. Add this to your .emacs file:

(setq default-buffer-file-coding-system 'undecided-unix)

And, to fix the newline characters in an existing file, you can use

set-buffer-file-coding-system

(Usually bound to C-x RET f.) Enter 'unix' at the prompt, and re-save the file.

(Many thanks to Stephen Leake for his post at http://mail.gnu.org/archive/html/help-emacs-windows/2002-12/msg00053.html)

Syndicate content

Twitter

  • @ernestkoe basically this script with duration set to 25 minutes, and limited to tracks 3 minutes & under: http://t.co/bupgfBH 4 years 34 weeks ago
  • @ernestkoe has got me digging Pomodoro. I modified one of my iTunes applescripts to make me nice 25 minute playlists. 4 years 34 weeks ago
  • @tommysalami I'm planning to tear it down and make a static site with links to activity streams elsewhere; it's hardly a destination. 4 years 35 weeks ago
  • @tommysalami I think you may be the one person on the internets subscribed to my RSS feed. That was the first thing I've posted all year! 4 years 35 weeks ago
  • Possibly the most simultaneously hilarious and disturbing video you'll watch today. http://sgp.cm/6f9b89 4 years 37 weeks ago

Older

Contact

Andy Chase
(978) 297-6402
andychase [at] gmail.com
GPG/PGP Public Key