本文目錄1解決方法
啟用外掛時,有時會出現錯誤提示,“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