The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
8 views

How to get kohana session data outside kohana application?

I want to get the kohana session data outside the kohana application. I mean to say that i want to get the session data in a static file which is not a kohana page.
2
votes
1answer
34 views

How to set an own Exception on wrong database connection?

When I'm trying to connect to wrong database I'm getting standart kohana exception message like this: Database_Exception [ 1049 ]: Unknown database 'mywrongdatabase' ...
0
votes
0answers
65 views

Getting a 404 error for index page

I keep getting this error when trying to go the index page in kohana Kohana_HTTP_Exception[ 404 ]:The requested URL localwebsite/admin was not found onthis server. ...
0
votes
1answer
88 views

scraping all images from a website using DOMDocument

I basically want to get ALL the images in any website using DOMDocument. but then i cant even load my html due to some reasons I dont know yet. $url="http://<any_url_here>/"; $dom = new ...
0
votes
1answer
31 views

Rewrite to remove url - kohana 3.2 and .htacess

My installation of Kohana 3.2 works well. The site is navigable and also the CRUD functions works. He is in the example address: www.site.com.br/folder/. At .Htacess I have # Turn on URL ...
0
votes
0answers
52 views

Kohana ORM Caching/Caching design approach

This questions is related to Kohana ORM AND Caching module. I use version 3.2 if it matters. I tried to research trust me, but I really couldn't find some good answer... so here it is: What are the ...
0
votes
0answers
27 views

Kohana DB connection change from MySql to PDO

I built a project with kohana 3.2 and used mysql as a default driver, now i am thinking to change it to PDO, i just need to know if it will make any effect on my application, if yes where i should ...
0
votes
4answers
75 views

How to get an old password in ORM?

I need an old password (not hashed) for sending to user but doesn't see a good idea? I read the documentation and there is only a method where I can get a hashed password. What can I do for getting ...
0
votes
0answers
109 views

Image not validating (Kohana 3.2)

I'm add field 'entry_avatar' and 'entry_avatar_thumb' in Entry table. CREATE TABLE IF NOT EXISTS `entries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `entry_title` varchar(255) NOT NULL, ...
0
votes
1answer
53 views

Too many parameters for model creation in controller?

A have a lot of controllers where I must to save/create new models, it looks like this: public Controller_Test extends Controller_Template { if ($post = $this->request->post()) { ...
0
votes
0answers
50 views

Kohana site with api: How to send response to server and continue execute this action?

Have main site (server) and many host sites (clients). Server and client have API. Server side public function action_test() { $request = ...
0
votes
1answer
122 views

Is there any good extension (module) for Kohana 3.2.2 framework, that wokring with Excel files?

I need to compose some xls(x) files, but don't know a good extension (module) for Kohana 3.2.2 framework, I know about PHPExcel ( a lot of links and repos I found ), but the most of them based on a ...
1
vote
1answer
73 views

How to use Request::factory()->execute() to call an script from another library in the same host

I'm using Kohana 3.2, and I want to be able to call another script (unrelated to Kohana, outside of its 'jurisdiction') that returns a application/json response. When I tried using: $response = ...
0
votes
1answer
153 views

Kohana: How to send internal request like external from ajax?

I have some controller Ajax. That controller make some validation of request and if it not from ajax returns error message. Function is_ajax() check header X-Requested-With and return true or false. ...
0
votes
2answers
70 views

Kohana 3.2 multisite configuration

Right now I am sharing Kohana::Core between many sites on the same server based on this tutorial. I would like to go one step further and share everything (Controllers, Views, Models) except configs ...
0
votes
1answer
48 views

Kohana Routing for URL with hah tag (#) in it

I am working on a photography site in which I do NOT want the page got refreshed every time user goes to a new page (ie, photo) by clicking the thumbnails. At the same time, user should be able to ...
-1
votes
1answer
48 views

Kohana “has many” issue

I have a model named permission. Permission has many roles permission has many users permission has many denied users Below is from the permissions model: protected $_has_many = array( 'user' ...
0
votes
1answer
42 views

Kohana routing error

I keep getting this error: Unable to find a route to match the URI: notifications/send When I'm trying to access action send in notifications, but when I try access notifications it works fine.. ...
1
vote
1answer
158 views

kohana ORM foreign_key

I'm trying to find a way to get data from different related tables in Kohana . I have the file table which is defined as : class Model_File extends ORM { protected $_belongs_to = array ( ...
2
votes
2answers
696 views

How to upgrade from Kohana 3.2 to 3.3 (implementing PSR-0)?

What steps do I need tot take to upgrade from Kohana 3.2 to 3.3 with respect to the implementation of PSR-0 and what commands have to be executed from the command line?
0
votes
1answer
62 views

Dot in Kohana 3.2 route

I'm creating dynamic sitemap for my Kohana 3.2 website and I faced with next error. Route doesn't work if I use dot "." in it. Like this(http://localhost/sitemap.xml): Route::set('sitemap', ...
0
votes
2answers
135 views

Multiple Auth drivers in kohana3.2

I'm working on a project where I'm trying to implement authentication against external user base for customers, this seems to be working correctly. Recently there has been added another requirement ...
1
vote
1answer
54 views

Automodeler error - $_data = [];

I'm testing Kohana AutoModeler, but I think it is an PHP lack of knowledge. I have just set it up and got this error ErrorException [ Parse Error ]: syntax error, unexpected '[' in ...
1
vote
0answers
58 views

Proper way to setup cross-site authentication in Kohana 3.2

I am currently running two Kohana 3.2 applications: Web Server Rest API Server (handles web authentication and all database models) We are using password granttype/2-legged oauth2 for ...
0
votes
2answers
197 views

Kohana ORM - Incorrect table name

I have a weird problem with the Kohana (3.2) ORM query builder and i can't figure out what is wrong. I get "Incorrect table name" exception: Database_Exception [ 1103 ]: Incorrect table name '' [ ...
2
votes
2answers
144 views

Kohana ORM cascade delete

Is there any method in Kohana 3.2 ORM for cascade delete.I am a beginner in kohana so any one can help me in this matter?
0
votes
1answer
92 views

How to set a HTTP_Exception_404

I am using kohana 3.2 and kohana-error module is working fine, when the page does not exist. But I have this situation: the page exist, but no data is coming, because the data does not exist. I am ...
0
votes
2answers
123 views

Kohana ORM store count in many-to-many relationship

I'm building a application using Kohana 3.2 and Kohana ORM. The application has systems. Systems contain components. A system may contain multiple components, but also multiple components of the ...
0
votes
2answers
54 views

How to load 404 custom page for Kohana3 dynamically?

I've used a solution from how-to-setup-a-custom-404-page-for-a-kohana-v3-app, thanks to mdskinner. So, my working code is like: Kohana_Exception::$error_view = 'kohana/404';//bootstrap.php and the ...
1
vote
2answers
816 views

What are the main differences between Kohana 3.2 and Kohana 3.3

On my first view I haven't found no principled differences except new vendor folder. What are they?
0
votes
3answers
117 views

kohana kostache partial logic

Started an project using kostache. I have made some partials like banner,navigatons and footer in my class View_Layout with extends kostache_layout . Partials work fine on each page. One problem. ...
0
votes
2answers
66 views

How can I get an indexed array from query result in Kohana 3.2?

How can I get the INDEXED array result? $qry1 = DB::select('name')->from('people')->execute(); $assoc_array = $qry1->as_array(); $object = $qry1->as_object(); // $indexed_array = ...
0
votes
1answer
109 views

Kohana 3 class name convention

This may be a really stupid question. As Kohana 3 requires a directory to be created in order to be able to use underscores in the class name, the question is : a)Should I create a directory ...
1
vote
1answer
228 views

Kohana validation: correct syntax for range rule

In setting up validation for one of my models, I'm having trouble getting the correct syntax for the 'range' rule. Every variation seems to pass only the (first) min parameter and not the (second) ...
0
votes
1answer
210 views

kohana Auth with automodeler ORM

New to kohana here. I have a task from my internship to make login system with kohana framework 3.2 . I also did it to insert,update and delete stuff with auto modeler ORM. I have some trouble now ...
0
votes
1answer
210 views

Kohana Auth module login system

I recently started working at a company that uses Kohana with the Auto-modeler module and k0stache module. And I am currently making a login system but I can find some decent information about using ...
1
vote
3answers
487 views

Kohana rewriting urls in .htaccess showing file not found message

I'm using Kohana 3.2 framework, I've put the standard .htaccess file in the same folder of the aplication. my .htaccess file is # Turn on URL rewriting RewriteEngine On # Installation directory ...
0
votes
1answer
140 views

“NOT IN” Kohana ORM

i've got the following models: class Model_User extends ORM { protected $_primary_key = 'name'; protected $_has_many = array( 'repositories' => array( 'model' => ...
1
vote
1answer
269 views

Is PHPs mktime() function time zone dependent?

I already know that mktime returns the number of seconds since the epoch (Jan 1 1970 00:00:00 GMT) so the timestamps are GMT based. I have a PHP web app for school fairs and it's written using ...
1
vote
2answers
107 views

PHP Kohana 3.2.2 multipart form $_POST not set on MAC but works on Win

I've just encountered a weird problem. I've recently developed a medium size website using Kohana 3.2.2 + jquery + html + WAMP on Windows 7 platform. And everything seems to be working fine, until ...
0
votes
1answer
231 views

Oauth::timestamp refused error in linkedin api

I have done linkedin oauth api in my local. API response from linkedin is working fine in localhost. When I've moved to server, i got error in linkedin api on the server like as follows. ...
0
votes
1answer
189 views

Can not send_file with Kohana 3.2

For some reason when using $this->response->send_file($file_to_send, $file->hashed_name.'.'.$file->extension); I get errors like this: ErrorException [ Warning ]: mime_content_type() ...
0
votes
1answer
175 views

How to create new worksheets with PHPExcel using kohana 3.2

$excel2 = PHPExcel_IOFactory::createReader('Excel2007'); $excel2 = $excel2->load('ExampleSpreadsheettest.xlsx'); $excel2->setActiveSheetIndex(0); ...
0
votes
1answer
143 views

MongoCursorException : bad skip value in query in MangoDB as_array()

I have a mongo collection called "companies" which looks like this : { "_id" : ObjectId("..."), "name" : "company_1", "active" : false, "projects" : [ { "_id" : ...
0
votes
1answer
157 views

Kohana 3 Auth database schema

I just started to learning Kohana 3.2. It's nice, and it's similar to django so it is going pretty well. Bad the documentation is... poor. And the documentation for an Auth module doesn't exist (i'm ...
0
votes
0answers
151 views

Phonegap Application $.ajax calls not showing on Fiddler2

I have a 'simple' ajax call. I simply want to call the login action for my Kohana Controller from within a phonegap application. Sample code: $(document).ready(function() { ...
0
votes
1answer
296 views

I can't log in in Kohana 3.2 ORM Auth module?

Well, thats a trouble. The code is simple: public function action_index() { $post = $this->request->post(); if ($post) { // if I type it like this, manually - it will work ...
0
votes
1answer
369 views

How to select a MAX value from column in Query Builder in Kohana framework?

I need to INSERT a data to table, but before a query I must to know the MAX value from column position, than to INSERT a data WHERE my SELECTED before position+1. Is it possible with query builder? ...
0
votes
1answer
945 views

Enable PECL HTTP in Kohana PHP framework

I'm totally new to kohana framework and I downloaded and installed kohana 3.2.2 version which is latest stable version. But when i run the install.php it pass all the requirements but not this ...
-1
votes
3answers
577 views

Example of using css,Javascript and Images in Kohana 3.2.2

Can someone help with an example of how to use external files(css,Javascript and images) in Kohana 3.2.2

1 2 3