
Many of us face this strange issue while working on cakephp framework… Me to faced it many times so thought of sharing the solution with you all, even I have got this solution from some other blog few months back.
So what exactly happens
When we include JS using
$javaScript->link(‘js_file.js’);
And we get error as
JsController not found
Basically when you link your javascript and if your cakephp engine aint find specified file in folder
/webroot/js/
it throws this error. So always check the existence of file in folder first for this error.
The Web Application Component Toolkit is a framework for creating web applications. WACT facilitates a modular approach where individual, independent or reusable components may be integrated into a larger web application. WACT assists in implementing the Model View Controller pattern and the related Domain Model, Template View, Front Controller and Application Controller patterns.
The WACT framework is developed with the philosophy of continuous refactoring and Unit Testing. WACT encourages these activities in applications based on the framework. WACT uses Simple Test as a unit testing framework.
WACT emphasizes writing secure web applications. See Web Application Security for more information.
for more information click here
Categories: framework Tags: application component, application controller, assists, creating web, domain model, framework, model template, model view controller, philosophy, refactoring, reusable components, secure web, simple test, toolkit, web application security, web applications Seagull is a mature OOP framework for building web, command line and GUI applications. Licensed under BSD, the project allows PHP developers to easily integrate and manage code resources, and build complex applications quickly.
Many popular PHP applications are already seamlessly integrated within the project, as are various templating engines, testing tools and managed library code. If you’re a beginner, the framework provides a number of sample applications that can be customised and extended to suit your needs. If you’re an intermediate or advanced developer, take advantage of Seagull’s best practices , standards and modular codebase to build your applications in record time.
Once your development cycle is complete, use Seagull’s features for deploying and maintaining your apps locally and remotely. Check out the friendly and active Seagull community and see if Seagull’s a good fit for you
for more information click here
Categories: framework Tags: Apps, best practices, BSD, code resources, codebase, development, framework, gui applications, library code, Licensed, php applications, php developers, project, record time, sample applications, testing tools, web command Php On Trax (formerly Php On Rails) is a web-application and persistance framework that is based on Ruby on Rails and includes everything needed to create database-backed web-applications according to the Model-View-Control pattern of separation. This pattern splits the view (also called the presentation) into “dumb” templates that are primarily responsible for inserting pre-build data in between HTML tags. The model contains the “smart” domain objects (such as Account, Product, Person, Post) that holds all the business logic and knows how to persist themselves to a database. The controller handles the incoming requests (such as Save New Account, Update Product, Show Post) by manipulating the model and directing data to the view.
In Trax, the model is handled by what’s called a object-relational mapping layer entitled Active Record. This layer allows you to present the data from database rows as objects and embellish these data objects with business logic methods.
for more information click here
Categories: framework Tags: business logic, database rows, domain objects, framework, html tags, incoming requests, model view, object relational mapping, persistance, PHP on TRAX, ruby, ruby on rails, templates, web application, web applications