Monthly Archive for May, 2006

I finally will be able to sleep quietly…

Woohoo ! Something I wanted so much happened: my hosting provider added TLS/SSL authentification on their FTP servers.

Thanks Lost-Oasis !

How-to locally Disable Python CGI scripts.

Since the beggining of this blog, my collection of python scripts were not readable. This was due to the fact that files with .py extension are seen by the apache web server as CGI scripts. To tell apache that python files can be published as-is, put a .htaccess beside your files. Then edit it to add the following directive:

RemoveHandler .py

That’s all ! This will let apache serve .py files as normal plain text files. More info about RemoveHandler can be found in official apache documentation.