Skip to content

Uninstalling Extensions

johnmuhl edited this page Aug 24, 2010 · 2 revisions

Using the built-in scripts

cd /path/to/radiant
./script/extension uninstall extension_name

For example if you wanted to uninstall the Help Extension you would run:

cd /path/to/radiant
./script/extension uninstall help

Then you just restart your application server and the extension will be removed.

Manual uninstallation

If you used the manual installation method you’ll need to use an equally manually uninstallation method.

cd /path/to/radiant
rake radiant:extensions:help:migrate VERSION=0
rm -r vendor/extensions/help

Then restart your application server.

Using Ray

cd /path/to/radiant
rake ray:extension:uninstall name=help
Clone this wiki locally