菜鸡源码,专注精品下载!
当前位置:首页 > 建站教程 > 调试安装

dede让首页列表以及内页自动更新首页天生HTML

发布时间:2014-10-02  栏目:调试安装   浏览:   分类:

让织梦自动更新首页天生HTML,着实有个插件  除了插件,我们还可以不消插件来实现首页自动更新天生HTML,起首在ftp目次中找到plus目次新建文件,文件名定名为:zdgx.php,即:/plus/zdgx.php       -598080707.net

然后我们来写进php代码到zdgx.php文件,代码如下:

<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 3600;//自动更新时刻,单元为秒,这里我设为一小时,各人可以自行变动.
$fpath = "../data/last_time.inc";//记录更新时刻文件,假如不能到达目标,请搜查是否有读取权限.
include( $fpath );
if( empty($last_time))
$last_time = 0;
if( sp_input($_GET['renew'])=="now")
$last_time = 0;
if((time()-$last_time)>=$autotime )
{
define('DEDEADMIN', ereg_replace("[/\]{1,}",'http://www.dedefan.com/',dirname(__FILE__) ) );
require_once(DEDEADMIN."/../include/common.inc.php");
require_once(DEDEINC."/arc.partview.class.php");
/*
$row = $dsql->GetOne("Select * From dede_homepageset");
$dsql->Close();
$templet=$row['templet'];
$position=$row['position'];
*/
$templet = "templets/index.htm";//这里是首页模板位置,当前是dede默认首面位置.
$position = "../index.html";
$homeFile = dirname(__FILE__)."/".$position;
$homeFile = str_replace("\", "/", $homeFile );
$homeFile = str_replace( "//", "/", $homeFile );
$pv = new PartView();
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
$pv -> SaveToHtml( $homeFile );
$pv -> Close();
$file = fopen( $fpath, "w");
fwrite( $file, "<?phpn");
fwrite( $file,"$last_time=".time().";n");
fwrite( $file, '?>' );
fclose( $file );
}
?>

然后我们必要在首页的模版代码head标签中插手以下代码:  -598080707.net  

<script src="/plus/zdgx.php" language="javascript"></script>

这样整个修改就完成了自动更新首页HTML结果了.

注:想相识更多更好的站长信息资源请上 织梦喜爱者

  • 相关文章

      无相关信息
    评论
    调试安装
    建站知识
    使用技巧
    调试安装
    运营推广