帝国CMS后台登录空白怎么办?如何修改成https
今天总结一下帝国cms 后台登录空白常见问题已经解决方案!
1、帝国cms修改成https后后台登陆空白的解决办法
以下方法适用帝国cms7.5版本:
7.5版本已经有了http和https自动识别,但是因为一些疑难杂症的原因,自动识别判断的不准,后台登录也是空白,
我们可以打开e/config.php查找'httptype'=>0改为'httptype'=>2即可
'httptype'=>0, 代表自动
'httptype'=>1,代表全站http
'httptype'=>2,代表全站https
'httptype'=>3,代表后台https,前台http
'httptype'=>,代表后台http,前台https
以下方法适用帝国cms7.2和以下的版本:
方法一、
打开/e/class/connect.php文件,ctrl+h
查找
1return 'http://'.$domain;
替换为
1return ($_server['https'] ? 'https':'http').'://'.$domain;
方法二、
步骤一:找到/e/class/connect.php文件中如下代码:
123456789function ereturndomain(){ $domain=reppoststr($_server['http_host'],1); if(empty($domain)) { return''; } return 'http://'.$domain; }
替换成:
12345678910111213$domain=reppoststr($_server['http_host'],1); if(empty($domain)) { return ''; } return ($_server['https'] ? 'https':'http').'://'.$domain; }
步骤二:
找到
123456789101112131415function fwereturndomain(){ $domain=reppoststr($_server['http_host'],1); if(empty($domain)) { return ''; } return 'http://'.$domain; }
替换为:
12345678910111213$domain=reppoststr($_server['http_host'],1); if(empty($domain)) { return ''; } return ($_server['https'] ? 'https':'http').'://'.$domain; }
以上是关于帝国cms修改成https后后台登陆空白的解决办法!
2、刚刚安装好的程序登陆后台空白
查看php版本,不要超过5.6!
还有一些就是验证问题,导致登陆出现空白页面,请耐心排查!
转载:非常欢迎各位朋友分享到个人站长或者朋友圈,但转载请说明文章出处“黎青松seo博客”。
原文地址:http://www.alitaohuo.com/cmsjiaocheng/diguojiaocheng/1989.html
上一篇: 如何布局网站结构有利于SEO优化呢?
下一篇: 如何减少 降低网站的跳出率 干货教程