|
I think it is because you are calling print or echo on an object without a __toString method defined. I believe you can no longer do this in PHP5.2+ (don't quote me on that). Wordpress uses a class WP_Error to pass error messages between methods. Calling print on an instance of this class will fail if it does not have a __toString method. You mentioned that you installed a "mu script", do you mean a plugin? If so it may not be compatible with your version of wordpress, or PHP.
Last edited by NullPointer; 10-29-2009 at 03:35 PM..
|