Hello, A quick fix for piki.py to solve a minor annoyance on Windows... If piki.py is not installed in the topmost directory of the web server, it does not seem work. I installed it into /cgi-bin and had some trouble at first. The problem is that on line 577 of piki.py it says: elif len(path_info) and path_info[0] == '/': query = path_info[1:] or 'FrontPage' but this assumes that there is only one '/' in the path and it occurs as the first character. For me, my path_info winds up being '/cgi-bin/piki.py' so I always get the "Can't work out query" message. I changed these lines to: elif len(path_info) and path_info[0] == '/': lastslash = string.rfind(path_info, '/') query = path_info[lastslash+1:] or 'FrontPage' which works in a wider variety of situations. I hope you find this helpful :-) Tom Good