# dkfcms **Repository Path**: hongweizhiyuan/dkfcms ## Basic Information - **Project Name**: dkfcms - **Description**: No description available - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-05-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 基于开源软件而做的一些符合自己常用的习惯,暂且叫做dkfcms吧。 ##微信模块 1、微信模块文件结构 ``` 目录|../adminweixin 文件|../adminweixin/admin.php 目录|../adminweixin/control 目录|../adminweixin/control/admin 文件|../adminweixin/control/admin/asktype.php 目录|../adminweixin/data 文件|../adminweixin/data/asktype.inc.php 目录|../adminweixin/model 文件|../adminweixin/model/mtype.php 目录|../adminweixin/static 目录|../adminweixin/static/images 文件|../adminweixin/static/images/dlgtitle.gif 文件|../adminweixin/static/images/loading.gif 文件|../adminweixin/static/images/tbg.gif 文件|../adminweixin/static/images/wbg.gif 目录|../adminweixin/static/js 文件|../adminweixin/static/js/box.js 文件|../adminweixin/static/js/j.js 目录|../adminweixin/static/style 文件|../adminweixin/static/style/admin.css 文件|../adminweixin/static/style/tb-box.css 目录|../adminweixin/templates 目录|../adminweixin/templates/admin 文件|../adminweixin/templates/admin/asktype_add.htm 文件|../adminweixin/templates/admin/asktype_edit.htm 文件|../adminweixin/templates/admin/asktype_list.htm 文件|../adminweixin/templates/admin/help.html 文件|../plus/wx_token.php 文件|../plus/menu.php 文件|../dede/weixin.php 文件|../dede/templets/weixin.htm ``` 2、微信模块SQL: ``` DROP TABLE IF EXISTS `#@__weixin`; CREATE TABLE IF NOT EXISTS `#@__weixin` ( `id` smallint(5) unsigned NOT NULL auto_increment, `url` char(200) NOT NULL default '', `TOKEN` char(60) NOT NULL default '', `AppId` char(30) NOT NULL default '', `AppSecret` char(200) NOT NULL default '', `ACCESS_TOKEN` char(200) NOT NULL default '', `weixinid` char(60) NOT NULL default '', `weixinno` char(200) NOT NULL default '', `menu` varchar(1000) NOT NULL default '', `msg` varchar(600) NOT NULL default '', `searchrx` smallint(6) NOT NULL default '5', `menurx` smallint(6) NOT NULL default '5', PRIMARY KEY (`id`) )TYPE=MyISAM; DROP TABLE IF EXISTS `#@__weixinmenu`; CREATE TABLE IF NOT EXISTS `#@__weixinmenu` ( `id` smallint(5) unsigned NOT NULL auto_increment, `name` char(50) NOT NULL DEFAULT '', `reid` int(10) unsigned NOT NULL DEFAULT '0', `disorder` int(10) unsigned NOT NULL DEFAULT '0', `keywords` varchar(100) DEFAULT '无', `url` varchar(500) DEFAULT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM; INSERT INTO `#@__weixin` (msg,url,searchrx,menurx) VALUES ('抱歉,没有找到与标题:【{通配符}】相关的文章,要不你更换一下关键字,可能就有结果了哦 :-)','/plus/wx_token.php','5','5'); INSERT INTO `#@__arctype` (reid,topid,sortrank,typename,typedir,isdefault,defaultname,issend,channeltype, tempindex,templist,temparticle,modname,namerule,namerule2,ispart,corank,description,keywords,moresite,siteurl,sitepath,ishidden,`cross`,`crossid`,`content`) Values('0','0','998','微信网站','_ROOTURL_/weixin','1','index.php','0','1', '','','','default','','','0','0','','','0','','','1','0','0',''); ```