我必须更改插件文件才能正常工作。我认为它可以帮助某些人,甚至插件的作者也应该考虑进行这些更改。
在类管理上。php,在beggining处创建此函数(可以是第9行):
function loadXmlByCurl($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$xml = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($xml);
return $xml;
}
现在更换该行
$dom_object->load("http://www.facebook.com/translations/FacebookLocales.xml");
根据
$xml = loadXmlByCurl("http://www.facebook.com/translations/FacebookLocales.xml");
$dom_object = dom_import_simplexml($xml)->ownerDocument;
你已经准备好了。