修改DEDECMS录入时间

最近一个喜欢采集的朋友想要修改织梦CMS文章的录入时间,找到我,我也不是太懂,但碍于面子,上网搜索,自己动手尝试,终于找到方法。

        最近一个喜欢采集的朋友想要修改织梦CMS文章的录入时间,找到我,我也不是太懂,但碍于面子,上网搜索,自己动手尝试,终于找到方法。
  首先找到管理目录(默认是DEDE)下的article_add.php,打开后在  
  </table></td>
  
  </tr>
  
  <tr>
  
  <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  
  <tr>
  
  <td width="90"> 发布时间:</td>
  
  之前添加
  
  <tr>
  
  <td width="90"> 录入时间:</td>
  
  <td>
  
  <?php
  
  $addtime = GetDateTimeMk($arcRow["senddate"]);
  
  echo "<input type='text' name='senddate' value=''>";
  
  ?>
  
  </td>
  
  </tr>
  
  然后再找到管理目录DEDE目录下的article_add.php文件后打开在:
  
  </table></td>
  
  </tr>
  
  <tr>
  
  <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  
  <tr>
  
  <td width="90"> 发布时间:</td>
  
  之前添加
  
  <tr>
  
  <td width="90"> 录入时间:</td>
  
  <td>
  
  <?php
  
  $addtime = GetDateTimeMk($arcRow["senddate"]);
  
  echo "<input type='text' name='senddate' value=''>";
  
  ?>
  
  </td>
  
  </tr>
  
  找到article_add_action.php
  
  把
  
  $senddate = mytime();
  
  害我的就是这句,自动获取当前服务器的时间的,所以在前面的article_add.php页面里没有任何添加时间的语句
  
  找到
  
  $sortrank = AddDay($senddate,$sortup);
  
  替换成
  
  $senddate = GetMkTime($senddate,$sortup);
  
  然后再把插入到数据库的INSERT INTO语句改下
  
  这里已经有了$senddate ,所以只要删除$sortrank
  
  就是把
  
  //加入数据库的SQL语句
  
  //----------------------------------
  
  $inQuery = "INSERT INTO dede_archives(
  
  typeid,typeid2,sortrank,iscommend,ismake,channel,
  
  arcrank,click,money,title,shorttitle,color,writer,source,litpic,
  
  pubdate,senddate,arcatt,adminID,memberID,description,keywords,templet,redirecturl)
  
  VALUES ('$typeid','$typeid2','$sortrank','$iscommend','$ismake','$channelid',
  
  '$arcrank','0','$money','$title','$shorttitle','$color','$writer','$source','$litpic',
  
  '$pubdate','$senddate','$arcatt','$adminID','0','$description','$keywords','$templet','$redirecturl');";
  
  替换成
  
  //加入数据库的SQL语句
  
  //----------------------------------
  
  $inQuery = "INSERT INTO dede_archives(
  
  typeid,typeid2,iscommend,ismake,channel,
  
  arcrank,click,money,title,shorttitle,color,writer,source,litpic,
  
  pubdate,senddate,arcatt,adminID,memberID,description,keywords,templet,redirecturl)
  
  VALUES ('$typeid','$typeid2','$iscommend','$ismake','$channelid',
  
  '$arcrank','0','$money','$title','$shorttitle','$color','$writer','$source','$litpic',
  
  '$pubdate','$senddate','$arcatt','$adminID','0','$description','$keywords','$templet','$redirecturl');";
  
  好了,添加页面改定
  
  然后修改页面也参照这个方法修改
  
  在article_edit.php
  
  在
  
  </table></td>
  
  </tr>
  
  <tr>
  
  <td height="24" colspan="4" class="bline"><table width="800" border="0" cellspacing="0" cellpadding="0">
  
  <tr>
  
  <td width="90"> 发布时间:</td>
  
  之前添加
  
  <?php
  
  $addtime = GetDateTimeMk($arcRow["senddate"]);
  
  echo "<input type='text' name='senddate' value='$addtime'>";
  
  ?>


 

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

织梦DEDECMS 栏目文章文章命名规则修改, 每次添加栏目的时候 都要改文章命名规则,十分麻烦, 修改下面这个地方就可以一改永亦,织梦模板网为您解答 找到\include\common.inc.php 搜索 $cfg_df_namerule 把: $cfg_df_namerule = {typedir}/{Y}/{M}{D}/{aid
很多人在修改织梦会员中心模板的时候 会遇到 明明修改了,为什么还是原来样式?确认文件没有修改错误的情况下,可能是缓存问题,你 只要把 /data/tplcache/ 里面的文件全部删除,重新访问即可。
有时候我们需要实现织梦文章模型多个图片或者多个缩略图,这样的功能我们要怎么操作呢?其实方法还是蛮多的,不需要修改代码的办法就是在内容模型中建立多个字段(缺点就是想多加一个图就要多添加一个字段,而且上传也不方便,还有另外一种方法就是拓展类似
1、打开 /dede/spec_add.php 找到 $arcids = ; 改成 $arcids = array(); 2、打开 /dede/spec_edit.php 找到 $arcids = ; 改成 $arcids = array(); 完成
使用dedecms过程中,网站很容易被挂马,数据库也容易被刷爆,老是莫名其妙的多出了很多垃圾东西,大多都认为是3306这个端口号不太安全导致,想让小编给修改一下,修改了mysql的端口号,并重启了mysql服务,却发现dedecms无法连接数据库了,这是肯定的,因为
使用dede软件下载频道通过{dede:field name=softlinks/}调用的链接,当我们打开链接的时候是直接在当前窗口打开,要返回去比较困难,我们要在新窗口打开这个链接该如何操作呢? 我们首先找到 /templets/system/channel_downlinkpage.htm这个文件 ,用编辑器