Posts Tagged ‘Tutorial’

The Mate Framework – ZendAMF – Adobe Flex

I have been working on a few eLearning flex apps for the last few months, and after some tests and experiments I settled on the Mate Framework for Flex – http://mate.asfusion.com/.  After a short learning curve, I have found Mate to be excellent and especially easy to implement on any project in a very short [...]

Kohana v3 :: Routes Basics

**NOTE** I have recently found a much cooler way of doing this – please read this also: http://v3.kohanaphp.com/guide/tutorials.urls .
I have found the routing in Kohana to be one of the most helpful and easiest features with wich to work.  In this tutorial I will show you how to use Routes to organize your Public site [...]

Kohana v3 :: Custom 404 Page

A best practice for a web app/site in “production” is have an error page that looks like its part of your website – kind of a friendly error page. With Kohana v3 this is fairly easy to do, and only requires one new file, and a modification to one other file.
Note: This solution was [...]

Kohana v3 :: URL Redirect

To perform a simple redirect in v3, all you have to do is:

Request::instance()->redirect(‘/foo/bar/1′);

Kohana v3 :: Godaddy & Megahosters

I have the opportunity (or problem, depending on my mood) to work with a diverse group of clients and many of the small business owners have hosting accounts with Godaddy, and one with Megahosters. Unlike most developers, I actually don’t mind godaddy so much, but, thats another post.
The point of this post is that [...]

Kohana v3 :: Auth Module

I was just about to throw my monitor across the room when I finally got the Auth Module working:

IMPORTANT – do not use the complete v3 download from the main Kohana site (It simply doesn’t work that way), instead git the project, the core, and all the modules individually from github: http://github.com/kohana.
Note that the ORM [...]

Kohana v3 :: Session Database Driver

I was having a little trouble getting the session to work while using the database driver (instead of the Native or Cookie drivers), but I eventually found the error. I was using the sessions table MySql create statement from Kohana 2.3 documentation, which is slightly different from the required table for 3.0. [...]

Kohana v3

For the past year I have been building all of my web applications with Kohana in their 2.x branch.  With the release of version 3 (http://v3.kohanaphp.com), I will be delving into the new code for a new CMS based website for a big client of mine.  So, I thought that I would use this opportunity [...]