如果想纯内网使用需要你修改些配置。
1.(视频播放,文件上传 无法使用问题)
a.下载sdk文件:
链接: https://pan.baidu.com/s/1akGId9DOrtN60iec_Acu1A 提取码: n27n
sdk功能是持续在更新的 目前这个是2021-11-01版本,能正常使用 如需最新需要联系官方获取
b.替换文件 :
替换项目目录web/service-cdn
c. 创建文件(不用管它干嘛用的,没有这个你打不开下一步)
app/data 下新建dev.lock 文件
d. 修改配置 :
进入你的网校地址 /app_dev.php/admin/setting/developer 修改气球云SDK的CDN地址为 域名/service-cdn/ 例子dev.edudev.com/service-cdn/ 切记不带http://
2.课程列表页500问题(调试模式下 Requested API Server list from CDN failed 报错)
一步到位修改代码
修改src/Biz/CloudPlatform/Client/FailoverCloudAPI.php 文件中的 getServerList方法
public function getServerList($nextRefreshTime = 0)
{
$prevApiUrl = $this->apiUrl;
$this->setApiUrl($this->rootApiUrl);
$servers = parent::_request('GET', '/server_list', array(), array());
$servers = '{"root":"http:\/\/api.edusoho.net","leafs":[{"url":"http:\/\/leafapi1.edusoho.net","used_count":0},{"url":"http:\/\/leafapi2.edusoho.net","used_count":0}],"current_leaf":"http:\/\/leafapi2.edusoho.net","failed_count":0,"failed_expired":0,"next_refresh_time":1652733014}';
$servers = json_decode($servers, true);
$this->setApiUrl($prevApiUrl);
if (empty($servers) || empty($servers['root']) || empty($servers['current_leaf']) || empty($servers['leafs'])) {
$servers = $this->getServerListFromCdn();
if (empty($servers) || empty($servers['root']) || empty($servers['leafs'])) {
throw new \RuntimeException('Requested API Server list from CDN failed.');
}
}
edusoho 二开问题可私信我
注: 如果你想完全内网部署使用。还需要修改部分代码 官方没有相应的配置。 之前踩坑了 纯内网部署 后台所有页面卡顿等问题。有问题可私信咨询