今天测试了一下QQ登陆插件 .不知道是为何一直导致服务器500.
最后发现是file_get_contents函数导致的.
于是做了一下小修改.来防止这个超时.如果你的主机也出现这个问题.那就拿去用吧.
打开plugins\pubs\qq\do.php
找到.if(!is_file($dfile)){ 在下面添加
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>3,
)
);
$context = stream_context_create($opts);
把 $img = file_get_contents($face); 修改为
$img = file_get_contents($face, false, $context);
OK~