vote up 2 vote down star
2

My group is going to attempt to build a new CMS from scratch, designed to serve the needs of our organization. It should be noted that none of us have any formal programming education, but we've picked up this and that from developing different websites, among others the one our community uses now. We've decided to program the new CMS in PHP, with total MVC seperation. Not wanting to re-invent all the little cogs and wheels needed for such a potentially large project as this, we've been looking into using a PHP framework, and some googling and blog-surfing landed us in a discussion: Zend vs Cake?

Anyone have any useful input here? Also, any other tips for embarking on this project would be appreciated. (Except for suggestions for existing CMSes, we know they're out there.)

EDIT: It seems I was a bit unclear. None of us are NEW to PHP - in fact, we all have fairly extensive experience from previous projects, including the current solution our community's website runs on which we built ourselves. The decision to not use an existing CMS is a very informed one, so although I appreciate all the good suggestions we really are going to do this ourselves. So. Zend vs Cake?

flag

14 Answers

vote up 7 vote down check

ZendFramework is built from scratch with PHP5's new object support in mind, meaning everything is cleanly laid out in individual files per class, Java-style. The downside is that it's all modular with very little glue - you basically pick what you need and start putting it together. This is also an upside if you want to add new functionality that the framework does not provide as there is no rigid system any plugins have to fit into.

CakePHP on the other hand has a lot more "magic" to it, meaning a lot of stuff that goes on under the hood taking care of the basic stuff. It can be annoying to advanced developers that want to know what's going on and maybe change some things, but to a beginner it's good for Getting Stuff Done(tm). As mentioned CakePHP has a lot of support in the form of plugins to help with different functionality, template setup, etc. CakePHP also comes setup so everything is glued together and you can start churning out pages.

In your case, I'd recommend CakePHP as there is still room to tinker with advanced stuff when you're up for it, while Zend might have a steeper learning curve at the start.

Another framework I have used a lot myself is CodeIgniter / KohanaPHP which is more lightweight than the other 2 but still comes with the starting glue that enables you to start work on your site out of the box. It is more open-ended but not nearly as feature-packed as the other 2 frameworks. If you chose this path, you should go for KohanaPHP, which is a pure PHP5 branch of CodeIgniter that is more actively developed.

link|flag
An actual advanced developer would not be "annoyed" with CakePHP as it is easy to see under the hood. And also easy to modify the engine as required, only doing so when needed. – Alexander Morland Aug 20 at 7:42
vote up 2 vote down

An article I recently stumbled across was about this exact topic.

Their - and my - conclusions:

If you are new to MVC, require PHP 4 support, want stricter conventions, or want powerful code generation tools, CakePHP is the choice for you. CakePHP's Scaffolding, Bake, and ACL scripts provide definite advantages when the need to quickly build an application arise.

If you know MVC, need more control over application design, or want built-in support for popular Web services, the Zend Framework is choice for you. The Zend Framework provides a greater degree of flexibility in designing applications that scale effectively in high-performance environments.

Check it out --> http://2tbsp.com/node/87.

link|flag
Actually, I've already read that article when googling this, but thanks anyway :) – gorzan Sep 16 '08 at 21:58
Well if u need the zend libraries, cakephp can use them as vendors with little effort. – Alexander Morland Sep 25 '08 at 8:53
vote up 1 vote down

Drupal. After all, The Best Code is No Code At All.

link|flag
I completely agree. Drupal is sooooo customizable and able to support just about any situation. I would look into tweaking the drupal CMS to your needs. – bryanpearson Sep 16 '08 at 21:43
Thanks, but as I said, we're going to do this from scratch. – gorzan Sep 16 '08 at 21:53
Out of the box CMS packages are a double edged sword. You must be ok with periodic security updates because, after all, someone did the auditing and code fixes for you. Without a packaged CMS, your site could be horribly insecure and you'd never know, but with symptoms localized to only your site. – spoulson Jan 6 '09 at 13:50
vote up 1 vote down

Do not write your own until you have explored existing projects most of which are highly customizable.

link|flag
This will not be the first CMS we build, only the first we build using an existing framework. – gorzan Sep 16 '08 at 21:53
vote up 1 vote down

My recommendation would be CakePHP. Its code generation tool "Bake" will save you weeks when building the CRUD for your CMS. Given a database table, you can be up and running with full CRUD functionality, with pagination on your list views, validation on your models and loads more, within minutes. You can extend and customise the code that bake generates too, so your CMS can be just the way you want it. To cap it off, if you need some of the features in some of the classes in the Zend framework, its stack nature allows you to pick and choose those classes and use them within CakePHP through its "vendor" feature.

link|flag
vote up 1 vote down

If you really, totally, absolutely want to build a new CMS, go with the route the Mambo team has gone and develop it on top of a good framework, like Cakephp. Please, please, please, don't write everything yourselves from scratch. There's too much you won't pay attention to, and in the future, it'll come back to hunt you (security being number one I guess). The Mambo team has a lot more experience writing CMS software than you (no offense intended), so read what the say about the subject and follow their path.

On the other hand, I only have experience with the CakePHP framework, so my opinion might not be objective. But this framework has a nice community behind it, that keeps writing documentation and tutorials, so getting help or advice should be no problem. And it also comes with a lot of bundled "magic", so repetitive tasks (like CRUD generation) are automated. Finally, a lot of things are built/developed by nice, logical conventions, that you learn in a matter of days and help you everyday.

Hope this helps.

link|flag
vote up 0 vote down

1) If you don't know PHP don't do it, there are alot of security implications when building a CMS
2) Don't use a framework, a CMS is suprisingly simple, an experienced PHP dev (like myself) could (has) built and entire CMS in a matter of hours, with a WISIWYG for content editing.

link|flag
vote up 0 vote down

Kohana is another one you might want to look at. It's a more light-weight MVC framework that lets you get right down to coding, without forcing you into doing things a certain way.

I know you specifically said you didn't want suggestions of existing CMSes, but really writing your own CMS is re-inventing the wheel for the 900th time. Drupal in particular makes a very good platform to develop applications on. It has some learning curve, but once you get it, and see it as more of an application framework with a CMS pre-built, as opposed to a CMS with modules, you can build some pretty complex things in a short amount of time.

link|flag
Thanks, will look into Kohana. – gorzan Sep 16 '08 at 21:54
vote up 0 vote down

You should also CodeIgniter, as it's a simple PHP/MVC framework, though you should really look at the existing CMS systems out there (Drupal, Joomla, Wordpress, ExpressionEngine, etc.).

link|flag
vote up 0 vote down

If your group is not too PHP savvy, but you want a easy to use a MVC framework, give Symfony a try.

link|flag
vote up 0 vote down

I have recently had very good success simply bolting WordPress onto an existing site. This works especially well when you have a client that simply wants CMS capability on their existing website. You simply pick a theme that somewhat matches your existing look and feel (or your new design) and tweak it to match. For simple CMS functionality, it works beautifully, costs little to implement, and takes little time to get up and running. I've found other CMS packages to be overkill for most applications.

link|flag
vote up 0 vote down

you might have to fiddle a lot with cakephp's code while implementing it's ACL features.

link|flag
vote up 0 vote down

Wow.. you say you have great experience with PHP and comments are "if you have no experience with PHP".. hmm.. my answer is. The Zend i sbest choice for future development. after framework stand a company which developping PHP, so in Zend framework you will have always the newest techniques..

Hope you CMS wil be available for testing ;-)

link|flag
vote up 0 vote down

Depends. Zend is more like "do it yourself" and cake is more like "here you are" :) Zend offers more space for you to extend and tweak it where cake presents you with more "prefabricated" classes :)

link|flag

Your Answer

Get an OpenID
or

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