Kohana 3 is a HMVC (Hierarchical Model-View-Controller) PHP framework that places security, scalability and rapid development at its forefront.
0
votes
2answers
12 views
Change the style of Kohaha forms
How do you add styling to Kohana 3 forms.
<?= Form::input('new_tag', '', 'style="height:1000px;"');?>
This doesn't seem to work. It complains that it needs the third parameter as an array. ...
0
votes
1answer
31 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
27 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
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
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 ...
0
votes
2answers
65 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 ...
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
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+'
...
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
0answers
34 views
kohana 3 orm relevance sorting
I realized, only good way to solve relevance solving is to do it like this.... lets say we have:
table : "user" with columns: (userid, name, birth, number, securityid)
I am searching for people ...
0
votes
1answer
84 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
79 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
83 views
Kohana ORM update column on save
I'm fairly new to ORM, but what I am trying to do is insert a new comment in to the MySQL database and update users table.
So I have two tables, users and comments.
Now when i call save() method on ...
-1
votes
1answer
141 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
91 views
Language in base url for multilangual website on Kohana 3
Couldn't find example for my particular case.
I am creating a multilingual website on Kohana 3.3. I need to create URLs like:
http://site.com for English version
http://es.site.com for Spanish
...
1
vote
1answer
452 views
Kohana not displaying error handler
Kohana does not displaying its built-in error handler (such as this: http://kohanaframework.org/3.3/guide/kohana/errors#example).
When there is an error somewhere in my script it just says:
...
0
votes
2answers
129 views
kohana 3.3 Routing in sub-categories
I have this code with Route (using Kohana 3.3)
Route::set('admin', '<directory>(/<controller>(/<action>))', array('directory' => '(admin)'))
->defaults(array(
...
0
votes
1answer
164 views
Kohana 3.3 Auth module fails with remember flag and creating user token
I am attempting to log in users with:
$login = Auth::instance()->login($this->request->post('username'), $this->request->post('password'), TRUE);
However it fails when trying to set ...
0
votes
1answer
93 views
Kohana ORM & SQL Injection
What's the best way to prevent SQL Injection in Kohana(3.3) using native ORM?
Or it's "safe" by default..
0
votes
0answers
88 views
Configure Kohana Documentation on Localhost
I am using userguide module to browser the Kohana API browser localhost. But for some reason I can not browse the ORM (along with other modules) documentation on API browser.
This is what I see.
...
1
vote
1answer
109 views
Route debug in Kohana 3.3
I found code to debuging routes.
$route = Route::get('default');
echo Kohana_Debug::dump($route->matches('en/start/index'));
When i used code in my bootstrap an error is returned:
...
1
vote
1answer
216 views
Kohana: Auth ORM
I am a noob to Kohana and was trying to implement the login functionality using Auth ORM.
Following is the code that I have written:
/classes/controller/admin.php
<?php defined('SYSPATH') or ...
1
vote
1answer
77 views
View and variables
Im new in Kohana framework.
I want create controller and display variables in view.
My Controller Start.php:
<?php defined('SYSPATH') or die('No direct script access.');
class ...
0
votes
2answers
57 views
List of Kohana controllers
I'm looking for a way to pragmatically get a list of controllers in a Kohana application.
Something like:
public function build_site_map(){
$controllers = Kohana::get_controllers();
echo ...
0
votes
1answer
184 views
Kohana 3.3 & Kostache - Unable to display ORM Validation Errors in Form
I'm trying to create a user registration page for my site using Kohana 3.3 and Kostache as my template system.
I'm having a hard time getting to work the Form Validation to display validation errors ...
0
votes
0answers
97 views
Session data lost on redirect - Kohana 3.0
I have an app written in Kohana 3.0 using native sessions. In less than 1% of my users, the session data is lost on a redirect.
When this happens the user cannot log in with any browser on their ...
0
votes
1answer
183 views
Kohana 3.3 ORM relations
i'm starting with Kohana 3.3 ORM trying to apply it to an existing internal project.
The project is in use, so i can't change the schema's names. The current schema definition is the following:
...
0
votes
1answer
199 views
Kohana 3 auth username as number
I want to use numbers as username in Kohana Auth. For example, username 100001?
While adding new user Kohana returns me error: ORM_Validation_Exception [ 0 ]: Failed to validate array
Is is possible ...
0
votes
1answer
65 views
SSL for a website in Kohana
I have a website in Kohana 3.0.7 and I have purchased SSL certificate. I have marked the success page to which pay pal transaction details are returned with https. After the database is updated, I ...
0
votes
1answer
95 views
Kohana Routing (and Rerouting) Issue
I am using PHP 5.5 and Kohana 3.3
I am developing a website structure that always has the language preference of the user as the first "item" of a uri.
For example:
mydomain.com/en/products
...
0
votes
1answer
170 views
Kohana 3 - file size validation
I am using code below for file validation. Strange thing is that if I am trying to upload file which is above size limit I get not empty error instead of error related to size limit. Can anyone ...
0
votes
1answer
113 views
Kohana 3 validation rule error - Illegal offset type in isset or empty
I am trying to validate file, but I get following error: Illegal offset type in isset or empty . What I am doing wrong ?
$array = Validate::factory($_FILES);
...
0
votes
2answers
73 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
113 views
Slow execution time for Kohana static ORM method
I have a Kohana 3.3 application, running on WAMP (PHP 5.4.3) which uses a static function to get a list of recent articles. When I load the page, the Application Execution time (via Kohana Profiler) ...
0
votes
0answers
102 views
Fatal error in php imap_open function
The following error gets logged in php-fpm log at random times.
[25-Jan-2013 12:07:57 GMT] PHP Fatal error: Uncaught exception 'ErrorException' with message 'Unknown: Retrying PLAIN authentication ...
1
vote
3answers
32 views
Find items that don't have any entries in the link table with MySQL
I have an items table and a tags table that are linked through a user_tags table. I have a query that finds all items with specific tags:
self::factory('item')
->join('user_tags', ...
0
votes
4answers
271 views
Kohana: How do I set up a third party app
I have a small app that has its own classes and view files that I want to add to my kohana site. I will call this app my sub_app. So if I put sub_app in the kohana app root, I can access this app at ...
0
votes
2answers
116 views
Kohana3 framework: MVC: call function from View
The controller passes $results to the View.
The View has:
<?php foreach ($results as $result): ?>
<?php echo $result->time_start.' '.$result->time_finished;?>
<?php ...
0
votes
2answers
129 views
Get first paragraph of article from Wikipedia
I'm a newbie in Kohana3 and never worked with APIs. Browsing SO with my question didn't give me any results.
What is the proper way to get a first paragraph of the article for the word Hollywood from ...
0
votes
0answers
46 views
Kohana stripping less than from post request
I am trying to create a form so that a user can specify lower or higher values (using the less than or greater than symbols). It works using greater than value e.g. >200, however when I enter ...
0
votes
0answers
37 views
kohana 3 routes shindig url
I have installed module shindig on kohana 3 and the one thing is that if I go to
mainpage. com/blog/ where shindig is placed I get everywhere on main page get
mainpage .com/blog/othercontroller
or
...
1
vote
1answer
555 views
Kohana 3.3 uppercase/lowercase convension
I've just moved my project that was created on Kohana3.3 from Windows to Ubuntu (local server), and it stopped working. I believe the problem is upper-/lowercase issues (it says for Table.__ or Model_ ...
-1
votes
1answer
53 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' ...
2
votes
1answer
178 views
Unexpected characters on pages with Kohana 3.3
My kohana 3.3 site contains page, which I implemented like:
$block_center = 'here is html form';
$this->template->block_center = array($block_center);
Of course, I used constructions like ...
0
votes
1answer
196 views
How to request another action in minion
I'm trying to run a controller action from command line. The php code is written in Kohana 3.3. Kohana officially says I have to use minion task processor. How do I include my action in this module?
0
votes
1answer
261 views
Kohana 3.3: How do I create routes for an admin sub-directory?
I have set up two routes, one is the default and the other is one to enable the admin section which has controllers in a sub-directory of the controller directory. These are how they look like:
...
0
votes
1answer
107 views
How to do Kohana Validation of $_serialize_column inside ORM
The validation on Kohana ORM is done using rules
function rules()
{
return array(
'username' => array(
array('not_empty'),
array(array($this, 'availability')),
)
);
}
I'm ...
2
votes
1answer
57 views
Get a random row from the table using Kohana3 framework - fast
How to make this code worked in Kohana3 framework? I have a syntax problem with it.
ORM::factory('table1')
->where ( 'id', '=', ceil( DB::expr('rand()') * [SELECT max(id) from table1] ) )
...
1
vote
2answers
223 views
Writing SQL with COUNT expression in Kohana
I have 2 tables:
incident (id, incident_description)
comment (id, incident_id, comment_description)
I want to write such SQL expression:
SELECT incident.*, COUNT(comment.id) AS com
FROM incident
...
0
votes
1answer
55 views
kohana3.3 : do find_all() while {criteria for the 1st element} and echo the rest elements thereafter
I need this tricky thing to be done: 10 items to selected in a random manner, one item for true/false criteria and the rest nine items to echo :
$unique_items=array('bike', 'doll', 'carpet', ...


