织梦dedecms实现中英文分页功能 1、打开include/arc.listview.class.php(本文以织梦dedecms5.6为例) 找到(约29行) var $remoteDir; 在其下面加上一个新行 var $pagelang; 找到(约528行) $list_len = trim($ctag-GetAtt(listsize)); 在其下面加上一个新...
dede搜索结果页支持article、sql、channelartlist 等标签 打开文件:include/arc.searchview.class.php 找到: span style=font-family:tahoma,geneva,sans-serif; require_once(DEDEINC./taglib/hotwords.lib.php); /span 在下面添加: span style=font-family:tahoma,geneva,sans-serif; require_once(DEDEINC....
不修改数据库dedecms怎么实现中英栏目名 首先找到 \include\taglib\channel.lib.php 大约在第140行 $likeType .= $linkOkstr; 在这个之前加入 $dirList = split(/,$row[typedir]); $dirName = array_pop($dirList); $linkOkstr = str_replace(~dirName~,$dirName,$linkOkstr); 调用方法如下...
dedecms5.7本地无法上传缩略图一直上传中怎么办 请修改 //uploadsafe.inc.php 第45行 $imtypes = array 改成 $imgtypes = array【你会发现少了个g】...
dedecms 栏目目录用首字母生成的方法 修改dede/catalog.add.php文件 85行 $toptypedir = GetPinyin(stripslashes($toptypename)); 修改为 $toptypedir = GetPinyin(stripslashes($toptypename),1); 108 行 $typedir = $toptypedir./.GetPinyin(stripslashes($v)); 修改为 $typedir = $toptypedi...
dede 搜索没结果要显示固定格式 修改include/arc.searchview.class.PHP 查找$this-dsql-FreeResult(al); 在下面添加: [html] if($artlist==) { $artlist=1; $artlist .= $this-Keyword; $artlist .= 未注册18000元/年未注册; }...
dede织梦上传的图片相对路径改成绝对路径 找到 \include\dialog\select_images_post.php 第108行 $fileurl = $activepath./.$filename; 换成: $fileurl = $cfg_cmsurl.$activepath./.$filename;...
织梦搜索页调用arclist和channelartlist标签的教程 打开include/arc.searchview.class.php 查找: require_once(DEDEINC./taglib/hotwords.lib.php); require_once(DEDEINC./taglib/channel.lib.php); 在下面加入: require_once(DEDEINC./taglib/arclist.lib.php); require_once(DEDEINC./taglib/channelartl...
dede采集下载图片不载媒体视频的修改办法 打开include/dedecollection.class.php 查找: if($v==embed !preg_match(#\.(swf)\?(.*)$#i, $k) !preg_match(#\.(swf)$#i, $k)) 改为: if($v!=img !preg_match(#\.(jpg|gif|png)\?(.*)$#i, $k) !preg_match(#\.(jpg|gif|png)$#i, $k)) 查找: else if(pre...
解决dedecms中不能解析.html扩展名的模板问题 找到/include/arc.archives.class.php 把函数GetTemPleteFile()中的if (!preg_match(#.htm$#, $tmpfile)) return FALSE;(大概在556行), 改为if (!preg_match(#.html?$#, $tmpfile)) return FALSE;即可。...
dedecms织梦生成栏目列表后前台访问空白 打开 \include\arc.listview.class.php 找到 $this-CountRecord(); 改成 if(empty($this-TotalResult)) $this-CountRecord();...
织梦dedecms让上传的图片是绝对路径 打开 /include/dialog/select_images_post.php 文件 找到: $fileurl = $activepath./.$filename; 改成: $fileurl = $cfg_cmsurl.$activepath./.$filename;...