HMVC PHP5 framework that provides a set of components for building web applications. Be sure to mention specific version when asking.
0
votes
1answer
25 views
Kohana authentication module not loging in users
I am trying to get the login to work in Kohana, but so far it fails to log the user in.
I have been successfully able to create new users, so I have all the tables set up.
My view for the login page ...
0
votes
1answer
22 views
Block access for public computers in Kohana 3.2
I am running CRM based on Kohana in small office. Information is very sensitive so I want users to login only from office and not from home or anywhere else. I could block access by IP but office uses ...
0
votes
0answers
39 views
Basic Kohana Routing
I'm new with Kohana and finding their documentation to be lacking (lots of incomplete writings, lots of broken links, etc.). I just want to create a route like so:
Route::set('test1', ...
0
votes
0answers
17 views
php kohana functional testing database environment
I've got an application developed in kohana 3.2. I want to write some functional tests that will affect database content. I would like to load the database from a dump file each time I run all ...
0
votes
1answer
37 views
Kohana Clean URL route (with multiple segments)
I use Kohana 3.3
help me, please, an example of route to the implementation of the Clean URL.
site.ru/param1/param2/param3/.../paramN/id
We have an unknown number of parameters, but the latter is ...
0
votes
1answer
26 views
Kohana 3.3 table structure
I have a simple crud application in Kohana 3.3, with a few different types of data or models. Let’s say those models are:
Users
Locations
Skills
I have a table for each of those models, but the ...
0
votes
1answer
35 views
Kohana - database config per environment
I want to set in my bootstrap the right config I will use functions of the environment.
I try to use
Database::instance('my_conf');
or
Kohana::$config->attach(new ...
0
votes
0answers
11 views
Kohana 2.x - removing SHOW COLUMNS statements
Using Kohana 2.3.x ORM, one of the most ran statement on the database is the SHOW COLUMNS. Trying to get rid of it, i added (as specified in the documentation) this statement in my ORM user model:
...
0
votes
0answers
40 views
IF Statement, Lower Access lets User Locks Records, Higher Access lets Admin Undo that Lock
I have a fieldset ( information portal ) with text and a checkbox. If the checkbox is ticked it will lock the record down & makes the fieldset disappear for users & admins (app.cat Role man).
...
0
votes
1answer
25 views
Search all TABLE columns in Kohana 3.2
I have a Contacts DB Table with several columns such as First Name, Last Name, Telephone. Mobile etc.
I also have a search field with text input and select input when I must specify Column name to ...
0
votes
0answers
37 views
Kohana 3.3 - Class Model not found
The problem isn't really generic as my title says...
I've worked on Kohana site on local, and just put it online on ovh server.
This site is under a subdomain.
My connexion to mysql seems to be ok.
...
0
votes
1answer
40 views
How to make this query with ORM::factory
I dont know how to use this "MAX" with ORM.
Use Kohana 3.2.
SELECT MAX( version_id ) AS latest FROM pages_versions WHERE page_id = 3
-1
votes
1answer
55 views
Force logout on Browser Close or Computer sleep on Kohana [closed]
I wonder if it possible to force logout users session when Browser closes or Computer went sleep or hibernated?
any ideas?
Thanks
0
votes
1answer
50 views
Kohana ORM change timezone on select
Is that possible to select from Database using different timezone ?
I got some record in my table that thier time colum is timestamp of GMT timezone.
And I want to get all the recrods from 30-05-2013 ...
0
votes
0answers
25 views
LEAP ORM - Auth Class not found
I`m trying do this:
print_r(Auth_Leap::instance()->login($login, $senha, $remember));
But I an erro all the time, I couldn`t find a solution for this, someone could help me?
"ErrorException [ ...
0
votes
2answers
56 views
I have no clue in programming… Help needed in Kohana
A developer worked on a website for us where we can upload images. Everytime I try I get this error message. But not with all images. Some images are uploaded but do not appear. Am I missing ...
0
votes
2answers
42 views
How to use Minion Task Migrations for Database Migrations
I am running Kohana 3.3 and wanting to add database migrations to my project.
I have added the following moulde https://github.com/kohana-minion/tasks-migrations but not sure how to get it working.
...
0
votes
1answer
48 views
Kohana 3.2 Validate More Than One Model
I've been searching Google, but I have not found any examples on how to validate more than one model with Kohana 3.2.
try
{
$one = ORM::factory('one');
...
-1
votes
0answers
33 views
Kohana on VirtualBox (Ubuntu Linux). Long time to load pages [closed]
Faced with the problem. Developed the project on the framework, using KOHANA Denwer.
It became necessary to move it to Linux. I installed VirtualBox and created a Ubuntu Linux machine on which the ...
0
votes
1answer
33 views
kohana measure database execution time
Is there any way in Kohana framework to measure (and display somehow) the analysis of database query execution? In symfony 1.x there was a debug toolbar (see image: ...
0
votes
2answers
44 views
Kohana 3.2 ORM questions
Let's summarize what i want to ask.
I have a category table and a news table.
So a category can have many news as well as sub categories. If i delete a category, the code need to find the category's ...
0
votes
1answer
37 views
kohana db first insert table 1 and second insert in table 2 with LAST_INSERT_ID() from table 1
INSERT INTO `table1`
SET `field1` = 'value1',
`field2` = 'value2',
`field3` = 'value3';
INSERT INTO `table2`
SET id = (SELECT LAST_INSERT_ID()),
`field` = 'value';
i'm trying to use ...
1
vote
1answer
71 views
Kohana 3.3 request->post() no data
I am having a problem with Kohana 3.3. I cannot get the $_POST values using $this->request->post() on my Controller. I dont know what I did wrong on my code. Hope you can help me out here. BTW, I was ...
1
vote
1answer
24 views
Kohana cache module on dynamic pages
I'm working on a website with user-specific homepage. Will Kohana regenerate cache everytime when different user opens homepage? Link to homepage is constant for every users, but content will be ...
0
votes
2answers
64 views
How to redirect to another action in Controller_Template?
I've this class that extends Controller_Template.
<?php defined('SYSPATH') or die('No direct script access.');
abstract class Controller_Common extends Controller_Template {
public ...
2
votes
1answer
49 views
Kohana 3.2 Upload Exception
I'm using Kohana 3.2.
I have a category form with two upload fields: one is image, and one is banner. In my controller i got:
try{
$model_category->save();
}catch(ORM_Validation_Exception ...
0
votes
0answers
33 views
Dynnamically added datepickers and maintaning state after post
I am adding datepickers in kohana view with jquery code like this:
$("#add_date").click(function() {
var pickerCounter = parseInt($("#pickerCounter").val()) + 1;
...
1
vote
3answers
102 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
56 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
42 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
85 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
30 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
45 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
43 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 ...
0
votes
1answer
35 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
65 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
50 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
104 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
38 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
35 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
27 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
36 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
31 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
44 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
52 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
93 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
55 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 ...
1
vote
0answers
80 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
27 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
40 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 ...




