Ben gerçekten bu anlamaya olamaz:
Ben başvuru / modelleri User.php adında bir dosya oluşturdum. İçinde classname Model_User olduğunu.
Benim Controller bir nesne oluşturmaya çalıştığınızda, ben bu hatayı alıyorum:
Fatal error: Class 'Model_User' not found in C:\xampplite\htdocs\code\application\controllers\IndexController.php on line 14
I googled around, and found this code, which is supposed to autoload controllers for me, it is located in bootstrap.php The code isn't working though. The example that used this code was working with ZF 1.8 so that might be the reason but I can't figure it out. How should I autoload my models?!
private function _initAutoload(){
$modelLoader = new Zend_Application_Module_Autoloader(array(
'namespace' => '',
'basePath' => APPLICATION_PATH
));
return $modelLoader;
}
Herhangi bir fikir?