There are a lot of php mvc frameworks out there now. Which one will get me to a frontend, a backend, a user system with permissions the fastest.

I like the look of things like Symfony or Codeigniter but there seems to be a lot of re-inventing the wheel involved.

Every web application is going to have some users, even if they're just administrators, and is going to have an admin page. Most will have some static content as well as coded modules and active features in a configurable templating system. I'd love to install some package and start with a system that does all that that so that I can focus on the hard parts.

I'm looking to build and internal order entry and tracking system if that has any impact on your answer.

link|improve this question

feedback

20 Answers

up vote 8 down vote accepted

Try using symfony

link|improve this answer
I've been using it for almost 2 years, and I usually think frameworks cost more work than they save. Very much like Rails, extremely productive. Stable in production. Well documented. Highly recommended. – Vineel Shah Aug 24 '09 at 21:48
feedback

Have you taken a look at Drupal? It's really a CMS but with a modular plug-in framework and template system that might meet your needs.

link|improve this answer
feedback

Ive used codeigniter and it was pretty good, it needs little code to get results and has great documentation.

As for reinventing the wheel, is there much of one to begin with?

link|improve this answer
feedback

I'll put my weight behind Zend Framework. Here are the steps to setting up an MVC with a very light Authorization system:

  1. Download the latest version of Zend Framework.
  2. Follow the instructions for setting up Zend_Controller.
  3. Create a passwd file using htpasswd command.
  4. Use HTTP Authentication in a LoginController of your own creation.
  5. To check whether the current user has logged in use the following:

    Zend_Auth::getInstance()->hasIdentity()

link|improve this answer
feedback

Agile Toolkit is a PHP UI framework, which comes with Object-Oriented User Interface. Pure HTML is produced when objects are rendered recursively. Here is a simple code snippet:

class page_users extends Page {
    function page_index(){

        $crud=$this->add('CRUD');
        $crud->setModel('User',null,array('id','email','name','status'));
        if($crud->grid){
            $crud->grid->addColumn('expander','more','More...');
        }
    }
    function page_more(){
        $tt=$this->add('Tabs');
        $tabs=$this->add('Tabs');
        $tab=$tt->addTab('BasicInfo');
        $tab->add('Form')->setModel('User')->load($_GET['id']);

        $tabs->addTabURL('../password','Password');
        $tabs->addTabURL('../activity','Activity');
        $tabs->addTabURL('../engage','Engage');
    }
}

Interface is based on jQuery UI CSS Framework. Interaction with HTML, JS or AJAX is handled by Agile Toolkit. Above code alone will produce this:

agile toolkit screenshot

The object structure is well-designed and can be used in major web projects. Agile Toolkit is available under OpenSource license.

See also:

I'm one of the authors of this wonderful toolkit.

link|improve this answer
also, there are two set of helper tools that will make you quick-start your project: Schema Generator (generates sql from Models you define) and also Model Generator (generates actual Models from SQL, supports implicit relations from sql). – jancha Sep 20 '11 at 18:12
Right, I forgot to mention MVC. – romaninsh Sep 20 '11 at 18:27
feedback

After spending a chunk of the day installing a number of applications and systems I think I've settle on BackendPro which built on top of CodeIgniter. It's definitely lacking in direct support, but the CI framework has decent support.

BackendPro gives you an admin dashbaord with a basic permission system and little else. It seems perfect for me.

link|improve this answer
feedback

Well, it's going to be the one with the shortest learning curve. Which means it probably won't be ZF! I think Cake has a pretty rapid deployment cycle because of its scaffolding nature. Got to be worth a look.

link|improve this answer
feedback

I agree with Sam, CodeIgniter was the fastest for me to have setup and an interface running with dynamic content. And it's pretty easy to learn too.

link|improve this answer
feedback

CodeIgniter is the most approachable framework I've come across. Many of the others (Cake, Zend, Symfony) seem overly complicated. CI documentation is great. They've kept it relatively lean. However, it doesn't offer much help for user authentication and accounts. As you note, practically every app worth writing includes standard user accounts so this is a major gap.

link|improve this answer
feedback

CakePHP has good ACL support and you can create a separate set of views for "admin" by default. You can also get started pretty quickly with the Rails-like scaffolding. I've gotten to play with it more than actually use it in production, but I've watched others working with me build a new backend system for an app in it in a good afternoon.

link|improve this answer
feedback

I'm really amazed that nobody has mentioned Silverstripe yet! It has the UI already... if you want something more towards full stack I'd go with Zend Framework and adopt someone elses basic setup.

link|improve this answer
feedback

I use CakePHP and I am very happy, I think the commnunity is great.

link|improve this answer
feedback

Try the new yii framework. It's blazing fast with the use of apc extension. I think it has got a lot of potential to be the best php framework in future.

link|improve this answer
feedback

Lately I've been working with Magento, an e-commerce app. I really like the layout (code and system) and I've been considering just removing the cart stuff and using it as a framework so that I can keep the admin pages, permission system, template engine etc. But I'm not sure that I'd save any time compared to writing those sections from scratch.

link|improve this answer
Creating another Frankenstein by ripping off some code and features from a CMS is usually not a good decision. – vlood Jan 3 '11 at 9:08
feedback

I think you should really take a look at Joomla. It is not a framework in the traditional sense, but it is not too far from it either.

link|improve this answer
1  
ohh man. joomla is just a cms. an extremely bloated cms. You use frameworks to develop CMS'ses. there is a huge difference – Stann Nov 23 '10 at 3:35
1  
Joomla is actually a framework as well. Even though it's a very bad one IMHO. – dan-klasson Dec 27 '11 at 16:12
feedback

Have a look at http://www.phpopenbiz.org/jim/

It is focused on building a front-backend application using XML and Eclipse.

link|improve this answer
feedback

Recent edition of php|architect included an article about atk-framework. I think it could be worth a look if minimal coding is a priority.

link|improve this answer
feedback

CodeIgniter is a really good framework that is really flexible and it's so easy to setup. I haven't really used the others like CakePHP and Zend in production so I can't say anything about them.

Kohana is a good choice too if you want PHP5 only support. Although it always changes it's API :|

link|improve this answer
feedback

Symfony took us a lot of time to work into our existing server setup, particularly with sessions. We would probably have the same issues with most frameworks but we stuck it out with Symfony.

If you get into Symfony, the sfGuardPlugin gives you a very quick and thorough Authentication setup. The backend admin setup in the new 1.2 version is really nice.

I've personally searched out very lightweight (even just 1 include file) frameworks and found one over at Livepipe.net, but that has seemed to since disappear.

link|improve this answer
"One include file" does not make a framework or script "lightweight". Usually they have thousands of lines of code in one file and would be much better split into many files. – DisgruntledGoat Mar 31 '10 at 21:26
@DisgruntledGoat While that's true, Sinatra for Ruby might be a good example of a 1 file framework that's fairly lightweight. – thrashr888 Mar 9 '11 at 9:36
feedback

If you want something more "lightweight" then a full blown Framework like Symfony or Cake, I would recommend the classic Pear QuickForm. The advantage in my opinion is the very simple learning curve and really good validation methods. See a short Tutorial

link|improve this answer
1  
A form class is not a framework – dan-klasson Dec 27 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

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