Some notes on setting up a UseMod Wiki for each RubyForge project To register the plugin with GForge: Edit /etc/gforge/local.inc - add $sys_plugins_path="/var/www/gforge-3.0/www/plugins/"; Add plugin to directory - mkdir -p /var/www/gforge-3.0/www/plugins/usemodwiki/include/ - copy in -- usemodwiki-init.php -- UseModWikiPlugin.class -- index.php Edit plugin files to make sure include paths are right Add items to Base.tab (note this should go in a site-specific file) - edit the wikiabout text to point to the right place: -- http://support.rubyforge.org/wiki/wiki.pl Check common/include/PluginManager.class, ensure that the path in LoadPlugins is correct. This is the magic moment: Register plugin in database - insert into plugins (plugin_name, plugin_desc) values ('usemodwiki', 'UseModWiki'); Go to admin page, edit public info, Wiki box should appear, w00t project.rb will do the work for each project - creating the $project/wiki directory, copying in wiki.pl, setting perms, adding the vhost Directory entry, etc. project.rb also contains changes to set up a wiki for each new project.