Hi,
I just installed Wordpress MU and think its really fabulous. I had some trouble getting plugins for Wordpress working with wordpress mu. Specifically, when I'd try to activate any plugin, I would receive an error which looked like "Fatal error: Cannot redeclare class [classname.php] in file [filename.php].."
I was able to solve this by editing the file in question and enclosing the class with the following code
if (!class_exists("my_class")) {
class my_class {
// yada...
}
}
I found this solution in a reply to a wordpress forum post at:
http://wordpress.org/support/topic/52702?replies=7
I've been able to install several wordpress plugins using this workaround. I dont know if this is likely to create problems later, but for now it seems to be doing fine.
Just wanted to record it here in case someone else encounters the same problem.