the grooverwiki appliance has been subject of previous discussion. My install is still not working, although it has improved (allows wiki pages to be entered under admin) when I applied a change suggested in the thread.
I think I have isolated the problem to the following section: try: page_id=int(request.args[0]) curr_page=db(db.WikiPage.id==page_id).select(db.WikiPage.ALL) [0] except Exception, e: curr_page=db().select(db.WikiPage.ALL)[0] categories=db().select(db.category.ALL) etc... I include the suggestion that helped a bit: "grooverwiki worked when db=sqldb("sqlite://db.db") is changed to db=sqldb("sqlite:// storage.db") in models/db.py" After some frustrating 'looping' around the problem are there any further suggestions ?