关于dedecms后台控制常用操作错位解决办法
如遇蓝奏网盘打不开lanzous替换成lanzoux尝试!
相信很多朋友下载到新的dedecms系统的时候用某些浏览器登录后台,会有常用操作上面看到有错位的现象,看上去就像乱码一样,其实这只是后台错位了,并非乱码显示,下面看解决方法
在 网站的安装目录下找到系统默认后台 dede 再按这个路径找到对应的文件
dede/templets/index_menu2.htm 然后搜索 .sitemu 然后再其它的样式中添加如下代码
然后加上:overflow:hidden; 修改后保存,然后上传刷新后台就能正常显示了.
首先找到网站根目录/include/ arc.listview.class.PHP
这里以列表首页显示6条,其他列表页显示9条为例,即
模板页标签{dede:list pagesize=”6″}{/dede:list}
$this->PageSize=6
1.找到函数ParseDMFields
在里面找
if($ctag->GetName()==”list”)
{
$limitstart=($this->PageNo-1) * $this->PageSize;
$row=$this->PageSize;
修改为
if($ctag->GetName()==”list”)
{
$limitstart=($this->PageNo-1) * $this->PageSize;
if($this->PageNo>2)
{
$limitstart=($this->PageNo-1) * ($this->PageSize+3)-3;
}
$row=$this->PageSize;
if($this->PageNo>1)
{
$row=$this->PageSize+3;
}
2.找到
$totalpage=ceil($this->TotalResult/$this->PageSize);//总共有两处分别为静态和动态
改为
$totalpage=ceil(1+($this->TotalResult-$this->PageSize)/($this->PageSize+3));