Extending Controller
Posted
by MakDotGNU
on Stack Overflow
See other posts from Stack Overflow
or by MakDotGNU
Published on 2010-04-21T15:53:02Z
Indexed on
2010/04/22
9:23 UTC
Read the original article
Hit count: 326
Hi, I'm very new to Kohana and I'm trying to make a project in kohana 2.x, in my previous projects i had created a Base controller which used to extends Controller. and all other controller to Base_Controller. in Kohana I'm facing the problem. here is my structure.
class Base_Controller extends Template_Controller
class Home_Controller extends Base_Controller
both these Controllers are in application/controller folder
Fatal error: Class 'Base_Controller' not found in /home/myadav/public_html/innteract/innteract/controllers/home.php on line 2
© Stack Overflow or respective owner