HMVC PHP5 framework that provides a set of components for building web applications. Be sure to mention specific version when asking.

learn more… | top users | synonyms

1
vote
3answers
38 views

Passing variables between php pages

I'm new to the Kohana Framework. I have a problem - How can I pass the variable $title from Layout.php to Head.php? In controller: <?php defined('SYSPATH') or die('No direct script access.'); ...
2
votes
2answers
34 views

Dynamically declared fields in Kohana

I’ve been building an application with Kohana 3.3, and recently switched development from Coda 2 — a text editor — to PhpStorm 6 — an IDE. PhpStorm 6 has been very handy in pointing out potential ...
1
vote
1answer
30 views

Kohana 3 sessions between functions

I am trying to use session in controller between functions in Kohana 3: public function action_setsession() { $session = Session::instance(); $session->set('test1', 'testing1'); ...
-2
votes
1answer
56 views

How to automatically resize uploaded photo in PHP?

How to auto resize the image uploaded to this foder: 'assets/media/': <?php defined('SYSPATH') OR die('No direct access allowed.'); class Uploader_Controller extends Controller_Core { public ...
1
vote
1answer
19 views

Kohana ORM - Table's type

In Kohana ORM, do we need to set up the database table with type of InnoDb. I learn that MyISam is a little bit faster than InnoDb. For example, here is the Database schema for ORM driver, can we ...
2
votes
1answer
30 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
1answer
11 views

Kohana 3.3 : required field

I'm using Kohana 3.3. I use ORM for validation form, by determining some rules. I would like to make a radio button required. I have three options, and no one can be checked in advance. I've ...
-1
votes
0answers
17 views

RFC Compliant UUID v4 implementation to use with PHP [closed]

Edit: PECL UUID extension -> Based on libuuid, same one used in e2fsprogs http://pecl.php.net/package/uuid OSSP UUID PHP extension -> Looks independent implementation ...
0
votes
1answer
32 views

<string> and 'string' difference in Kohana [closed]

I'm new with Kohana and I've already watched one video tutorial. And just started to read book "Kohana 3.0, Beginner's Guide". In video tutorial tutor uses View::factory('template_name') but in ...
0
votes
2answers
44 views

Error : Undefined variable when passing parameter to method in Kohana Controller?

public function get_entity_keyNumber($entity) { $this->session = Session::instance(); (int)$lastNumber = 0; $user_data= array_keys($this->session->as_array()); ...
0
votes
2answers
32 views

Kohana auth model

I'm new to kohana 3.2 and i couldnt find any answer regrading the auth module. this is my code and forsome reason ever since i changed the user model to extend model_auth_user the validation isnt ...
0
votes
1answer
53 views

Kohana 3.2 Call to undefined method Database_MySQL_Result::offset()

That happens when I try to play around with DB::select instead of ORM. The query is returned as an object, but the error appears. Code: $bd_userdata -> offset($pagination -> offset) -> ...
0
votes
1answer
27 views

Kohana validation 'matches' rule

I am using Kohana 3.3 for a project where have a model class which extends the ORM. There is a corresponding table to this model in the MySQL database. In this table, there are a 3 columns which ...
1
vote
0answers
23 views

imagestring function in Kohana

i have a little problem with creating an image and writing a text on it in Kohana. My code works fine if i use a simple php, but i can't integrat it in Kohana framework controller and action. when i ...
0
votes
1answer
19 views

Kohana routing does not match optional param

I cant get a route with optional parameter to parse ID at the end. Here is my route: Route::set('default', '<action>(/<id>)', array( 'action' => '.*', 'id' => '\d+' ...
0
votes
1answer
21 views

Easy method of including a timestamp (mtime) style/js versioning?

In Kohana, is there a quick and easy way to use the HTML::style() helper to automatically include a UNIX timestamp mtime of a file after the CSS or JS file name in the case of a script? In CakePHP, I ...
0
votes
0answers
26 views

How to pass a custom order by statement to kohana 2.3

I'm working with kohana 2.3 I have a working ORM model that I need to pass a custom order by statement to. One of the fields will return a number between 1 and 5. This number corresponds to a ...
1
vote
2answers
28 views

Kohana routing: can't access route parameters

In Kohana 3.2 I'm using the default route for a simple controller/action/id setup: Route::set('default', '(<controller>(/<action>(/<id>)))') ->defaults(array( 'controller' ...
0
votes
1answer
43 views

After use 'index_file' => FALSE in bootstrap.php, i recive error “Object not found!” from my browser

I use kohana 3.3 and I have a problem! Before use 'index file' => FALSE all functions worked well. In url address I had /localhost/angel/index.php/au/login. After using 'index file' => FALSE in ...
0
votes
3answers
48 views

Kohana 3.3 ORM - how to find all ancestors in a tree (self-referencing table)

How to find all the ancestors (not only direct parent) of a record with the following model: class Model_Category extends ORM { protected $_belongs_to = array( 'parent' => array('model' ...
1
vote
1answer
36 views

Kohana `index.php` method chaining and minions?

In the Kohana index.php file, there's a clause I have two questions about: if (PHP_SAPI == 'cli') // Try and load minion { class_exists('Minion_Task') OR die('Please enable the Minion module for CLI ...
0
votes
0answers
51 views

Kohana 3.3 ORM - Database Views

Is there a way to use the orm factory to pull from a view instead of a table? I was hoping that the syntax would be equivalent to pulling from a table: $buyers = ORM::factory('vbuyer'); //where ...
0
votes
1answer
19 views

ORM relationships (possibly Kohana specific)

I have a couple of models, one is a notification and one is a severity. Notifications have a severity. My Notifications table in my database (simplified) is as follows id => int message => ...
-3
votes
1answer
34 views

What does the `.EXT` mean in kohana index file? [closed]

I'm a MVC n00b learning Kohana via online tutorials. I'm looking at a file called index.php. What is the .EXT for (what does it mean?) in the following line? // Bootstrap the application require ...
0
votes
0answers
29 views

Using Kohana helpers in Smarty templates

I have problem with Smarty in Kohana. I am trying to get this code working: Route::url('about',['id' => '1']) It basically find route to about action and should append parameter "1" to it. But ...
0
votes
1answer
24 views

How to configure 'cookie::$salt' in kohana

In this part of the Kohana documentation: (http://kohanaframework.org/3.1/guide/kohana/cookies) it says I can find Cookie::$salt = 'foobar'; In bootstrap.php. I don't see it there. Am I just ...
0
votes
1answer
89 views

Kohana_Exception [ 0 ]: A valid cookie salt is required. Please set Cookie::$salt

I'm working through this tutorial (http://kowsercse.com/2011/09/04/kohana-tutorial-beginners/) and have run into this error message: Kohana_Exception [ 0 ]: A valid cookie salt is required. Please ...
-4
votes
0answers
55 views

Kohana 3 oauth and facebook login [closed]

I have website developed on Kohana 3.0. I would like to integrate facebook in my website for users to login (PHP SDK 3). Can anyone provide good and detailed tutorial to achieve this ? Thanks in ...
0
votes
1answer
58 views

Kohana 3 ORM - group by case

I would like to achieve this query with the ORM query builder: SELECT * FROM `products` GROUP BY CASE `products`.`configurable` WHEN 'yes' THEN `products`.`id_configuration` ELSE `products`.`id` ...
0
votes
2answers
55 views

Kohana - Run code on every page load (every controller)

Where I have to put my code if I want load (run) this code everytime when site load (in every controller)? Thanks! Martin.
0
votes
3answers
57 views

Kohana 3.2 ORM Form Submit

I have multiple submit buttons, such as Preview and Submit. How do I code it to say if I click Preview do this or if I click Submit do that. I currently have the following set up: if ...
0
votes
3answers
39 views

PHP Kohana routing not work

I have bootstrap.php: Kohana::init(array( 'base_url' => '/wypoczynek/', 'index_file' => false, )); Route::set('default', '(<controller>(/<action>(/<id>)))') ...
0
votes
2answers
44 views

Kohana View Model Class Not Found

I am stumped, I must be missing something basic, any ideas would be much appreciated. I have setup a new Kohana project which works fine with Models and Controllers. For this example I have stripped ...
1
vote
2answers
67 views

Kohana 3.3: How to handle Redirects within Try…Catch blocks

New in KO 3.3 is the HTTP::redirect method, which works by throwing an HTTP_Exception_302, which bubbles up and gets handled by the system to do the actual redirect. My question is: how can I do a ...
0
votes
2answers
76 views

Kohana 3.3 RESTful API routing error

I am having problems setting up an RESTful API with Kohana 3.3. I have added the following module (branch 3.3/release/v2.0), https://github.com/michal-m/kohana-modules-restful, to my bootstrap. ...
0
votes
0answers
63 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
42 views

MangoDB: select where like

I'm just trying out the Kohana MongoDB ORM: MangoDB. I'm trying to figure out how to do a where like. $query['city'] = $this->request->query('location'); $results = Mango::factory('salon') ...
0
votes
1answer
58 views

Kohana helpers do not work

I am completely new to the world on PHP frameworks. I have been trying to make helpers work all morning but they refuse to do so. Do I need to somehow enable them? Or install them? When I do: ...
0
votes
1answer
39 views

Kohana: Ommit action from url

Is there any way I can default a route to use action_index and not have to specify it in the url? ie. Route::set('user_profile','(<controller>(/<action>(/<id>)))') ...
0
votes
2answers
61 views

Kohana 3.3 How to get a files into array?

For example I have a files in my views directory: views/admin/store/test1.php views/admin/store/test2.php views/admin/store/test3.php How to get them into array?
0
votes
1answer
46 views

Throw a custom 401 HTTP Exception in Kohana

When I throw a HTTP_Exception_401 in Kohana 3.3 I get the following error: Kohana_Exception [ 0 ]: A 'www-authenticate' header must be specified for a HTTP 401 Unauthorized Now the obvious problem ...
0
votes
1answer
36 views

Can I connect to MongoDB from a remote class by passing a reference to a Mongo connection?

I'm using Kohana's php framework (2.x) and I want to have a helper that lets me access Mongo through a function and return the results as an object. For this to actually query the database, do I have ...
0
votes
1answer
60 views

Kohana PHP and module hooks

We're running a fairly customised version of Kohana PHP, where we have a extensive amount of base modules running and used for each web page. I've been tasked in speeding up some of our applications ...
-1
votes
1answer
99 views

True HMVC/PAC in kohana PHP framework

I'm new to PHP and use of PHP frameworks. I chose Kohana PHP as my framework for a project I am working on (instead of alloy, also because it's the least complicated). Is there a way to implement MVC ...
0
votes
1answer
62 views

Getting products with desired attributes

I have a category with products and a set of attributes. Those attributes are "Shape" and "Diameter". When I open a category without applying filters I get products with following query: "SELECT * ...
0
votes
1answer
43 views

Kohana URL (segmented)

On Kohana 2.3.4 I use the query string for parameters and use the input class to get the values. localhost/home?id=1234 Now that I migrated to Kohana 3.3.0, I am having a lot of trouble with how ...
2
votes
1answer
170 views

How to configure a Jenkins job to run a unit test

After created a job for my Kohana-based project in Jenkins, I cannot figure out how to config the job in order to run unit tests. Basically I used the template from http://jenkins-php.org/, but Kohana ...
0
votes
1answer
38 views

syncdb-like tool for Kohana

I've used Django(python) previously and now I'm learning Kohana (PHP). It seems to be good, but I wonder if there is something like "django-admin.py syncdb" in Kohana, or at least, a tool that makes ...
0
votes
2answers
131 views

KCFinder dont show correctly

I'm searching all over for solution for my problem and cant find anything that work. The problem: I work with KOHANA framework and try to integrate KCFinder with my CKEditor. At first it didnt work ...
0
votes
1answer
52 views

cron kohana 3.3 wrong parametr in cli

I am getting this error Parameter Errors: uri - uri is not a valid option for this task! but my command looks valid: php /var/www/public_html/index.php --uri=controller/action i ...

1 2 3 4 5 33