diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-07-26 10:46:52 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-07-26 10:46:52 -0500 |
commit | 5e9e2deee68e3368533586fe9d6efdd6fd0d007f (patch) | |
tree | 98480867161950c0549fb6a7d76d925190b53e9c /docs/source/siteadmin | |
parent | 33e902e3b39d9f4b25280ccd15300eaca624e778 (diff) | |
parent | 05d8f314c639f30a699c63e3d4f8feae9a5ba60b (diff) | |
download | mediagoblin-5e9e2deee68e3368533586fe9d6efdd6fd0d007f.tar.lz mediagoblin-5e9e2deee68e3368533586fe9d6efdd6fd0d007f.tar.xz mediagoblin-5e9e2deee68e3368533586fe9d6efdd6fd0d007f.zip |
Merge remote-tracking branch 'refs/remotes/willkg/plugins-infrastructure-rewrite'
Diffstat (limited to 'docs/source/siteadmin')
-rw-r--r-- | docs/source/siteadmin/plugins.rst | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/source/siteadmin/plugins.rst b/docs/source/siteadmin/plugins.rst index 41f2970f..f5a78da7 100644 --- a/docs/source/siteadmin/plugins.rst +++ b/docs/source/siteadmin/plugins.rst @@ -135,3 +135,35 @@ For plugins that you install with pip, you can upgrade them with pip:: pip install -U <plugin-name> The ``-U`` tells pip to upgrade the package. + + +Troubleshooting plugins +======================= + +Sometimes plugins just don't work right. When you're having problems +with plugins, think about the following: + +1. Check the log files. + + Some plugins will log errors to the log files and you can use that + to diagnose the problem. + +2. Try running MediaGoblin without that plugin. + + It's easy to disable a plugin from MediaGoblin. Add a ``-`` to the + name in your config file. + + For example, change:: + + [[mediagoblin.plugins.flatpages]] + + to:: + + [[-mediagoblin.plugins.flatpages]] + + That'll prevent the ``mediagoblin.plugins.flatpages`` plugin from + loading. + +3. If it's a core plugin that comes with MediaGoblin, ask us for help! + + If it's a plugin you got from somewhere else, ask them for help! |