I know this appears subjective and is likely to be closed but I'll ask anyway.

When you use a CMS for your main website, you always have the ability to extend it to provide rich user functionality, these chunks of functionality may be known as plug-ins or macros etc.

Most of the time I have created user controls which allows editors to drop functionility into the core site amongst the content.

My question is, what is the favoured approach? To keep everything inside the CMS or to split up your content into one site and keep your rich-functionality contained within another site?

link|improve this question

feedback

1 Answer

A CMS system should separate the engine from the plugins/modules in my opinion. Also, the CMS generated content or resources should only persist within the instance of the environment it runs in. The core engine should never depend on plugins/modules to function.

link|improve this answer
I'm a little confused by your answer, particularly what do you mean by core engine? – Mantorok Jan 9 at 11:50
The code that runs the main site and or multiple instances, that manages the content and rendering should be generic. It should not be dependent on user generated content of user installed plugins to function. – rick schott Jan 9 at 13:45
Indeed, but nearly all CMS give you the ability to extend via user controls, and within these user controls there could be lots of functionality. There is no dependency as such, but I'm wondering if user controls like these should be in a seperate website altogether. – Mantorok Jan 9 at 15:49
feedback

Your Answer

 
or
required, but never shown

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