chekun / AppStore

The missing plugins store for Typecho!
http://typecho.chekun.me
MIT License
81 stars 12 forks source link

阿里云虚拟主机 没有找到任何插件 #36

Closed ywzhaiqi closed 7 years ago

ywzhaiqi commented 7 years ago

阿里云虚拟主机,通过 ftp 上传->安装->启用后,显示 没有找到任何插件

研究了下,发现了是由于 helpers/helpers.php 文件中的 http_get 无效。(对php不熟悉,不知道原因,用 Requests for PHP 正常)

临时解决方法,修改 http_get 函数为:

function http_get($url)
{
    return file_get_contents($url);
}
FaceChan commented 7 years ago

请确认php环境已提供curl支持.

ywzhaiqi commented 7 years ago

测试结果是

Curl error: SSL connect error

用了下面的还是同样的错误

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);

但用 curl 获取 https://www.baidu.com 却是有效

chekun commented 7 years ago

@ywzhaiqi 请使用最新版 https://github.com/chekun/AppStore/releases/tag/v2.0.0