Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using Drupal for some time and have been a bit frustrated with how it takes a lot more work to do things the Drupal way than if I were writing custom code from scratch. Sometimes I spend the day not coding, but just searching for the right solution to weave my idea into the drupal flow. This has led me to think of moving back away from Drupal into something that allows a lot more creativity. But I also don't want to go back to writing custom PHP from scratch.

So I'm thinking a possible solution to this dilemma is to go somewhere in the middle and use a framework. I've done some research and Symfony is looking very sweet right now.

But I need some input from those who may have experienced what I'm experiencing right now. Am I making the right decision? What are the good things that Symfony offered you that a CMS like Drupal didn't.

Please say whatever comes to your mind. And thanks for your feedback.

share|improve this question
Drupal is between cms and cmf. Symphony is cmf. Decision what to choose depend only on you and your skills... – Nikit Sep 13 '10 at 4:35
1  
Maybe this will be helpful for you: Blog-Entry – Timo Sep 13 '10 at 6:06
7  
@Nikit Symfony is a general-purpose framework, not a CMF. A few popular CMFs are built with it, though: Apostrophe, Diem and Sympal are the biggest ones. – Maerlyn Sep 16 '10 at 12:50
Framework is framework. This word mean that it's only scheleton, and can build any other cms-es or cmf-es... – Nikit Sep 16 '10 at 20:46
3  
Go with a framework like Symfony or Rails. Drupal is a pain! – jini Sep 14 '12 at 22:20

11 Answers

up vote 38 down vote accepted

Firstly, look into frameworks regardless of their language. There are several great frameworks out there not necessarily written in PHP.

From my knowledge, the most popular web frameworks are:

Secondly, evaluate what kind of developer you are. Many web developers love the fact that with a CMS (such as Drupal), they can develop functionality without touching a single line of code, whereas a framework (such as symfony2) is more geared towards assisting you when writing lots of code.

Once you have that clear, the third step would be to evaluate the nature of the project at hand.

  • Is it something that has been built in a dedicated, focused app? I mean: you can build 80% of twitter in Drupal, but in 10% of that time, you get 100% of Twitters features by installing status.net.
  • Is it something that Drupal is particularly good at? A community blog, a simple forum and more such work can be done very well with Drupal, yet a simple brochureware can prove to be a painstakingly long road of horror in Drupal (yet done in 10 minutes with, say, Joomla!).
  • Is it something that has never been done before? Then no CMS will be able to help you a lot, after all, it hasn't been done, so it is not a standard component, yet.

And lastly, evaluate what a CMS like Drupal offers you, versus what it will cost you. Often I hear a reason to use Drupal, is that it offers a lot of standard features out of the box. That is true. But really: saving four hours for a login-feature on a 10k project: does that matter?

And even if it does: are you not going to loose that four hours right after, because the client wishes an entirely different login, then Drupal delivers out of the box? In other words: evaluate very well what a CMS like Drupal really offers you in code-writing-savings.

Edit: As a commentor points out, this question refers to the PHP framework Symfony, not Symphony.

share|improve this answer
2  
Symfony, not Symphony - I know that sounds pretty surprisingly however not everything has an English name. ;) – Crozin Sep 18 '10 at 13:07
2  
+1 for the last sentence. – kizzx2 Mar 11 '11 at 12:57
2  
good explanation, it finally unblocked my ears to being stubbornly stuck to developing every single project from scratch on symfony... Yea please scold me <_< – Populus Apr 12 '11 at 4:16

Very good points here, like what is the point of using Drupal's login solution if you have to reinvent your own. Maybe because you only end up re-engineering 15% of Drupal and not 75%? Whereas with Frameworks is the complete opposite. Since every framework implementation out there is most likely very different than yours, you can only recycle the code in the framework per sé (15%) while building from scratch 75%.

To put some personal perspective, in 2007 I single-handedly built a PR state senator's website (www.bhatia2008.com, offline) from "scratch" using Zend Framework. I loved it and I would do it again, with every PHP Framework out there, just for fun because I love learning and programming probably as much as most readers on this site. However, unlike Drupal or Joomla a framework is not a Content Management System. That means that:

  • With frameworks like Cake, ZF or Symphony you must build common CMS features from scratch (like content editing, RSS, login).
  • Those features are paid by somebody, whether that is your client's deep pocket, or in case his pockets aren't very deep, or he is a lawyer, or a politician (and there are instances where these three do happen at the same time) your non-paid overtime hours in the wee hours of the morning.
  • Those features that you built in the wee hours of the morning? They will also contain more bugs, because I don't know who said that 1/3 of the lines of new code has bugs, but boy I believe him. I just hope you have plenty of time to spare on your weekends as well. For example, what user login system is more stable: one that has been used, bug tested, hacked and patched for quite a long time in a few hundred amount of high profile sites, and is maintained by a dedicated community of volunteers; or one that you created overnight? Let's hope you are also very good at finding application security holes and that you are not planning to store very sensitive data like social security and credit card numbers with something baked overnight. Simply put, Open Source frameworks provide free QA (Quality Assurance) and IA (Information Assurance). Does your company have a dedicated IA team like this, for free? How about free unit testing?
  • And just in case your shiny new CMF survives to see the light of the day, you are a very successful entrepreneur, and now you have to expand your team from one (yourself) to lets say 3 or 5 other fellas, they'll have to grok your code. You can do that because you have very good documentation practices. Right? Needless to say, if you need to quickly ramp up employees, it's easier to find Drupal developers that have been using the same code base for many years, than let's say, to find a programmers that...wait, can there even be programmers out there that read your custom symphony code before? I don't think so, unless they work for the CIA/NSA and have been snooping your computer all along ;)

If you want to do something that no one else is going to ever do, go for a framework. Consider a CMS when 51% of the features you want are already out there available**. Use a CMS when 75% of the features you need are readily available.

**Unless you happen to be funded by a business entity with deep pockets and lot's of time and lot's of patience, which in a post dot-com boom, post 9/11, post-recession crisis, I would find increasingly difficult to find.

share|improve this answer

If you are spending a day searching for how to do something, you are definitely doing something wrong.

I think I managed to understand Drupal in a few months working with it. I didn't know all about Drupal, but I had a general idea of how it works. It's actually not that hard to grasp either. I won't go into details about how Drupal works here, but you can read Eaton's post here on SO.

In my experience, Drupal is a great development framework and due to it's great community, you can get a lot done, in very little time.

It seems like your problem is, that you haven't gotten Drupal yet, and not that Drupal is bad. I would suggest that you stick it out, in the long run, I'm sure you will be more efficient and faster, than what you can do with a framework like Symfony.
However, it also depends on what you are doing. If 90% of your site, is custom coding, you don't really need Drupal, as it brings a lot of nice CMS features with it, that can get in your way, of you are making something more like an app, than a website. But if you are creating sites, with content, users, etc, Drupal will get you far in no time. It's just a matter on selecting the modules you need.

So if you are creating websites, stick with Drupal, there's a reason why so many do. I think you will be happy for that decision once you get over the learning curb.

A good book, to really help you along with Drupal development is Pro Drupal development, if you don't have it already, you should get it ASAP.

share|improve this answer
2  
Hmm, To clarify your assumptions. I'm beyond the learning curve. I provide support on drupal.org so I can't agree that I haven't gotten drupal yet. But when it comes to advanced work, Drupal can really wreck the brain for things that are straightforward to implement in plain PHP. I really think that Drupal is most useful for beginners and intermediate projects, but not for advanced work. Since you mention Eaton, in one of their DIWD conferences, Eaton demo'd how to build twitter with Drupal but advised against using Drupal to build a custom app like Twitter. You see what I mean. – dave Sep 13 '10 at 7:23
4  
I work with Drupal, almost 10 years now, I give (professional) Drupaltraining, -support, development consulting. And I see dave-s problem a lot. There are a lot of areas where Drupal is not appropriate. A lot of which involve customwork. – berkes Sep 13 '10 at 7:55

As usual - take the tool that suits you best - there's no "must". First. you are comparing wrong things - you are doing CMS vs Framework - tool already built with tool that enables you to build. I know that Drupal lies under its specific framework but I don't count that as one. Drupal needs you to conform, symfony will conform to you - choose whichever you want.

share|improve this answer

I'm going to do the "try my CMS" thing, and suggest you give modx a try. Adding your own php code extension is a breeze, which is what converted me. They call it a CMF (f meaning framework) but it is still a cms with some looser code implementation, it's nowhere close though to the raw ability of frameworks like symfony and kohana(ci).

Some of the frameworks have an easy way of creating the databases and pre-populating them (like symfony) and a lot of the basics are done for you before you even touch any php. However you'll still need to do quite a bit to implement necessary features like user management, text editor, media uploader, and other things that have been taken care of in most CMSes.

Drupal seems like it wants you to do things the drupal way, and if you don't you pay the price sooner or later. But my understanding (could be wrong about this) is that a lot of the plugins are not done properly all the way, and if you just install a bunch of plugins without understanding drupal, you can end up with a big mess.

share|improve this answer

Drupal now uses Symfony http://www.garfieldtech.com/drupal-symfony2

share|improve this answer

I'm thinking about real framework as well, like symfony or zend.

I working with drupal for the last 5 years. The worst thing in drupal (in my opinion) it has just moved to php5 (drupal 7) and whole cms is written in procedural programming in same time trying to reach OOP philosophy. All OOP abstraction, encapsulation, polymorphism etc. is done in procedural way. When I've read this for the first time I was astonished by the fact this is actually can be done in this way. Maybe this is the reason why drupal is so cumbersome in some level to write code in own "way".

share|improve this answer

Symfony could be a good idea, it comes with lots of plugins which can reduce your work. also you will be having total control in your hands for the rest functionality for which its taking so much time in drupal.

share|improve this answer

Symfony is CMF, while Drupal is CMS with CMF inside. This mean, to create a website using Drupal only takes several seconds! But if u need complex Website Application then you need to use Drupal CMF (Framework). The good news is Drupal 8 will use Symfony as its Framework!!!

share|improve this answer

I've written robust applications with the Zend Framework and just recently dived into Drupal 6/7 for a project. I studied Drupal religiously for two 1/2 months. I learned about its APIs, registry, nomenclature, hook system, module system, etc. I found Drupal to be great and very efficient if you have a client/job whom are NOT particular about every element on a web application. I was working with a client, that would continually changed their minds about how they wanted to use a jQuery slide plugin including the slide's layout. In addition to having a jQuery slide, they wanted every image to have an expiration start and end date for promotional use.

In a scenario like this, after surveying both Drupal and Zend, Zend made much more sense because I had greater flexibility (Zend molds to you you have to mold to Drupal). I would have had to code just as much in Drupal creating a custom module or theme using it framework API as I would in Zend.

In essence, use Drupal for the modules it already has including its out of box functionality. For other custom applications, your better off using a framework like Zend where you'll need the flexibility.

My experience working with clients is that you need a lot of flexibility which is why I usually use a framework and extend or dump existing code I've used from other project which speeds the progress just as a Drupal installation/project launch. After using a framework for a few projects, you'll be able to be just as fast a pre-built CMS with greater flexibility.

And even though Zend was a difficult framework to grasp, I felt much more at home with it being an MVC OOP framework and dealing with things under the hood as oppose to looking for the right module.

share|improve this answer

I got out of Drupal for pretty much the same reasons you mention. I had been using it since version 4 and it was no longer a tool that made my work easier. I found myself spending time building workarounds that I knew wouldn't exist outside of Drupal.

And a lot of Drupalisms aren't transferable to other frameworks. Spend a lot of time working in Drupal and your Object Orientated skills could suffer. There are many other best practices that Drupal just does not follow.

Another aspect of Drupal that made me uneasy was the rock star mentality and the focus on promoting Drupal (into governments and education etc). The Drupal community spends too much time obsessing with this. Who cares if your software is more popular than Joomla? And certified to rock? It makes me wanna cry. I saw a job advert that actually required this! Run away!

Finally, Drupal is generally slow at adopting new ideas and technologies. Look at the test framework. It's an old xUnit framework with a browser layered on the top. It's painful to write tests with it. I gave up and wrote a cucumber suite around it.

After looking at some other PHP frameworks, I moved into Ruby on Rails. I think it's one of the best decisions I ever made in my career. I'm working on exciting projects and really getting some interesting stuff done. My productivity has at least doubled. And the test framework is fantastic! Also, the developer community really knows their stuff. Much more leading edge.

share|improve this answer
Drupal is a pain – jini Sep 14 '12 at 22:20

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.