Importing from home grown CMS system

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
4/15/2015 10:54:29 AM
Gravatar
Total Posts 1

Importing from home grown CMS system

I am looking to switch from a home grown, MSSQL based system. I can put my SQL data in any format. It has some mild embedded html like <b> and <i>. Is there a way to import this? I have 500+ pages. Thanks. I appologize if this topic has been covered. I could not find it. 

4/15/2015 12:02:24 PM
Gravatar
Total Posts 2239

Re: Importing from home grown CMS system

Hi,

We've done a lot of migrations from a lot of different CMS's. Our approach is:

  • Evaluate all content on old system and determine which modules in mojoPortal will be used for all content.
  • Create a list of all of the pages in the old system and then use that list to populate the mojoPortal mp_Pages table. For page hierarchy, we create put our top-level pages first in the list, and determine their page id ourselves. We then add second level pages and enter the corresponding parent page id in our list. We continue for each level of pages until we have all pages listed. This can take a bit of time but if the old CMS has a similar way of storing pages, we don't have to do as much work. After creating pages in SQL, you'll want to restart the application pool for the site so the Site Map cache is rebuilt.
  • Using the populated mp_Pages table, we create entries in the mp_FriendlyUrls table for each page.
  • Importing content is very dependent on the module which will be used for the content on the mojoPortal site. Often it is easier to simply create the module instance and populate it manually.

If you would rather have someone else do this work for you, we can do it, just send me an email at joe (at) i7media [dot] com.

Hope this helps,
Joe D.

You must sign in to post in the forums. This thread is closed to new posts.