0
votes
2answers
26 views

.Net 4.0 and .Net 4.5

I am planning to develop a new mvc website with .Net Framework 4.5. But I have to do some maintenance work for an already existing mvc website which is built on Framework 4.0. Will there be problems ...
4
votes
4answers
119 views

Should I use a framework?

I know this question is vague, but I'll try to make myself clear. I am starting a Java project involving a Swing GUI. I want to follow the MVC pattern, and could use some help from a framework to ...
0
votes
0answers
12 views

Is this an MVC framework? [migrated]

I have built a framework for my applications that has been working well, and I have always referred to it in my mind as an MVC. However, after reading some more on what an MVC is (not that I didn't to ...
0
votes
3answers
217 views

Php MVC framework needs too many files per page

I have tried to build an MVC php framework, similar to Symfony. Every page is loaded through the front controller, which loads the corresponding page controller (1) and view (1). The view loads the ...
0
votes
0answers
183 views

Laravel trying to make skinny controller

im newbie in php and in mvc design pattern, my first framework is CI then i move from CI(just used it for 1 project then found this amazing laravel) i have read some of the articles about skinny ...
1
vote
2answers
167 views

Ingredients of full Node.js Website [closed]

I've made a lot of Node.js research for a couple of weeks. I can see Node.js is extremely powerful but I have some missing points in my mind for making a full functional website. What I know: There ...
-1
votes
2answers
181 views

MVC with php, how do files communicate with each other, if not with 'include' statement? [closed]

I'm trying to learn about MVC coding and I can't get a straight answer: Other than using 'include' and/or 'require' how do the files communicate with each other in a framework like Kohana or FuelPHP? ...
0
votes
1answer
34 views

How many controllers to make in a framework generally?

I was wondering if there are any guidelines for the number of controllers to make in any web based frameworks. I know it depends on the requirement. But still if you would consider a basic application ...
0
votes
1answer
158 views

Zend Framework 2: creating web forms using plain html in the view

At present, I use this: <?php echo $this->form()->openTag($form); ?> <?php echo $this->formHidden($form->get('page_id')); ?> <fieldset> ...
1
vote
2answers
478 views

how to use multiple ember data models in one view

Given these JSON data models on a RESTful server /users {"users":[ {"id":"1","first_name":"John","last_name":"Doe"}, {"id":"2","first_name":"Donald","last_name":"Duck"} ]} /users/1 {"user": ...
1
vote
1answer
1k views

angular js model relationships

I've been trying out Angular JS for the past couple of days and one thing I can't figure out is how to work with relationships between models. The project I'm working on has a Users model and an ...
2
votes
1answer
446 views

how do i set up angular js services

I'm building an app to manage an employee rewards program and I figured I would try and learn some of these new js frameworks I keep hearing about so I decided to check out Angular. Now I'm hoping ...
0
votes
1answer
139 views

PHP MVC - URL without action

I'm currently creating my own custom MVC framework in PHP that uses the MVC URL standard: example.com/{controller}/{action}/{id} This works fine, however, one of my controllers called "books" does ...
0
votes
2answers
128 views

Actionscript 3.0 and MVC

How do you implement MVC in actionscript 3.0? Do you build your own classic (based on GoF book) simple architecture or use some of modern frameworks? I learn on "classic solution" and couldn't ...
0
votes
0answers
132 views

RAD web application in PHP/Javascript - how about this approach? [closed]

Being autodidact in PHP programming for over 10 years now, I regularly ask myself if I'm using the right techniques to get things done. I started my own PHP/Javascript framework around 2005, and I ...
3
votes
3answers
1k views

why do we need backbone js or any JS MVC framework?

Why do we need to use a JS MVC framework(backbone) if we are already using a backend MVC framework(e.g Django or ROR). I can't understand the concept of two MVC frameworks and how they fit together. I ...
0
votes
2answers
576 views

Framework for MVC in desktop (non-web) application

I would like to know are there any Java (MVC) framework for non-web application (desktop application)? I have searched for a while, but the answers are all about Java web-application framework like ...
0
votes
0answers
9 views

How to learn how to use xfreemwork?

I've been looking for a job for a couple of weeks now and can't find any, so to try and open up some doors I've decided to start self train on some requested programming skills. I've come across many ...
1
vote
1answer
90 views

multiple controllers vs single controller

I have 5 different modules each of which is a separate sub-system with a controller independent of others. Now I want to build a single system comprises of these 5 modules (no need to change modules). ...
3
votes
2answers
261 views

Making Bootstraping Class in PHP MVC Framework

Hey guys I am making my own MVC framework (please do not downvote me because everyone wants to make a framework.) and so.. I want to make a bootstrapping class like I have seen in many frameworks. I ...
0
votes
2answers
1k views

AngularJS integration with serverside MVC Framework

I have created an app with AngularJS. Now for fallback and some extendible functionality I want to integrate it with some other MVC framewrok like JSF2, Struts2, Spring MVC, ruby on rails etc. Can any ...
2
votes
1answer
139 views

How to organize ColdFusion-based MVC application?

I want to move one of our existing apps (currently located in http://www.companywebsitegoeshere.com/myapp1) to an MVC structure. As can be seen in the URL, there are many apps running in the website ...
1
vote
1answer
106 views

Zend Framework non-existent controller redirects to home page?

When I type an invalid url (non-existent controller), it displays the homepage rather than return a 404 Page Not Found page. Does anyone know the possible reason? Thanks
0
votes
1answer
248 views

Pure-Javascript MVC-framework

I recently made use of Backbone as the MVC-framework for the single page web application we developed in my company. I found out that Backbone lacks some features that are quite important for larger ...
1
vote
0answers
126 views

Javascript MVC-framework (JS only) [closed]

Are there any JavaScript-MVC-frameworks for single page applications? (JS only, so without the need to compile or additional server software) Note that I recently abandoned Backbone after using it ...
0
votes
0answers
54 views

JavaScript frameworks that allow loading of data from multiple endpoints [closed]

A project I'm working on has these (unusual) requirements: User provides a list of API endpoints in a settings panel (all of these would implement the same API, just different servers). Client has ...
0
votes
1answer
87 views

Issue in mapping fragments MVC 3 EF Code first

i've recently added a new property to one of my models: public HttpPostedFile AvailabilityImage { get; set; } However, upon doing so I'm now getting this very strange error: error 3004: Problem in ...
0
votes
2answers
163 views

Is it okay to have class level variables in Symfony controller class?

I have a project that uses Symfony framework. For optimisation purposes I have narrowed down 6 common variables which are being used constanly during a request. Some of this variables are inside ...
0
votes
1answer
77 views

Should I use different Backbone classes or different instances for each list?

I'm using Backbone.js I have multiple lists of models on my page. Should I just make one "class" with Backbone.Collection.extend and my lists should be instances of this "class", or should I make as ...
0
votes
3answers
277 views

PHP - How to split MVC - View (using e.g. non logic templating engine) into logic class and raw html template? [closed]

I am convinced that templates should not contain any logic just { } and include and block parts thats all. In MVC frameworks V is usually raw php mixed with HTML which is IMO very bad for someone ...
0
votes
2answers
109 views

Is this the right way to set up an MVC framework?

So I've been researching and working on building my own MVC framework but keep running into 6 different ways of implementing it and I'd like to know if I'm on the right track with what I have so far. ...
0
votes
1answer
239 views

Persistent objects inside MVC framework

I'm writing my own PHP MVC framework and I was wondering which is the most appropriate place to code persistent data objects like User for instance. Without persistent storage like $_SESSION, APC, ...
0
votes
0answers
118 views

Modular Architecture like joomla component system

i did search about my question but the answers did not actually clear a solution for me. well, i need to implement a system, which it should have a main core, and every other functionality in the ...
1
vote
1answer
225 views

Model of MVC pattern, in context of PHP applications

I have read and studied a about MVC design pattern. Recently I have started working with Codeigniter framework in order to develop RESTFul web service for mobile application. As I was looking at ...
0
votes
1answer
557 views

Implementing Domain Model and Data Mapper pattern with external data sources

Update: Ok some update, finally we have decided on the framework (Yii) and have some initial structures. I will paste some of the relavent code to illustrate our current status: (only has read action ...
1
vote
1answer
145 views

What should I user to made API centric Web Application. CMS or any MVC Framework? [closed]

My requirement is to build API centric Web Application like I need to fetch Faceboook , Twitter , LinkedIn Feeds for particular user. As well as user can comment, share, like as he or she can do it in ...
0
votes
3answers
326 views

Is URL rewrite / routing (mod_rewrite) really necessary for a framework?

I've been writing PHP code for years. And now I have plenty of reusable modules -- for me at least. A typical classic-old-style developer :D. But now almost everybody using baked instant framework, ...
1
vote
1answer
210 views

MVC Template system [closed]

I will try to explain it as much as I can, hopefully it's gonna be enough: I would like to create simple templates for my newly started MVC framework (I am at the learning stage). At the moment, I ...
1
vote
1answer
88 views

If I install a ColdFusion MVC framework, will it mess up old applications?

The title pretty much explains the meat of the question. I'm debating on starting new development using MVC and the Coldbox Framework (or possibly another), but I'm not sure if the old applications ...
0
votes
1answer
481 views

How to create pretty URL's with a custom MVC Framework in PHP?

So, I am beginning the process of coding a PHP application website, which will be coded in the MVC architecture,but would like to implement the method of using Pretty URL's with it. Since I have ...
0
votes
2answers
222 views

DRY MVC view/controller separation

I have a custom MVC PHP framework that has a router class, which calls a controller, which uses a model, then the controller presents the view, etc etc. My problem is that I can't figure out ...
0
votes
1answer
56 views

How to set up abstraction layer and modules

I've got a problem I haven't been able to get my head around. I'm working on my own web app framework in php. I know there's plenty of good stuff out there but I like to play around with this and I'm ...
0
votes
3answers
1k views

migration to Yii framework

Currently I have almost completed a project on php using mvc, jquery, ajax, but no php frameworks. Doing some research i found Yii turns out to be one of the best frameworks ou there. Is it possible ...
0
votes
4answers
302 views

PHP MVC - handling views

I've found a framework that handles the views in a different way than just plain html. To be honest, I've no idea how are the big frameworks handling this issue because I've mostly worked with some ...
1
vote
1answer
86 views

Where should this code parts go?

I have a simple website, where users can upload pictures, and give them titles. Upload form should work without JavaScript and with JavaScript (as a form on layer with XHRs). I have a: Form_Upload ...
0
votes
3answers
172 views

Does the MVC concept apply to static PHP pages?

I am trying to build my own PHP MVC framework. At the moment I am creating a simple 2 page website where each page extends a template page so that I don't have to worry about the meta tags, header, ...
-1
votes
1answer
1k views

Prepopulating Yii form, from GET/POST

My problem is I have an HTML page that includes a short form on it. What I'd like is when this page posts/gets into my Yii model form, to be able to grab and pre-populate the empty form for the model ...
0
votes
2answers
186 views

How to a structure smaller php application/plugin [closed]

I'm currently making a booking system application in php, with an admin backend, frontend booking form etc, with the end goal being that people can download and use this on their own websites. I would ...
0
votes
2answers
133 views

Zend framework Nesting controllers

Zend framework Nesting controllers I was wonder if it is possible to have nested controllers. I have an application that has a page with left bar and right bar. | ...
1
vote
2answers
168 views

Why do MVC frameworks in PHP not persist between requests?

What I have been able to grasp from reading the source and documentation from several PHP frameworks is that they generally don't persist, except for what you personally cache or throw into a ...

1 2 3 4 5