I have integrated PHPExcel library with Kohana 3, and have some problem wiht output xls file. When I tried create xls file on server (save on server file system) everything is all right, but when 开发
开发者_如何学JAVAI have a site based on Kohana 3 framework. I want to integrate some bulletin board to it. I want to see boards in < div > tag of my site. And want to use accounts of this BB as my
Have a problem with creating route for my controller. I\'d like to organize controllers in directories and I put one controller into users directory. However I have no idea how to access it.
Is there an upgrade guide for Kohana 3.0.9 from 3.0.8开发者_开发问答. I\'m looking for something like what jQuery provides when they release a new version. It allows for a quick scan of the changes to
I\'m using Kohana 3 and have a /doctrine/Entites folder with my entities inside. When executing the code
There seems to be a built-in unit test module in Kohana 3.x. How can I use this? I can\'t find any official documentation regarding this module and even Google doesn\'t provide good ar开发者_如何学Ct
I\'m currently using this to check if the request is an ajax request: if ( ! Request::$is_ajax || Request::instance() == $this->request)
With Kohana 3, I would like to get to know if a page with a by the user entered URI exists. So basically the user enters an URI, and I will say if it will give a (404) error or not.
I have some code that is used both by the admin and public models. Currently some of the methods are exactly the same, but stored in the separate models of the admin and public sections. I created a m
If I have a route like this: Route::set(\'test\', \'test\') ->defaults(array( \'controller\' => \'test\',