> > I can't find them in my database...
Wikis are stored in the wiki_page table To make wiki_ tables visible you must add this statement to your base model file (i.e. db.py) auth.wiki(resolve=False) The resolve argument prevents web2py to configure the response for the wiki user interface, but adds the table definitions to the model, so you can do custom crud with wiki data. Then you can optionally call auth.wiki() in the controller to enable the wiki interface for a given action Wiki tables are not defined until auth.wiki is called. --

