how to activate wordpress plugins internally ? - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T17:06:33Zhttp://stackoverflow.com/feeds/question/1415958http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1415958/how-to-activate-wordpress-plugins-internally0how to activate wordpress plugins internally ?Omiehttp://stackoverflow.com/users/1322842009-09-12T19:50:03Z2009-09-14T15:52:43Z
<p>Hello,</p>
<p>I am creating a small utility which will help to rebuild install.php of wordpress.</p>
<p>What I want to achieve is, when user will install wordpress with this customized install.php, he'll get some plugins already activated.</p>
<p>I tried to put these lines at the end of install.php file</p>
<pre><code>require_once('path...\wordpress\wp-includes\plugin.php');
activate_plugin('hello.php');
</code></pre>
<p>that activates Hello Dolly plugin but shows error 'invalid datatype for second argument on line 310' for plugin.php</p>
<p>Also, if I try plugins which are inside a folder, for example</p>
<pre><code>require_once('path...\wordpress\wp-includes\plugin.php');
activate_plugin('plugin-folder\file.php');
</code></pre>
<p>its not getting activated.
[i've tried different combinations for sending arguments, echoing arguments in plugin.php etc. but activate_plugin() does receive correct argument. ]</p>
<p>Consider that plugins are already copied in wp-content/plugins directory.</p>
<p>Whats wrong? Is there any different way to achieve this ? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1415958/how-to-activate-wordpress-plugins-internally/1420565#14205650Answer by Sudar for how to activate wordpress plugins internally ?Sudarhttp://stackoverflow.com/users/249492009-09-14T09:40:52Z2009-09-14T09:40:52Z<p>Instead of including plugin.php file, include the wp-load.php file</p>
<pre><code>require_once('path...\wordpress\wpload.php');
</code></pre>
<p>wpload.php will automatically include all the file in the correct order, which should solve your issue.</p>
http://stackoverflow.com/questions/1415958/how-to-activate-wordpress-plugins-internally/1422424#14224240Answer by Omie for how to activate wordpress plugins internally ?Omiehttp://stackoverflow.com/users/1322842009-09-14T15:52:43Z2009-09-14T15:52:43Z<p>Atlast I came up with a new activate_plugin function that I added to that file. Problem in old function is the check for active plugins. At first since there is no active plugin, it was returning null value, showing the error. I removed that for my use.</p>
<p>why we dont see errors when using from wordpress dashboard ? wordpress hides them.</p>
<p>Thanks anyway..</p>