I have Orchard CMS and I want to integrate my MVC site with it. Can anybody tell me how to do this?

link|improve this question

0% accept rate
6  
You should consider accepting @pszmyd's answer. It seems to be exactly what you needed. – Esteban Araya Jul 25 '11 at 4:52
feedback

1 Answer

It depends on how complex your MVC app is, but in most cases it is straighforward. The easiest way is to wrap your existing site into Orchard module. Writing a module is described here. These are the necessary steps:

  1. Copy your site to subdirectory in ~/Orchard.Web/Modules along with the .csproj file so that the.csproj file should be in your application root (eg. ~/Orchard.Web/Modules/MyApplication/MyApplication.csproj)
  2. In the root of your app create the Module.txt manifest file. This small file describes your application - it's syntax is described here
  3. Set the appropriate routes so that existing controllers' actions can be hit. It's also described in the article above. By default, your application URLs will look like /MyApplication/Controller/Action - you're free to change it as you wish. Be careful though not to interfere with existing routes, eg. /Admin, /Users and so on. The routes you specify have higher priority and will override every exisiting ones. Btw - Area name, where necessary, would be the name of your application (eg. MyApplication).
  4. Run Orchard and enable your application in Modules/Features admin menu.
  5. Add necessary changes to web.config file.

Remember though that Orchard is based on ASP.NET MVC 3 and uses Razor view engine. If you use other view engine, you have to specify it appropriately in the web.config file.

HTH

link|improve this answer
Did that help you? If so please mark the answer as accepted. – Piotr Szmyd Mar 14 '11 at 17:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.