<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The mu-plugins folder</title>
	<atom:link href="http://wpmututorials.com/plugins/the-mu-plugins-folder/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/</link>
	<description>WordPress multisite how to - making sense of the network feature from what was wordpress mu</description>
	<lastBuildDate>Thu, 26 Jan 2012 22:51:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: shiv</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-11584</link>
		<dc:creator>shiv</dc:creator>
		<pubDate>Tue, 04 Jan 2011 10:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-11584</guid>
		<description>i have installed mu plugin and i create a plugin where i want every blog user insert a tag line there blog admin can also insert a tag line but admin tag line should be shown on every plugin how can i do this thing in mu plugin please tell me as soon as possible</description>
		<content:encoded><![CDATA[<p>i have installed mu plugin and i create a plugin where i want every blog user insert a tag line there blog admin can also insert a tag line but admin tag line should be shown on every plugin how can i do this thing in mu plugin please tell me as soon as possible</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrea</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-10118</link>
		<dc:creator>andrea</dc:creator>
		<pubDate>Sat, 31 Jul 2010 17:47:59 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-10118</guid>
		<description>&quot;The plug-ins that work across all MU blogs are called MU plugins and these plugins are optionless? &quot;

No. Some of them have options pages. The only plugins that go in this folder will specifically instruct you to do so in their readme.txt file.

do NOT put regular plugins here.

If you;re using things like contact forms, you activate them as usual or Network-wide. Each options page will still need to be filled in from the backend of each blog.</description>
		<content:encoded><![CDATA[<p>&#8220;The plug-ins that work across all MU blogs are called MU plugins and these plugins are optionless? &#8221;</p>
<p>No. Some of them have options pages. The only plugins that go in this folder will specifically instruct you to do so in their readme.txt file.</p>
<p>do NOT put regular plugins here.</p>
<p>If you;re using things like contact forms, you activate them as usual or Network-wide. Each options page will still need to be filled in from the backend of each blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-10103</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Thu, 29 Jul 2010 04:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-10103</guid>
		<description>//FYI for anyone who wants to know the answer to my question from last year, I changed it to be
function runit_activate()
{
    $installed = get_option( &#039;my_software_setup&#039; );  
    // make this unique as you do not want this to collide with anyone else&#039;s options
    if (!$installed ==&#039;001&#039;) {
        
    wp_schedule_event( time(), &#039;hourly&#039;, &#039;runit_hourly&#039; );
    update_option( &#039;permalink_structure&#039;, &#039; / % postname % / &#039; );
    update_option( &#039;enable_xmlrpc&#039;, &#039;1&#039; );
    update_option( &#039;display_pnp&#039;, &#039;0&#039; );
    update_option( &#039;use_pagination&#039;, &#039;1&#039; );
    update_option( &#039;wpsc_products_per_page&#039;, &#039;20&#039; );
    update_option( &#039;wpsc_page_number_position&#039;, &#039;3&#039; );
    add_option(&quot;my_software_setup&quot;, &#039;001&#039;, &#039;&#039;, &#039;no&#039;);
    }
}

// Turn off the hourly event if we deactivate the plugin.
function runit_deactivate()
{
    wp_clear_scheduled_hook( &#039;runit_hourly&#039; );
    delete_option(&#039;my_software_setup&#039;);
}
// You can leave this if you want an option to use it in the plugins folder also
register_deactivation_hook( __file__, &#039;runit_deactivate&#039; );</description>
		<content:encoded><![CDATA[<p>//FYI for anyone who wants to know the answer to my question from last year, I changed it to be<br />
function runit_activate()<br />
{<br />
    $installed = get_option( &#8216;my_software_setup&#8217; );<br />
    // make this unique as you do not want this to collide with anyone else&#8217;s options<br />
    if (!$installed ==&#8217;001&#8242;) {</p>
<p>    wp_schedule_event( time(), &#8216;hourly&#8217;, &#8216;runit_hourly&#8217; );<br />
    update_option( &#8216;permalink_structure&#8217;, &#8216; / % postname % / &#8216; );<br />
    update_option( &#8216;enable_xmlrpc&#8217;, &#8217;1&#8242; );<br />
    update_option( &#8216;display_pnp&#8217;, &#8217;0&#8242; );<br />
    update_option( &#8216;use_pagination&#8217;, &#8217;1&#8242; );<br />
    update_option( &#8216;wpsc_products_per_page&#8217;, &#8217;20&#8242; );<br />
    update_option( &#8216;wpsc_page_number_position&#8217;, &#8217;3&#8242; );<br />
    add_option(&#8220;my_software_setup&#8221;, &#8217;001&#8242;, &#8221;, &#8216;no&#8217;);<br />
    }<br />
}</p>
<p>// Turn off the hourly event if we deactivate the plugin.<br />
function runit_deactivate()<br />
{<br />
    wp_clear_scheduled_hook( &#8216;runit_hourly&#8217; );<br />
    delete_option(&#8216;my_software_setup&#8217;);<br />
}<br />
// You can leave this if you want an option to use it in the plugins folder also<br />
register_deactivation_hook( __file__, &#8216;runit_deactivate&#8217; );</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-10095</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Thu, 29 Jul 2010 01:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-10095</guid>
		<description>&quot;these plugins are optionless&quot;

Not necessarily. They are must-use and are always active. If they have an admin screen you still have access to the admin screen.</description>
		<content:encoded><![CDATA[<p>&#8220;these plugins are optionless&#8221;</p>
<p>Not necessarily. They are must-use and are always active. If they have an admin screen you still have access to the admin screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-10083</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-10083</guid>
		<description>Let me summarise what I think is being said here. The plug-ins that work across all MU blogs are called MU plugins and these plugins are optionless? I understand the options can be set in PHP but what about plugins like Contact Form 7 and Gravity Forms where you build stuff using the UI? And no one here has even mentioned that! If I&#039;m wrong then MU (now part of 3.0) just might be worth a try. If I&#039;m not, MU has taken away the very thing that makes WP great.</description>
		<content:encoded><![CDATA[<p>Let me summarise what I think is being said here. The plug-ins that work across all MU blogs are called MU plugins and these plugins are optionless? I understand the options can be set in PHP but what about plugins like Contact Form 7 and Gravity Forms where you build stuff using the UI? And no one here has even mentioned that! If I&#8217;m wrong then MU (now part of 3.0) just might be worth a try. If I&#8217;m not, MU has taken away the very thing that makes WP great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoff Lord</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-5970</link>
		<dc:creator>Geoff Lord</dc:creator>
		<pubDate>Tue, 26 Jan 2010 00:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-5970</guid>
		<description>hi there

yes you add as many themes as you want in to the wpmu themes folder and each blog you create can have a different themes selected.

after all that is the basic idea behind the MU system. :)</description>
		<content:encoded><![CDATA[<p>hi there</p>
<p>yes you add as many themes as you want in to the wpmu themes folder and each blog you create can have a different themes selected.</p>
<p>after all that is the basic idea behind the MU system. <img src='http://wpmututorials.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anes P.A</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-5937</link>
		<dc:creator>Anes P.A</dc:creator>
		<pubDate>Mon, 25 Jan 2010 07:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-5937</guid>
		<description>Hi pals,
I successFully install Wordpress MU in my localhost system. Friends,I need to give Each Blog to Different Theme. If I have 10 blogs there,
I need to give 10 different themes for same. Is that Possible in Wordpress MU ... Please Give A solution as Early as Possible....

You can contact me : anes.pa@amskape.com also...

With Great Regards
Anes P.A</description>
		<content:encoded><![CDATA[<p>Hi pals,<br />
I successFully install WordPress MU in my localhost system. Friends,I need to give Each Blog to Different Theme. If I have 10 blogs there,<br />
I need to give 10 different themes for same. Is that Possible in WordPress MU &#8230; Please Give A solution as Early as Possible&#8230;.</p>
<p>You can contact me : <a href="mailto:anes.pa@amskape.com">anes.pa@amskape.com</a> also&#8230;</p>
<p>With Great Regards<br />
Anes P.A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-3069</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Wed, 25 Nov 2009 08:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-3069</guid>
		<description>I&#039;m setting up new wpmu for my own. This is good information for me. thank you</description>
		<content:encoded><![CDATA[<p>I&#8217;m setting up new wpmu for my own. This is good information for me. thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brad</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-1258</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Fri, 02 Oct 2009 05:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-1258</guid>
		<description>any ideas how to change from a hook? so I can run it as mu?  

Here&#039;s what the plugin is using now:

function runit_activate()
{
    wp_schedule_event( time(), &#039;hourly&#039;, &#039;runit_hourly&#039; );
    update_option( &quot;permalink_structure&quot;, &#039;/%postname%/&#039; );
    update_option( &quot;enable_xmlrpc&quot;, &#039;1&#039; );
    update_option( &quot;display_pnp&quot;, &#039;0&#039; );
    update_option( &quot;use_pagination&quot;, &#039;1&#039; );
    update_option( &quot;wpsc_products_per_page&quot;, &#039;20&#039; );
    update_option( &quot;wpsc_page_number_position&quot;, &#039;3&#039; );
}

// Turn off the hourly event if we deactivate the plugin.
function runit_deactivate()
{
    wp_clear_scheduled_hook( &#039;runit_hourly&#039; );
}
  register_activation_hook(__FILE__, &#039;runit_activate&#039;);
   register_deactivation_hook(__FILE__, &#039;runit_deactivate&#039;);</description>
		<content:encoded><![CDATA[<p>any ideas how to change from a hook? so I can run it as mu?  </p>
<p>Here&#8217;s what the plugin is using now:</p>
<p>function runit_activate()<br />
{<br />
    wp_schedule_event( time(), &#8216;hourly&#8217;, &#8216;runit_hourly&#8217; );<br />
    update_option( &#8220;permalink_structure&#8221;, &#8216;/%postname%/&#8217; );<br />
    update_option( &#8220;enable_xmlrpc&#8221;, &#8217;1&#8242; );<br />
    update_option( &#8220;display_pnp&#8221;, &#8217;0&#8242; );<br />
    update_option( &#8220;use_pagination&#8221;, &#8217;1&#8242; );<br />
    update_option( &#8220;wpsc_products_per_page&#8221;, &#8217;20&#8242; );<br />
    update_option( &#8220;wpsc_page_number_position&#8221;, &#8217;3&#8242; );<br />
}</p>
<p>// Turn off the hourly event if we deactivate the plugin.<br />
function runit_deactivate()<br />
{<br />
    wp_clear_scheduled_hook( &#8216;runit_hourly&#8217; );<br />
}<br />
  register_activation_hook(__FILE__, &#8216;runit_activate&#8217;);<br />
   register_deactivation_hook(__FILE__, &#8216;runit_deactivate&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rahul Bansal</title>
		<link>http://wpmututorials.com/plugins/the-mu-plugins-folder/#comment-1228</link>
		<dc:creator>Rahul Bansal</dc:creator>
		<pubDate>Mon, 28 Sep 2009 08:46:16 +0000</pubDate>
		<guid isPermaLink="false">http://wpmututorials.com/?p=7#comment-1228</guid>
		<description>Thanks andrea for quick inputs.
I am thinking about more starting more in-depth discussion on this topic at wpmu forum
I am doing my homework on this, gathering few points. 
I feel this issue needs more exposure.</description>
		<content:encoded><![CDATA[<p>Thanks andrea for quick inputs.<br />
I am thinking about more starting more in-depth discussion on this topic at wpmu forum<br />
I am doing my homework on this, gathering few points.<br />
I feel this issue needs more exposure.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

