Archive

Posts Tagged ‘framework’

CakePHP: JsController not found

July 21st, 2010 Jigish Thakar No comments

cake php logo CakePHP: JsController not found

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.

WACT

May 9th, 2009 Jigish Thakar No comments

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

Seagull

May 7th, 2009 Jigish Thakar No comments

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

QPHP

May 6th, 2009 Jigish Thakar No comments
QPHP stands for Quick PHP and is a MVC framework similar as architecture to ASP.NET.
Basically it:

  • Brings the elegance of Java and C#
  • Drops all Perl like bizzare statements that other PHP frameworks use
  • Relies extensively on OOP concepts

Read more…

PHP on TRAX

May 3rd, 2009 Jigish Thakar No comments

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