这个插件在启用的过程中产生了2个字符的异常输出。 如果您遇到了“headers already sent”错误、联合feed(如RSS)出错等问题,请尝试禁用或移除本插件。
今天更新禁用用户的插件,提示上述错误,我们可以打开插件错误提醒来看看具体是哪里报错。
将以下代码放到插件的主文件中保存
- add_action('activated_plugin','save_error');
- function save_error(){
- update_option('plugin_error', ob_get_contents());
- }
- echo get_option('plugin_error');
然后在插件页面输出错误提醒
- get_option('plugin_error');
然后根据错误进行修改。
本次插件报错为Notice:Undefined index:submit in问题
将条件语句改为if(isset($_POST['submit']) && $_POST['submit'])即可。
ok错误解决
微信扫描下方的二维码阅读本文