Welcome to the website navigation,本站只接受合法正规的企业网站,欢迎站长们提交你的网站获得展示和流量有任何问题请联系站长,欢迎大家加入本站。

                
提交网站
  • 网站:76083
  • 待审:5
  • APP:577
  • 文章:304411
  • 会员:56004
文字内链包年1000元 文字内链包年1000元 文字内链包年1000元 AI办公网站 AI绘画工具 AIchat

名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。织梦程序DEDECMS生成静态网站网页手机页面
工具/原料
dedecms网站程序
实现wap手机静态网站网页生成
一、添加网站的后台导航栏目链接
1 打开dede/inc/inc_menu.php,在146行下面添加相关具体代码如下:
<m:item name='更新WAP主页' link='makehtml_homepagewap.php' rank='sys_Makehtml' target='main' /> <m:item name='更新WAP栏目' link='makehtml_listwap.php' rank='sys_Makehtml' target='main' />  <m:item name='更新WAP文档' link='makehtml_archiveswap.php' rank='sys_Makehtml' target='main' />
二、更新WAP主页
1.复制网站文件dede/makehtml_homepage.php,重命名为makehtml_homepagewap.php2.打开makehtml_homepagewap.php,找到最后一行
include DedeInclude('templets/makehtml_homepage.htm');
修改为
include DedeInclude('templets/makehtml_homepagewap.htm');
3.复制网站文件dede/templets/makehtml_homepage.htm,重命名为makehtml_homepagewap.htm
4打开dede/templets/makehtml_homepagewap.htm 修改21行
<form action="makehtml_homepage.php" method="post" name="form1" target="stafrm">
修改为 
<form action="makehtml_homepagewap.php" method="post" name="form1" target="stafrm">
3
4.修改36行,指定生成WAP主页模板
<input name="templet" type="text" id="templet" value="default/wap.htm">
4
5.修改48行,指定生成WAP主页路径 
<td height="20" valign="top" bgcolor="#FFFFFF"><input name="position" type="text" id="position" value="../m/index.html" size="30"> 
6.修改69~70行,"checked"移到"不保存当前选项",系统默认是提交保存主页模板和路径数据的
<input name="saveset" type="radio" value="0" class="np" checked> 
不保存当前选项
 <input name="saveset" type="radio" class="np" value="1" >
保存当前选项
END
三、更新WAP栏目
1.复制网站文件dede/makehtml_list.php,重命名为makehtml_listwap.php
2.打开makehtml_listwap.php,找到最后一行
include DedeInclude('templets/makehtml_list.htm');
修改为
include DedeInclude('templets/makehtml_listwap.htm');
3.复制网站文件dede/templets/makehtml_list.htm 重命名为makehtml_listwap.htm ,修改第10行
<form name="form1" action="makehtml_list_action.php" method="get" target='stafrm'>
修改为
<form name="form1" action="makehtml_listwap_action.php" method="get" target='stafrm'>
4.复制dede/makehtml_list_action.php 重命名makehtml_listwap_action.php
require_once(DEDEINC."/arc.listview.class.php");
修改为
require_once(DEDEINC."/arc.listwapview.class.php");
5.复制include/arc.listview.class.php 重命名为arc.listwapview.class.php
if(!file_exists($tempfile))
        {
            $tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/list_default.htm";
        }
        if(!file_exists($tempfile)||!is_file($tempfile))
        {
            echo "模板网站文件不存在,无法解析文档!";
            exit();
        }
替换为
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/list_wap.htm";
修改栏目储存目录,在658-659行后面添加相关具体代码如下,生成的栏目网站文件保存在网站文件夹"m"下面
$typedir = MfTypedir('/m/'.$typedir);
修改
function GetMakeFileRule($typeid,$wname,$typedir,$defaultname,$namerule2)
    {
     $typedir = MfTypedir('/m/'.$typedir);
     if($wname=='index')
相关具体代码如下345-371行是把list第一页复制为首页index.html的,修改354行修改复制保存路径,在$this->Fields['typedir'])前面添加'/m/'. 如下面10行所示
if($startpage==1)
{
//如果站点列表启用封面网站文件,复制这个网站文件第一页
if($this->TypeLink->TypeInfos['isdefault']==1
&& $this->TypeLink->TypeInfos['ispart']==0)
{
$onlyrule = $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],'',$this->Fields['namerule2']);
$onlyrule = str_replace("{page}","1",$onlyrule);
$list_1 = $this->GetTruePath().$onlyrule;
$murl = MfTypedir('/m/'.$this->Fields['typedir']).'/'.$this->Fields['defaultname'];
//如果启用远程发布则需要进行判断
if($cfg_remote_site=='Y'&& $isremote == 1)
{
//分析远程网站文件路径
$remotefile = $murl;
$localfile = '..'.$remotefile;
$remotedir = preg_replace('/[^/]*.html/', '',$remotefile);
//不相等则说明已经切换目录则可以创建镜像
$this->ftp->rmkdir($remotedir);
$this->ftp->upload($localfile, $remotefile, 'acii');
}
$indexname = $this->GetTruePath().$murl;
copy($list_1,$indexname);
}
}
return $murl;
}
四、更新WAP文档
1.复制dede/makehtml_archives.php 重命名为makehtml_archiveswap.php 修改最后一行
include DedeInclude('templets/makehtml_archives.htm');
修改为
include DedeInclude('templets/makehtml_archiveswap.htm');
2.复制dede/templets/makehtml_archives.htm 重命名为makehtml_archiveswap.htm 修改13行form提交地址
<form name="form1" action="makehtml_archives_action.php" method="get" target='stafrm'>
修改为
<form name="form1" action="makehtml_archiveswap_action.php" method="get" target='stafrm'>
3.复制dede/makehtml_archives_action.php 重命名为makehtml_archiveswap_action.php 修改13行 
require_once(DEDEINC."/arc.archives.class.php");
修改为
require_once(DEDEINC."/arc.archiveswap.class.php");
4.复制include/arc.archives.class.php 重命名为arc.archiveswap.class.php
修改文章页储存位置,476行,站点真实路径后面添加"/m/" 如下第9行所示:
    /**
     *  获得站点的真实根路径
     *
     * @access    public
     * @return    string
     */
    function GetTruePath()
    {
        $TRUEpath = $GLOBALS["cfg_basedir"].'/m/';
        return $TRUEpath;
    }
修改获得模板网站文件位置,屏蔽528-536行相关具体代码如下,后面添加具体调用模版路径
/*  if(!empty($this->Fields['templet']))
        {  
            $filetag = MfTemplet($this->Fields['templet']);
            if( !preg_match("#/#", $filetag) ) $filetag = $GLOBALS['cfg_df_style'].'/'.$filetag;
        }
        else
        {
            $filetag = MfTemplet($this->TypeLink->TypeInfos["temparticle"]);
        }*/
$filetag = $GLOBALS['cfg_df_style'].'/'.'article_wap.htm';
是将上面的相关具体代码如下注释掉
注意事项
DEDE手机目录是M

实现DedeCMS站点程序织梦程序模板站点列表有缩略图则显示没有就不显示的相关具体操作方法tJKAIChat_企业网址导航_网址分类目录_企业黄页网址提交查询专业网站!

tJKAIChat_企业网址导航_网址分类目录_企业黄页网址提交查询专业网站!

关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。

标签:

分享到:

  网友投稿

注册时间:

网站:0 个   APP:0 个  文章:0 篇

  • 76083

    网站

  • 577

    APP

  • 304411

    文章

  • 56004

    会员

赶快注册账号,推广您的网站吧!
文章分类
热门网站
最新入驻APP小程序

宝贝市场2023-02-08

宝贝市场——买手和卖家商品展示

夺宝助手2023-02-08

夺宝助手小程序,查看每日快夺宝平

查诚信2023-02-08

查诚信是一款免费的商业查询工具

车价天天报2023-02-08

快速连接汽车销售,获知汽车最新报

考勤助理小程序2023-02-08

上班签到考勤,实时定位,后台轻松

汽车报价大全查询2023-02-08

汽车报价大全查询提供最新汽车市