Here is how to disable the model auto-loading in CakePHP: // .. around line 140 in /cake/libs/class_registry.php } elseif ($type === 'Model') { if ($plugin && class_exists($plugin . 'AppModel')) { $appModel = $plugin . 'AppModel'; } else { $appModel = 'AppModel'; } $settings['name'] = $class; $ai =& App::getInstance(); $search = $ai->__paths('Model'); $pathstr = '';…


In this tutorial, I walk through the steps to setup Mercurial repo hosting using Mercurial-server on Centos, and setting up Putty+Mercurial on Windows to enable access. There are a lot of small things that seemed to be missing from the existing guides, so I try to cover those to…


This is the 3rd part of my mini-series on Kohana 3 auth. I figure the best way to show the Kohana Auth module works is to provide a sample application module which uses auth. In this series of posts, I discuss: Setting up the basic Auth in KO3 (part 1)…


The Kohana 3 Auth model implements a set of basic functionality for authentication (login) and authorization (user rights based on roles). In this series of posts, I will discuss: Setting up the basic Auth in KO3 (part 1) An overview of the functionality provided by the Auth module (part 2;…


The Kohana 3 Auth model implements a set of basic functionality for authentication (login) and authorization (user rights based on roles). In this series of posts, I will discuss: Setting up the basic Auth in KO3 (part 1; this part) An overview of the functionality provided by the Auth module…