• dedecms 管理员密码忘记怎么办?

    本工具是用于新人忘记管理员密码重设所制作,只需要将radminpass.php文件拷贝到根目录,运行“http://wmphp.com/radminpass.php(wmphp.com为网站域名)”,按照操作执行就可以。恢复完成后请及时删除这个文件!  本工具来自于官方。 附件下载: radminpass
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月28日 | 分类:DedeCMS技巧 | 阅读:1,984次 |
  • dede 时间格式汇总

    时间格式 {dede:field name='pubdate' function='strftime("%Y年%m月%d日 %H:%M:%S","@me")' /}2007年1月1日 18:30:02 {dede:field name='pubdate' function='strftime("%Y-%m-%d %H:%M:%S","@me")' /}2007-1-1 18:30:02 {dede:field name='pubdate' function='strftime("%Y年%m月%d日 %H时%M分%S秒","@me")' /}2007年1月1日 18时30分02秒 {dede:field name='pubdate' funct...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月26日 | 分类:DedeCMS技巧 | 阅读:1,285次 |
  • dede 自定义搜索的链接写法

    <a href='http://127.0.0.1/plus/advancedsearch.php?&mid=-8&tid=5&shi=3&ting=1 ' target="_blank">3室1厅</a> 其中mid=-8是模型ID,tid=5是栏目IDshi和ting是字段3和1是自定义搜索 备注:前提下先你需要先将shi和ting设置为自定义搜索
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月24日 | 分类:DedeCMS技巧 | 阅读:1,594次 |
  • dede 修补XSS跨站脚本攻击

    XSS又叫CSS (Cross Site Script) ,跨站脚本攻击。它指的是恶意攻击者往Web页面里插入恶意html代码,当用户浏览该页之时,嵌入其中Web里面的html代码会被执行,从而达到恶意 攻击用户的特殊目的。XSS属于被动式的攻击,因为其被动且不好利用,所以许多人常忽略其危害性。而本文主要讲的是利用XSS得到目标服务器的 shell。技术虽然是老技术,但是其思路希望对大家有帮助。 首...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月21日 | 分类:DedeCMS技巧 | 阅读:1,597次 |
  • dede:loop 标签下使用[field:global name=autoindex/]

    用dede:loop标签调用论坛贴子时,用 [field:global name=autoindex/]递增,如<li class=1>,<li>,,,等。 要修改一个文件。 include\taglib\loop.lib.php 找到 $ctp->LoadSource($Innertext); 下面加上: $GLOBALS['autoindex'] = 0; 找到 if(!empty($row[$ctag->GetName()])){ $ctp->Assign($tagid,$row[$ctag->GetName()]); } } 下面加上: $GLOBAL...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月19日 | 分类:DedeCMS技巧 | 阅读:1,710次 |
  • dede 模板标签语法简介

    织梦的模板标签类似于XML格式,所有的模板都含有定界符,默认情况下是{dede:*}和{/dede:*},“*”代表模板标记名称。 一般情况下{dede:*}和{/dede:*}是成对出现的,例如: 例1-1: {dede:arclist flag='h' limit='0,1'} <h2><a href="[field:arcurl/]">[field:title/]</a></h2> <p>[field:description/]...<a href="[field:arcurl/]">[查...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月17日 | 分类:DedeCMS技巧 | 阅读:1,376次 |
  • dede 扩展标签

    DedeCMS从V5.3开始就支持自己扩展标签,不过许多新人很少用那个东西,简单的介绍下如何编写自己的调用标签。 我们需要知道下扩展标签的存放目录及文件名构成,首先,扩展的标签都是存放在/include/taglib这个目录,名称都是以“标签名.lib.php”格式,例如{dede:channel/}标签对应的是channel.lib.php文件。 我们可以看一个示例标签:demotag.lib.php if(!defined('DEDEINC')...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月14日 | 分类:DedeCMS技巧 | 阅读:1,623次 |
  • {dede:field name='array' /}的简单用法示范

    官方的解释:field支持用array获取任意字段的值;(支持标记:文章列表模板的 {dede:field name='array' /}、arclist、arclistsg、loop、sql 标签) 通俗点来讲,这就是查询数据库得到的 一组数据的集合 例如平时使用 {dede:field name='title' /} 就可以使用 {dede:field name='array'  runphp='yes'} @me=@me['title'];{/dede:field} 最主要是,很多时候,有些人的php标签...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月12日 | 分类:DedeCMS技巧 | 阅读:1,314次 |
  • dede 自定义宏标记使用教程

    在模板制作中,经常遇到一些网站标签在多个页面调用的问题,通常情况下我们可以通过模板的{dede:include file='文件名称' ismake='是否为dede板块模板(yes/no)'/}标签导入一个文件解决,在DedeEIMS的1.1版本默认模板中的head.htm就如通过这样的标记引入到其他模板文件,然后编译成页面头部信息的,但这样以文件形式引入的方式并不适用于少量内容的全局显示,例如你可能有一...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月10日 | 分类:DedeCMS技巧 | 阅读:1,405次 |
  • dede 常用SQL语句收录

    在DedeCMS V5.5系统中,我们很多地方需要用到SQL语句,例如批量修改(替换)内容、数据内容调用等,在系统模板中有一个专门用于调用数据的模板标签{dede:sql/}我们可以参考帮助中心的模板标签说明学习下这个标签如何使用。 当然我们在使用SQL语句和学习SQL语句的之前需要对织梦的数据库结构有一个大致的了解,我们可以通过帮助中心的数据库说明,来简单的了解这些内容。 以...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月02日 | 分类:DedeCMS技巧 | 阅读:1,859次 |
  • 后台管理搜索到文章正文内容(FOR DEDE 5.5)

    DEDE的后台管理,在文章列表下面可以进行搜索,输入关键字即可 但是这个搜索,只能搜索标题和作者里的关键字,却不能找到正文包含该关键字的文章 以下修改,可以在后台输入关键字搜索时,找到正文里包含该关键字的普通文章 打开 后台dede\content_list.php 第156行: $whereSql .= " And ( CONCAT(arc.title,arc.writer) like '%$keyword%') "; 改为: $whereSql = " left j...
    作者:admin | 发布:
    Warning: Use of undefined constant Y年n月d日 - assumed 'Y年n月d日' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/index.php on line 19
    2011年5月01日 | 分类:DedeCMS技巧 | 阅读:1,408次 |