vote up 3 vote down star
2

I am wondering why this framework (QCodo) is almost forgotten and totally unpopular.

I've started using it a few years ago and it is the only thing that keeps me with PHP. Yeah ... its development is stuck (that's why there is now more active branch Qcubed) but it is still very good piece of software.

Its main advantages:

  • Event driven (something like asp.net) no spaghetti code
  • Powerful code generation
  • good ORM
  • follows DRY
  • very simple AJAX support
  • is fun to write

Since then I wanted to be trendy and checked Django but I cannot write normal request-based web application (it just doesn't feel right).

Don't believe? chess.com is written with it and surely there are plenty others.

My 2 questions are:

  1. Have you heard of it (PHP people)?
  2. If you are using it what is your opinion about it (show us examples of your work)

Thanks

flag

22 Answers

vote up 0 vote down

I chose QCodo 4 years ago to develop our product. I've never regretted - now we're 3 developpers on the thing, and any non-OOP solution wouldn't work. We have installed almost 50 customers with it - on Apache, IIS, my SQL and SQLServer platforms, Linux or W2003. F The design is brilliant, code-generation is great, and it's really easy to develop, extend, and maintain. I can't read any other code now...

Yes, marketing is quite poor, and the project used to depend just on the creator (Mike Ho). All of it moved to Git recently, and marketing should be better soon. And, now Mike Ho is back !!!

link|flag
vote up -1 vote down
  1. I never heard about it.
  2. I didn't used it.
link|flag
Why the -1 I answered all the questions. :) – powtac Oct 24 at 10:03
vote up 0 vote down

I think that QCubed is great and mainly because of the way you can use Ajax (you dont have to write Jscript and you dont have to use jQuery).

One very useful document: http://www.qcodo.com/demos/QcodoClassLibrary.pdf

link|flag
vote up 0 vote down

This Swim Log uses it mySwimLog

link|flag
vote up 1 vote down

I have used QCodo/QCubed for 1.5 years now. Started with my own framework, which at some point seemed messy. That's when I started looking for a more mature framework. Luckily I found QCodo. Since then I have never even considered looking for something else. The framework is so flexible and powerful, that you can do everything you want with it.

I had almost no experience with event-driven architecture. So, the beginning was somewhat hard, cause there was few documentation available. But community itself is very active and you probably get answer to your newbie questions in 1-2 days (sometimes even in hours). But currently the documentation level is way better and community is even more active :)

Nothing I can complain about. And if I have some problems/suggestions, I will try to discuss those with core developers. Whining about stuff without constructive discussion is lame imho.

I have used QCodo/QCubed for 3-4 successful projects now. The more I use it, the more I like it :) And also, I'm trying to help developing even better framework whenever I have spare time. And I can say, that I have had more than 10 people, who I have convinced to start using QC now ;) And I hope there will be many more.

QCubed totally rocks!

(how can I gain reputation? I cannot vote down, it needs 100 reputation.. I just registered here)

link|flag
vote up -1 vote down
  1. qcubed community is not so skilled to carry on a project with new good ideas

Nonsense

  1. the new code is not at the level of Mike Ho.

Nonsense

  1. bugs in the state of qforms, the forms of qcodo/qcubed.

??

  1. is not popular.

So what

  1. they do not want to go ahead and use DSL and forward engineering.

Your point? Every framework that doesn't want to go your route is wrong? I for one would not want the suggestions you have made

  1. the forms only works with js enabled.

You have to be kidding right? If users don't have JS enabled, then they're in the stone age...

  1. is written in PHP.

No comment

  1. new plugin system poorly designed.

Based on what do you say that? I would say nonsense to this as well

Clearly there is some hidden agenda with this poster...I've also had a close look at Symphony - and I would go with QCubed over Symphony every single time. For big apps or small

link|flag
that poster is just a troll from the qcubed forums - he contributed nothing, and kept whining that noone listened to him when he had nothing to offer other than "this sucks". – Alex Jun 12 at 15:26
vote up 0 vote down

The quick reason is that popularity and success do not generally go with what's technically best. I'm sure any techie can come up with numerous examples. There are numerous things that can promote mediocre solutions, like marketing, first-mover advantage, being a touch better in some area that catches people's attention, being used in some high-profile application, or just plain luck.

The other reason is that what appears technically best to you may not appear so to somebody who's doing something different.

link|flag
vote up 1 vote down

I started to use it two years ago. The pro:

  1. code generation from the database
  2. ORM object oriented
  3. simple use of ajax

Cons:

  1. qcubed community is not so skilled to carry on a project with new good ideas
  2. the new code is not at the level of Mike Ho.
  3. bugs in the state of qforms, the forms of qcodo/qcubed.
  4. is not popular.
  5. they do not want to go ahead and use DSL and forward engineering.
  6. the forms only works with js enabled.
  7. is written in PHP.
  8. new plugin system poorly designed.

At the moment, Grails seems to be the best framework, very DSL oriented, with the possibility to use any existing Java code, good template library, possibility to use different js frameworks, built on Hibernate and Spring. With Grails is possible to write simple web app or financial application.

I hope not to use PHP in the future, but since I know Qcubed/Qcodo I will use it if it will be necessary. For newbies, I reccomend Symfony, bigger community, mre plugins, feature rich, it has a more secure future.

link|flag
rtacconi is a troll from qcubed forums. – Alex Jun 12 at 15:25
1  
Alex, try to answer with some concrete concept, read and update your knowledge. The problem of most members of the Qcubed community is that they do not what I am talking about. Mike Ho also said that he does not know how DDD is. Read infoq, Martin Fowlser's blog, Rails, Grails, Spring Framework... amd more. What I am saying is correct, 100%, I can give references, if you want. – rtacconi Jun 25 at 12:06
vote up 3 vote down

Yes, we do use it at Chess.com and overall have been very happy with it. It can get problematic trying to figure out how/where to store all those QFormStates when you're getting well over a million pageviews a day. Every page view is its own QFormState! We solved this by putting all of them into memcache! It does have a bit of a learning curve, but once you know it, you never really need documentation any more. I actually have moved away from using QQ entirely, and use all custom sql in our ORM files. QQ is just not powerful enough to do heavily optimized queries and highly tuned queries is more important than database abstraction. After all, the site needs to function and be fast. Here is one example ORM static method in our User class to load a random user from the database (we used to use this to show a random "user spotlight" on our members page). Notice how it uses the slave database, not our master (custom built function). It also uses memcache so that the randomized user only changes every 10 minutes (600s).

public static function LoadRandom($blnAvatarRequired = true, $blnForce = false) {
  $strCacheKey = MyMemcache::QueryToKey("User->LoadRandom()");
  if($blnForce || false === ($objUser = MyMemcache::G()->GetQuery($strCacheKey))) {
    $objDatabase = QApplication::GetSlaveDbConnection();

    $DaysAgo = new QDateTime(QDateTime::Now);
    $DaysAgo->AddDays(-10); //make sure this is an active member

    // Setup the SQL Query
    $strAvatarReq = $blnAvatarRequired ? ' and u.has_avatar':'';
    $strQuery = "
      select
        u.*
      from
        user u
      where
        u.is_enabled=1 and
        u.create_date > '$DaysAgo'
        $strAvatarReq
      order by
        rand()
      limit
        1
    ";

    // Perform the Query and Instantiate the Result
    $objDbResult = $objDatabase->Query($strQuery);
    $objUser = User::InstantiateDbRow($objDbResult->GetNextRow());
    MyMemcache::G()->SetQuery($strCacheKey, $objUser, null, 600);
  }

  return $objUser;
}
link|flag
Thank you for the example it is very useful how you manage so much traffic – Pawel Jun 11 at 17:18
vote up 1 vote down

I've been using QCodo for 2 years and now I'm with QCubed.

This is the nice way to develop and maintain web applications, as well as, the easiest way to deploy code and test it. Remember that QCubed is now growing in acceptance and it's good for all QCodo's Community.

I think that frameworks can save a lot of development time but it many cases it's not recommended for all yours web developments.

link|flag
vote up 1 vote down

Emulating ASP.NET or Wicket in PHP is not a good thing to do. Moreover, the code style does not look good to me.

$this->btnSavePage = new QButton($this);
$this->btnSavePage->Text = "Save";
$this->btnSavePage->Visible = false;

$this->btnCancelEdit = new QButton($this);
$this->btnCancelEdit->Text = "Cancel";
$this->btnCancelEdit->Visible = false;

Hungarian notation? OMG. I need to create a big object to create a button? Heavy weight to me.

link|flag
+1 , I don't see the point of emulating ASP.NET in PHP. The event-driven approach has always seemed to be better for windows app , not request/response model of the web imo. – Rick J May 29 at 5:12
vote up 0 vote down

I've been using QCodo, ZCodo and now QCubed for quite a while now.

I actually picked it as a replacement for CakePHP, which at the time of my need, wasn't mature enough to do the things I wanted.

I'm super happy with it as a framework; it abstracts things just enough, but not too much that you lose sight of the programming.

I plan on using it for any development project I'm responsible for in the future, and I'm looking forward to QCubed being the best community maintained framework for PHP5 out there.

link|flag
vote up 0 vote down

I also came from a dotNet / Codesmith environment. When I picked up a project that wanted to translate a dotNet site to PHP I looked for a framework that could best emulate the way the original application's logic was set up. What I found was either bloated frameworks or frameworks that did not completely fulfill the projects requirements.

I accidentally found QCodo while researching using the MyGeneration tool for PHP code generation. I have not looked back since. The ease of use, ability to quickly build complex applications and the true OO approach QCodo now QCubed uses makes it the best framework for my purposes.

link|flag
vote up 0 vote down

I've been using QCodo since beta 2, and am now a core contributer of QCubed, so yes, I've heard of it.

What initially drew me to the framework was the code generation. I came from asp.net, and codesmith, and was very pleased to find a framework that gave me both the event-driven approach of asp.net and the code generation of codesmith.

I also love that it's all pure OO PHP, which means I don't have to learn a new language to develop my PHP app, and customizing any aspect of the framework that doesn't behave like I want is simple.

link|flag
vote up 0 vote down

http://www.piranhamethod.com/2009/04/09/qcodoqcubed/

I have heard of it and I love it.

link|flag
vote up 4 vote down

Qcubed and Qcodo are used by us in 3 projects and these ones are the cleanest and easiest to maintain projects we ever had! This is great stuff and easy to understand. Just go into the code you won't need much manuals.

Qcubed community is much stronger at the moment so you might want to check in Qcodo forum for your answers on basic problems, but post on the Qcubed forum.

We will continue to stay with this fantastic product and community!

Regards, tronics

http://www.twitter.com/qcodo

link|flag
vote up 11 vote down
  1. The creator(s) of Qcodo never really promoted the framework, and thus, didn't generate a large following. I believe they created it mostly for their own use, but also offered it up to others. It is awesome if you are looking for a code-generating framework. It does have a learning curve. So to get the most use of it, it's best to spend time studying the examples.

  2. Qcodo has really had no active development for well over a year and there doesn't appear to be much chance that development will continue on Qcodo anytime soon. Qcodo appears to be dying a slow death.

  3. Qcubed, a branch of Qcodo, is under active development and has been since Nov 2008. It was created by users of Qcodo who got frustrated with the lack of Qcodo progress. If you are just getting started, start here and not with Qcodo. But use Qcodo forums to search for problems/questions you may have.

Qcodo and Qcubed are fantastic frameworks. Don't discount or underestimate them just because you've not heard of them.

link|flag
vote up 1 vote down

While I have heard of it (Qcodo... not this fork) I never looked into using it. There are tons of frameworks and only so much need. PR and mindshare are hugely important in such a situation and Qcodo never really had either. Now that I am settled on a handful I have no time, nor inclination, to start learning a new framework.

link|flag
vote up 0 vote down

Never heard of it.
Been doing PHP on and off 4+ years

link|flag
vote up 3 vote down

No, I'd never heard of it.

The main ones I've heard of are Zend, CakePHP, Symfony, Code Igniter, and one or two other ones I can't recall the names of right off the bat.

link|flag
vote up 2 vote down

I've been doing PHP work on and off for about 3 years and have never heard of it. Ask anyone to name a PHP frameworks and you're gonna get the usual suspects: Code Igniter, Cake, Zend, etc.

Guess QCodo devs need to work on their marketing a bit!

link|flag
They have no marketing at all :). I think the community wasn't big enough to gain momentum. – Pawel May 8 at 20:07
vote up 22 vote down

I've used PHP a lot for many years and never heard of it.

link|flag

Your Answer

Get an OpenID
or

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