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 [...]
To perform a simple redirect in v3, all you have to do is:
Request::instance()->redirect(‘/foo/bar/1′);
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 [...]
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 [...]
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. [...]