Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
14answers
11k views

SIMPLE PHP MVC Framework!

I need a simple and basic MVC example to get me started. I dont want to use any of the available packaged frameworks. I am in need of a simple example of a simple PHP MVC framework that would allow, ...
8
votes
7answers
259 views

My first .net web app - should I go straight to MVC framework (c.f. ASP.net)

I'm done some WinForms work in C# but now moving to have to develop a web application front end in .NET (C#). I have experience developing web apps in Ruby on Rails (& a little with Java with JSP ...
4
votes
8answers
816 views

PHP MVC Framework for the enterprise

I'm about to begin building a huge clinical healthcare application with PHP, and I'm looking for some advice on a framework. I need to be able to come up with a quick prototype, so it's important that ...
3
votes
1answer
297 views

PHP MVC/ORM Frameworks that are Hyper PHP (HipHop) Ready

Is there a good list of the PHP MVC/ORM Frameworks that will work with Facebook's HipHop?
3
votes
2answers
775 views

MVC framework for huge Java EE application

Which MVC-framework is the best option (performance/ease of development) for a web application, that will have + 2 million visits per week. Basically the site is a search engine,but also there will ...
2
votes
6answers
405 views

Ajax requests, through MVC Framework (e.g. ColdBox) or not?

Do you fire ajax requests through the MVC framework of choice, or directly to the CFC? I'm leaning towards bypassing the MVC, since I need no 'View' from the ajax request. What are the pro's of ...
1
vote
2answers
57 views

Which is best option for eCommerce wesite. Drupal or MVC Framework(Codeigniter, Zend, Symfony)

I am about to develop eCommerce website, but one question is keep roaming in my mind and my question is which is the best platform in PHP for a eCommerce by considering different aspects like ...
0
votes
1answer
139 views

PHP ob_start called twice, won't flush correctly now

I have written a MVC-framework and I am using ob_start('error_handler') to be able to catch fatal errors aswell. This works great! In boot.php // Start the error-logging ob_start( 'error_logging' ); ...
0
votes
3answers
136 views

A good book about new versions of django and Rails? [closed]

I want good books about these frameworks, but not the old versions. Some books are very outdated... =P
0
votes
0answers
114 views

MVC Framework: Client-Side or Server-Side or Both? [closed]

Problem Context: I am working on a large-scale web-based application. The main features of the application would be: 1. Cater to thousands of users, simultaneoulsy. 2. Real-time and Collaborative in ...
0
votes
1answer
62 views

To use interceptors or not interceptors in MVC application framework?

Does using interceptors for controlling the flow of events in a MVC framework == business logic coupled with, or leaked to, the framework? Is that something one should even worry about? Doesn't seem ...
0
votes
3answers
133 views

When Rails require mod_rails, what about Django, TurboGears, Symfony, CakePHP? Can they deploy using mod_python and mod_php?

When Rails applications seem hard to deploy (or used to be), what about Django, TurboGears, Symfony, CakePHP -- can they be simply deployed using mod_python or mod_php? Actually, won't it need ...