Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am starting a large web project, which is essentially an online resource, it is to be regularly updated with text and image data.

The site has many front-end pages each with it's own set of data objects some examples:

  • Cars:

    • Car Name (text)
    • Car Booklet (link to PDF)
    • Car Type (dropdown list)
  • Houses:

    • House Address Line 1 (text)
    • House Address Line 2 (text)
    • City (text)
    • Notes (block of text)

and so on like this over say 20 - 30 different data objects.

I am looking for a CMS or framework which will help me in quickly creating the backend views, such that I do not have to constantly re-create forms over and over again.

I have been pointed in the direction of CodeExtinguisher for codeigniter, but it seems this is no longer supported/maintained.

Is there a good solution for this sort of thing?

share|improve this question

2 Answers

up vote 2 down vote accepted

If it is a CMS you are looking for and you are looking in codeigniter's direction

  • ExpressionEngine (if you want to pay for a polished commercial product)
  • PyroCMS (in my opinion the most well maintained and mature opensource and free CMS for codeigniter)

BUT, From what you are describing you are building a catalogue of sorts I would suggest building it out yourself on Codeigniter.

It might be more work in the beginning of your project, but for such a specific use, the simplicity by which you can custom build this thing, will probably trump the beginning development time, by allowing you to have a much more extendable, maintainable, and fine tuned product in the end.

share|improve this answer
Could do - I was hoping for something which would auto create the forms, that is all really, I could build that side of it myself maybe... – Ash Jan 31 '11 at 18:01
along with CI's form helpers, there are also many form automation libraries available, but really in your above example, you are building 2 forms, in the time it takes you to search for, and learn how to use a form libarary, you could have these things banged out. – jondavidjohn Jan 31 '11 at 19:47
nope - I have to create 20 - 30 different forms. but I will look into using a form automation library. – Ash Jan 31 '11 at 22:58

I suggest you Wordpress. There are many plugins to to add features.

share|improve this answer
yes could do - but I want something more user friendly than having to choose from the drop down list of custom fields everytime I want to add a new object – Ash Jan 31 '11 at 18:01
If you are talking about user friendly, that is Wordpress. :) – borayeris Jan 31 '11 at 18:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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