I'm working on a web application in Codeigniter. I'd like to integrate the functionality of my application with a CMS so that site admins can easily update the site (about pages, blog, etc). Is this easily done with PyroCMS or another Codeigniter-based CMS? Will I need to drastically restructure my existing app?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted
+100

From my own experience integrating an app inside Expression Engine I can say that a CMS changes the way you usually work with CI. So be prepared to make some adjustments. Every CMS will come with it's perks and differences. It shouldn't be a big problem though.

If you want to use PyroCms take a look at this doc first: http://www.pyrocms.com/docs/2.0/developers/creating-custom-modules

If you're looking for alternatives, there are a lot. It seems almost everyone working with CI has made it's own.

Here are a few:

Also make sure you check out CI Bonfire, it's not a CMS but does help you when you start up a new project with a basic admin wrapper, which is sometimes more useful than a CMS:

http://cibonfire.com/

link|improve this answer
1  
Thanks for that link to CI BonFire.. can't tell you how many times i've had the need for something like that. – Mike Feb 8 at 14:50
:) I wish there were more apps like this. Way too often you start projects with a bloated CMS while a simpler admin wrapper like Bonfire would do. – bottleboot Feb 8 at 16:25
1  
Thanks for the roundup of Codeigniter cms's - I went with FuelCMS. I'm pretty stoked on it's Opt-in Controller wrapper that passes variables directly to views, somewhat reminiscent of Drupal's preprocess functions. I also like the way FuelCMS builds a CRUD interface from the database table with the help of a simple Model class... I ended up just mirroring my app's database structure using fuelcms's controllers... so far so good. – starsinmypockets Feb 13 at 3:09
feedback

The simplest way of doing it is to write your models around the CMS' database. Host the CMS at a subdomain with authentication for your admins. (admin.mysite.com) or something and then use the same database to power your front-end for your site.

  • Is it the best approach? Probably not.
  • Will it work? Yes.

You will probably find it hard to expand vertically & add new features if you're relying on a 3rd party CMS for data entry & backend.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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