qiniu-file-for-typecho icon indicating copy to clipboard operation
qiniu-file-for-typecho copied to clipboard

将 Typecho 的附件保存至七牛云存储

Results 2 qiniu-file-for-typecho issues
Sort by recently updated
recently updated
newest added

可能是七牛更新了代码吧,php我不懂。。 最近上传的图片都变成这样: ![20151126101330](https://cloud.githubusercontent.com/assets/3849072/11413659/67cd7dc4-9426-11e5-83ae-e8ee8ed58a4c.png) 还望作者解决一下!

增加 byte 流写入内容的考虑 用于XMLRPC接口上传附件因为XMLRPC上传用的byte流写入数据 108行 ```php $filename = $file['tmp_name']; if (!isset($filename)) return false; ``` 将其删掉 116行到127行 ``` php if ($error == null) .... else return false; ``` 将其改为 ```php if...