如何如何解决“The plugin generated xxxx characters of unexpected output during activation” 错误

暖和的春天,万物复苏,运河水像刚刚清醒的小姑娘,浑身布满了活力,唱着新歌,向前奔去。

启用插件时,有时会出现错误提示,“The plugin generated xxxx characters of unexpected output during activation”,中文提示为“这个插件在启用的过程中产生了 XXXX 个字符的异常输出。如果您遇到了“headers already sent”错误、联合 feed(如 RSS)出错等问题,请尝试禁用或移除本插件”。如何才能查看具体的错误是什么呢?

解决方法

在这里找到了解决方法,你可以打开插件的主文件,添加下面的代码

1
2
3
4
5
add_action('activated_plugin','save_error');
function save_error(){
update_option('plugin_error',  ob_get_contents());
}
echo get_option('plugin_error');

add_action('activated_plugin','save_error'); function save_error(){ update_option('plugin_error', ob_get_contents()); } echo get_option('plugin_error');

这段代码将错误信息保存到wp-options表中,option_name是“plugin_error”,要获取这个字段的值只需要调用

1
get_option('plugin_error');

get_option('plugin_error');

这样,启用插件时,除了会显示WordPress默认的那段信息,还会在顶部显示错误。

用update_option()存储字段,是一种添加操作,每产生一条新错误,都会添加到这个字段中,所以最后一条才是最近的错误信息,有点类似错误日志。

如果不想产生数据库操作,还可以将错误信息直接写进一个临时文件中。

1
2
3
4
add_action('activated_plugin','save_error');
function save_error(){
file_put_contents ( 'C:/text.txt' , ob_get_contents() );
}

add_action('activated_plugin','save_error'); function save_error(){ file_put_contents ( 'C:/text.txt' , ob_get_contents() ); }

原文出处:http://www.solagirl.net/the-plugin-generated-xxxx-characters-of-unexpected-output-during-activation.html

以上就是如何如何解决“The plugin generated xxxx characters of unexpected output during activation” 错误。想想再过一年,你回到家,给他们带来的不是胜利的喜悦,而而是告诉他们,考得不好,那么这个寒假,你将要怎么去度过?想想清楚吧!更多关于如何如何解决“The plugin generated xxxx characters of unexpected output during activation” 错误请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress做公司官网好吗?会不会显得档次很低?

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?