how to activate wordpress plugins internally ? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T17:06:33Z http://stackoverflow.com/feeds/question/1415958 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1415958/how-to-activate-wordpress-plugins-internally 0 how to activate wordpress plugins internally ? Omie http://stackoverflow.com/users/132284 2009-09-12T19:50:03Z 2009-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#1420565 0 Answer by Sudar for how to activate wordpress plugins internally ? Sudar http://stackoverflow.com/users/24949 2009-09-14T09:40:52Z 2009-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#1422424 0 Answer by Omie for how to activate wordpress plugins internally ? Omie http://stackoverflow.com/users/132284 2009-09-14T15:52:43Z 2009-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>