The MU forums have moved to WordPress.org

Moving plugins to mu-plugins folder (6 posts)

  1. amanzi
    Member
    Posted 15 years ago #

    I currently have a few, carefully selected plugins in the wp-content/plugins directory and I allow users to enable the plugins via the backend menu. But I want to disable the plugins menu now and move the plugins into the mu-plugins directory.

    I've found that plugins must be placed directly in the mu-plugins directory and not in a sub-directory as they can be in the plugins directory.

    Is there any way around this?

  2. Viper007Bond
    Member
    Posted 15 years ago #

    Many plugins will work fine if you only move the main plugin file I believe.

  3. Ovidiu
    Member
    Posted 15 years ago #

    or you edit them and just change the paths, its no big deal, but it would break again when you update them.

  4. dsader
    Member
    Posted 15 years ago #

    I like keeping folders in my mu-plugins.
    This works for me.
    Example: create a folder in /mu-plugins/ called mu-widgets
    Place this file along side the folder and all widgets in the mu-widgets folder will be included.
    <?php
    $mu_widgets = glob(dirname(__FILE__).'/mu_widgets/*.php');
    if( is_array( $mu_widgets ) ) {
    foreach ( $mu_widgets as $mu_widgets ) {
    if( is_file( $mu_widgets ) )
    include_once( $mu_widgets );
    }
    }
    ?>

  5. tdjcbe
    Member
    Posted 15 years ago #

    We also rename all of the files in those folders to make our lives a bit easier. Plugins for blogs get named plugin_ Widgets get named widget_ etc.

  6. phoenixwebtyrant
    Member
    Posted 15 years ago #

    Alternatively try using Plugin Commander which allows you to set plug-ins on a per-blog basis.

About this Topic

  • Started 15 years ago by amanzi
  • Latest reply from phoenixwebtyrant