home > Symonds.net

Symonds.net

I was able to get web.py running without too much trouble on my hosting service Symonds.net. I created a personal status page with it, which can be viewed here. The source code for the page is also included.

Getting it up

web.py can be run on Symonds.net using FastCGI.

Note that the Python installation on Symonds.net did not have the following modules installed, so I had to install it inside my local folder.

Follow the instructions on your host:

On your local machine, as superuser :

After that, include the following in the .htaccess file inside the folder you downloaded web.py:

 Options FollowSymLinks ExecCGI

 <Files *py>     SetHandler cgi-script
 Addhandler cgi-script py
 </Files>

You might also want to include some URL redirection directives like :

  RewriteEngine on
  RewriteRule    ^status$ status.py/status

After this, you should be able to view your web.py app like here.

[edit][history][backlinks] last modified March 29, 2006