2008-01-24
How to twist wordpress plugin into wpmu
sometimes, we are just so stupid that wanna directly dump wordpress plugin into wpmu and wish it could work. Unfortunately, it won’t. And sometimes it looks everything is OK until you press the confirm button, your confirmation page will be leaded to the admin panel. why?
Hey, here is a simple way to twist.
Please remove this one ” $_SERVER[PHP_SELF].”
for example
plugin:
Picasa Plugin for WordPress
please open the page at wp-content/plugins/wp-picasalb/wp-picasalb.php
then do this
comment out
//define('PLB_ADMIN_URL', $_SERVER[PHP_SELF].”options-general.php?page=”.basename(PLB_DIR).’/’.PLB_FILE);
And replace it as:
define('PLB_ADMIN_URL', "options-general.php?page=".basename(PLB_DIR).'/'.PLB_FILE);
Related posts:
- wpmu array_merge() error for array when you twist wpmu, sometime plugin does not work well...
- Fotobook plugin conflicts If you put fotobook plugin into the wpmu, and you...
- wordpress memory exhaust problem Two steps you have to follow to fix the problem...
- Support Iphone surfing and optimize for Iphone layout Thanks for the people's hard working on wordpress and you...
- Wordpress export problem, solution and instruction As you may aware, when your xml size is over...
![[del.icio.us]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/digg.png)
![[Facebook]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/facebook.png)
![[Google]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/google.png)
![[MySpace]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/myspace.png)
![[Technorati]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/technorati.png)
![[Twitter]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/twitter.png)
![[Windows Live]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/windowslive.png)
![[Yahoo!]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/yahoo.png)
![[Email]](http://my.textjourney.com/eric/wp-content/plugins/bookmarkify/email.png)









One Response to “How to twist wordpress plugin into wpmu”