Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to use file Kohana_Auth_Arm which is extending Auth class? As Kohana auth arm class is having all required function, so i want to use it so that there is no need to write these function again. But when i include this file in init.php file of kohana-activerecord, seeing below mentione error

ActiveRecord\ConfigException [ 0 ]: Invalid or non-existent directory:
MODPATH/kohana-activerecord/vendor/activerecord/lib/Config.php [ 212 ]
207      * @throws ConfigException if specified directory was not found
208      */ 
209     public function get_model_directory()
210     {
211         if (!file_exists($this->model_directory))
212             throw new ConfigException('Invalid or non-existent   directory: '.$this->model_directory);
213 
214         return $this->model_directory;
215     }
216 
217     /**

This is because it is not able to find Model file. Can anyone please help me setup auth module using kohana activerecord. I also enabled Auth module inside bootstrap file. Kohana-activerecord is initialized after auth module.

I want to call auth function from controller through Model file which will access function of class Kohana_Auth_Arm.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.