ChiliProject is not maintained anymore. Please be advised that there will be no more updates.
We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.
Plugin Uninstall¶
Deactivate¶
To deactivate a plugin: "remove" it from the vendor/plugins directory- either by moving it away from there
- or by removing access rights for the chiliproject process (just chmod 000 some_plugin).
Uninstall¶
To uninstall a plugin you must first remove it's presence in the database, then remove the plugin files.
To uninstall a plugin from the DB, run:
rake db:migrate:plugin NAME=some_plugin VERSION=0
Then remove the plugin files from vendor/plugins
rm -rf vendor/plugins/some_plugin