I am trying to convert a website on CMS Made Simple (GitHub account) onto Wordpress. I have researched online extensively only to find no substantial content to help me.
Is there a potential script that can perform this migration? If not, could someone explain the steps to follow in order to do this?
I am trying to convert a website on CMS Made Simple (GitHub account) onto Wordpress. I have researched online extensively only to find no substantial content to help me.
Is there a potential script that can perform this migration? If not, could someone explain the steps to follow in order to do this?
Share Improve this question edited Oct 27, 2014 at 20:58 kaiser 50.9k27 gold badges151 silver badges245 bronze badges asked Oct 27, 2014 at 18:42 wordpresswordpress 112 bronze badges2 Answers
Reset to default 1I didn't meet any ready-made script for CMS Made Simple to Wordpress conversion, but I've found out that WordPress Codex has a listed service for it.
I don't know if Joomla
and CMS Made Simple
are similar, but I did a migration from Joomla
Website (very old version) to WordPress
.
For this, I did many queries in SQL
to copy the content from Joomla
to WordPress
.
If you have a good knowledge on tables of WordPress
& CMS Made Simple
, maybe you can do this.
Migration of content from Joomla to WordPress:
INSERT INTO wp_posts(`post_author`,`post_date`,`post_content`,`post title`, `post_modified`)
SELECT `created_by`,`created`,`introtext`,`title`,`modified` FROM jos_content
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745496017a4630193.html
评论列表(0条)