开启https后侧边栏日历无法正常显示
它会一直显示加载中...
我们只需要登录FTP找到
/include/lib/function.base.php
搜索以下代码:
return 'http://' . $_SERVER['HTTP_HOST'] . $matches[0];
更换为
return '//' . $_SERVER['HTTP_HOST'] . $matches[0];
开启https后侧边栏日历无法正常显示
它会一直显示加载中...
我们只需要登录FTP找到
/include/lib/function.base.php
return 'http://' . $_SERVER['HTTP_HOST'] . $matches[0];
return '//' . $_SERVER['HTTP_HOST'] . $matches[0];
评论