In the following code, th开发者_开发问答e \"add\" action works as expected, but the remove action throws an error citing that Kohana \"Cannot delete favorites model because it is not loaded.\"
Every time I try to instantiate a certain model and use it, like for example: $categories= Model::factory(\'category\')->by_sale($id)->find_all();
i have a kohana module, describing a table that has a reference to another table. So i declare in the \'Sale\' module:
I believe I know how to do this, but wanted to verify with my awesome community peeps. =) Here\'s an example:
does anybody have an example of uploading images in kohana 3 without using any modules eventually ? i used https://github.com/kohana/image/tree/3.1%2Fmaster but my error is: Fatal error: Uncaught Koh
Adding \'index_file\' => FALSE to the Kohana::init successfully removes the index.php part of URLs, but when a开发者_如何学JAVA page is redirected to website.com/controller/action (note: there is n
Currently in the system analysis phase and I am looking at developing a system that uses Kohana for the backend and extjs to display and render my data. How feasible is this? Is it the right approac开
I am a beginner in integrating jQuery and PHP. I tried using the nestedsortable plugin of jquery and successfully integrated it to my kohana 2.3.4 framework. My problem is how can I pass the serialize
I have a collection of elements : $products_asc =Model::factory(\'product\')->sale($sale_id)->category($category_id)->order_by(\'product_id\', \'asc\')->find_all();
I\'m having a route for user controller. This controller has about 20 methods so I don\'t want to set them manually in routes: