WordPress博客怎么转帝国cms程序?

WordPress博客怎么转帝国cms程序?,第1张

原因分析:

较之源亏安全性,帝国cms程序安全性高于wordpress;

解决办法:

wordpress网站转换成帝国网站闭好,最好雹态神转换之后能够实现文章id以及栏目id一致性;

首先要导入的肯定是栏目了

关于数据库结构 帝国官方有一个很详细的手册 我在之前的文章中有发布 ,而可怜的dede 只能在一些blog的文章中找到,感谢整理这些资料的博主们,不过还不是很方便,我觉着dede官方应该大改进了

帝国cms 栏目相关数据表 mlf_enewsclass (注意表的前缀)

dedecms 栏目相关数据表dede_arctype

这里就不对字段进行解释了 直接上sql了

把帝国数据库中mlf_enewsclass 这张表导入到dede数据库中方便 *** 作

这条数据执行完了之后后台栏目已经有数据了

insert into dede_arctype (id,reid,typename,picname,sortrank,typedir,description,keywords) select classid,bclassid,

classname,classimg,myorder,classpath,intro,classpagekey from mlf_enewsclass

update `dede_arctype` set `issend`=1

update `dede_arctype` set `isdefault`=1

DedeTag Engine Create File False以下几条sql必须执行,要不然会出现 错误

-----------------------------------------------------------------------------

update `dede_arctype` set `namerule`="{typedir}/{Y}/{M}{D}/{aid}.html"

update `dede_arctype` set `namerule2`="{typedir}/list_{tid}_{page}.html"

------------------------------------------------------------------------------

update `dede_arctype` set `typedir`=CONCAT('{cmspath}/',typedir)

update `dede_arctype` set `templist`="{style}/list_article.htm"

update `dede_arctype` set `temparticle`="{style}/article_article.htm "

update `dede_arctype` set `tempindex`="{style}/index_article.htm"

update dede_arctype da,mlf_enewsclassadd me set da.content=me.classtext,da.seotitle=me.fpagetitle where da.id=me.classid(注意)

这样 栏目列表成功转换,后台可生成

下来开始整合文章

首先 先来分析文章数据库结构

dede文章相关的有3张数据表,分别是dede_archives ,dede_addonarticle,dede_arctiny

帝国文章相关的数据表: mlf_ecms_news,mlf_ecms_news_data_1(可能数据表有所不同,不过结构区别都不大)

导入文章

insert into `dede_archives` (id,typeid,sortrank,click,title,litpic,filename,pubdate,senddate,description,keywords) select id,classid,truetime,onclick,title,titlepic,filename,newstime,lastdotime,smalltext,keyboard from mlf_ecms_news

导纤薯散入文手薯章来源作者

update `dede_archives` da,mlf_ecms_news_data_1 men set da.source=men.befrom,da.writer=men.writer where da.id=men.id

导入毁氏文章body(内容)

insert into dede_addonarticle (aid,typeid,body) select id,classid,newstext from mlf_ecms_news_data_1 men

现在后台已经有了文章

不过发现了个问题,分类中显示的文档数量为0

经过查资料,摸索 发现还需要 *** 作一个数据表 dede_arctiny后台统计文档数量 *** 作的是这个数据表

insert into `dede_arctiny` (id,typeid,channel,senddate,sortrank,mid) select id,typeid,channel,senddate,sortrank,mid from dede_archives

执行完毕之后发现最下级的栏目已经正常显示文档数量,但是顶级栏目依然是0,查看相关资料才发现dede一直是这样,这也算dede的一个bug吧


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12533943.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存