The kohana-3 tag has no wiki summary.
67
votes
14answers
19k views
Kohana or CodeIgniter?
I'm looking for a PHP framework. I've done some research, and found CodeIgniter, which is attractive. I then discovered that there is Kohana; that is based on CodeIgniter. I'm annoyed, because since ...
40
votes
12answers
3k views
Favourite Kohana Tips & Features?
Inspired from the other community wikis, I'm interested in hearing about the lesser known Kohana tips, tricks and features.
Please, include only one tip per answer.
Add Kohana versions if necessary.
...
23
votes
4answers
17k views
Kohana 3: Example of model with validation
I find examples and tutorials about models and about validation. And I places that say the validation (or most of it at least) should be in the model, which I agree with. But I can't any examples or ...
15
votes
5answers
3k views
FUEL, CodeIgniter or Kohana 3
I recently started developing an application with CodeIgniter, but shortly after I started, I began seeing more and more complaints about CI and its support for PHP4.
I began looking for ...
13
votes
5answers
3k views
PHP: What does __('Some text') do?
Reading about Kohana templates and saw something I've never seen before:
$this->template->title = __('Welcome To Acme Widgets');
What does __('Text') mean? What is it? What does it do?
9
votes
2answers
952 views
How is Kohana different from CodeIgniter?
I've been using CodeIgniter for a long time, however lately I've been feeling the need to move to a more advanced/more OOP framework. Kohana seems to be an often recommended option, my question is, ...
8
votes
6answers
1k views
How to integrate Wordpress into Kohana 3
I now need to make a Kohana 3 site have a Wordpress blog.
I've seen Kerkness' Kohana For Wordpress, but it seems to be the opposite of what I want.
Here are the options I have thought of
Style a ...
7
votes
6answers
243 views
Multiple models vs single model
I have a question about MVC. Particularly about models.
Suppose that I have a category table in my database. Now I would like to questions both a single category for details. Also I will need a ...
7
votes
5answers
1k views
Experience with CodeIgniter 2 vs Kohana?
Derek Allard recently announced that new projects should use CodeIgniter 2.0 whose code is well baked and it is fully PHP5.
What concerns me though is the process seems ad-hoc, there was no beta ...
6
votes
3answers
2k views
How to perform an external request in Kohana 3?
I've always used cURL for this sort of stuff, but this article got me thinking I could request another page easily using the Request object in Kohana 3.
$url = 'http://www.example.com';
...
6
votes
2answers
2k views
How to arrange business logic in a Kohana 3 project
I'm looking for advice, tutorials and links at how to set up a mid-sized web application with Kohana 3. I have implemented MVC patterns in the past but never worked against a "formalized" MVC ...
6
votes
3answers
1k views
What Can I Use the HMVC Architecture for?
the PHP framework I am using (Kohana) recently implemented the HMVC architecture. I have read that it's a layered mvc where requests are made on top of each other. It is a bit like ajax, just purely ...
5
votes
1answer
164 views
How to show username in the url route in Kohana PHP Framework?
I am working on Kohana PHP framework.
I want to show a 'username' instead of controller name in my URL.
For example,
username = james then how to show
http://localhost:3000/james
instead of
...
5
votes
2answers
1k views
Smarty and Kohana
Is there a standard "official" way of using Smarty with Kohana 3? I see there are some options that seem less than ideal and will probably break when either Smarty or Kohana's minor version number ...
5
votes
3answers
675 views
Kohana PHP - Multiple apps with shared model
I'm using Kohana 3 to create a website that has two applications, an admin application and the actual site frontend. I have separated my folders to have the two applications separated, so the ...
5
votes
3answers
6k views
Kohana 3 get current controller/action/arguments
In Kohana 2 you could easily get that information like this:
echo router::$controller;
echo router::$method;
echo router::$arguments[0-x];
Any idea how that works in Kohana 3?
Thanks in advance!
5
votes
3answers
3k views
Kohana3: Different .htaccess rewritebase and kohana base_url for dev and production environment
In my bootstrap.php I have the following:
if($_SERVER['SERVER_NAME'] == 'localhost')
Kohana::$environment = 'development';
else
Kohana::$environment = 'production';
...
...
4
votes
3answers
92 views
Securing Cookies and Sessions
The issue I'm having, which may not be solvable, is as follows:
I have a client that is a large organization of 1,500+ users at 7-8 different locations. The application is a PHP application build on ...
4
votes
3answers
345 views
how do I write log messages in kohana 3.2?
Ok I've tried searching all over but can't seem to get just a simple straight forward answer.
I want to just write log messages (info, error, etc.) to the kohana log file ...
4
votes
1answer
183 views
Displaying same page differently for users with different roles
I wanted some suggestions from someone with experience in php.
I am making a website in php which will have 4 kinds of users :
1. guest(unregistered),
2. registered,
3. registered with special ...
4
votes
2answers
578 views
How To Start Using Kostache?
I just asked a question ( Templates In Kohana 3.1 ) about templates and now I know that I should use Kostache. It's a module for the Mustache template language.
Anyway, I just enabled Kostache module ...
4
votes
4answers
1k views
Kohana framework - Ajax implementation best practices
I am developing an application in Kohana framework. I would like to know the best practices in implementing ajax in kohana. So far I am using different controller for ajax. I think the important ...
4
votes
5answers
266 views
I need an API. Where should I start?
I'm building a PHP application from scratch (using Kohana3 framework). I'm going to architect it so that I can use an API to access the data internally. At the same time, I want to eventually offer it ...
4
votes
1answer
750 views
Kohana ORM custom methods in models
I have these two models:
class Model_user extends ORM {
protected $_has_many = array('credits', array('model'=>'credit', 'foreign_key'=>'user'));
}
class Model_credit extends ORM {
...
4
votes
1answer
1k views
Kohana 3 ORM: advanced queries, efficiency
So we all know that the documentation for Kohana 3 is absolutely horrible. So how can I construct the following query, where I have a "Player" and "Dragon" model?
SELECT * FROM `dragons` JOIN ...
4
votes
4answers
1k views
“WHERE column IS NOT NULL” with Kohana v3 Query Builder
Is it possible with Kohana v3 Query Builder (Kohana v3 being possibly the most poorly documented #$@$%...) to use the IS NOT NULL operator?
The where($column, $op, $value) method requires all three ...
4
votes
2answers
2k views
Get a random row from a database query in Kohana 3
I'm using the ORM module in Kohana 3 and instead of displaying the first row of a database result set, what query should I use in my code when I want to get a random row from a certain table?
3
votes
1answer
207 views
Kohana 3.2. - Posting UTF-8 characters to external site
I'm trying to post UTF-8 characters i.e. German accents to an external site. However when it gets there it appears like this:
ö
instead of this:
ö
If I var_dump() with the appropriate UTF-8 ...
3
votes
1answer
95 views
Kohana 3 ORM compares 2 columns in where clause
I need to generate query like that :
SELECT * FROM `table1` WHERE `date1` < `date2`
I can't find how to compare 2 columns in kohana ORM. Here date2 is considered as text.
$foo = ...
3
votes
2answers
190 views
Kohana 3 pagination renders incorrectly
Edit
I've added a github repostitory of my /application directory.
https://github.com/ashleyconnor/Egotist
I'm working through "Kohana 3: Beginner's Guide" from Packt Publishing and have just ...
3
votes
1answer
81 views
source control structure for a kohana based project
i currently have several projects using kohana as a framework, and what i have at the moment
is a directory structure like this
project
- application
- system
- modules
the "project" dir is under ...
3
votes
2answers
673 views
Templates In Kohana 3.1
I used them before several months. Then I switched to Fuel. Then I switched back to Kohana.
Problem? I have forgot how to correctly use templates (with that I mean Controller_Template). There was ...
3
votes
4answers
398 views
Kohana 3.1 ORM: Empty model property value saved as 0 (zero) instead of NULL
I have two models, Product and Product_Methodology. In my product edit view I have a select form field to select one of many methodologies or none (empty first option). In my products table I have a ...
3
votes
2answers
832 views
Creating Helper in Kohana 3.1
I am following documentation http://docs.kohanaphp.com/general/helpers .
But these steps are not working in kohana 3.1 .
I can't find any documentation about helper in kohana 3.1 .
how I can create ...
3
votes
1answer
279 views
kohana 3 routing fails under certain circumstances
I am having a very annoying problem with Kohana 3 routes and/or something else that is causing my routes to fail.
The route in question is defined as:
Route::set('module', ...
3
votes
1answer
472 views
Kohana v3.1.0 ORM _ignored_columns — now that it's gone, what should I do instead?
It seems that in v3.1.0 of Kohana's ORM that the _ignored_columns property has been removed.
What the is the recommended technique to dealing with fields that aren't in the databases? The case I have ...
3
votes
1answer
1k views
Sorting by foreign table value with Kohana ORM
Is there any way to sort (or order by) in ORM by using a value from a foreign table?
Can you do something like the following:
ORM::factory("table")->order_by("table.foregin_table.column" , ...
3
votes
2answers
286 views
Kohana3 validation on fields with []
I have a form that contains checkboxes.
<input type="checkbox" name="question[5][13]" value="1" />
Now, I want to use the Kohana validation class, but it seems like it does not validate ...
3
votes
2answers
1k views
Kohana 3 auth module, getting users with 'staff' or 'manager' role
I'm learning the framework, and now building an application using it.
I need to get all users that have 'user' or 'staff' role, but I couldn't find about it on the documentation.
Help anyone? (I ...
3
votes
1answer
927 views
Kohana ORM relationships question
I have tables:
users {id, name}
projects {id, name}
roles {id, name}
projects_users {id, user_id, project_id, role_id}
I have models:
project { has many users through projects_users }
user { has ...
3
votes
2answers
831 views
Kohana param() don't work
I'm using Kohana 3. Does anyone knows why param('controller') result is NULL.
Routing:
Route::set('default', '(<controller>(/<action>(/<id>)))')
->defaults(array(
...
3
votes
1answer
2k views
Kohana newbie - sample CRUD application
I'm completely new to this framework and I'm trying to find some sample CRUD application to get started with Kohana 3.
There is a tutorial and information in the unofficial Kohana 3 Wiki ...
3
votes
1answer
148 views
Inheritance in kohana
I have recently started to use Kohana and I know inheritance is in infancy stages at the moment. The work around is using a $_has_one annotation on the child class model. In may case i have "page" as ...
3
votes
1answer
2k views
Get full site home URL in Kohana 3
I installed Kohana (in a "kohana" directory in my xampp public folder) and I'm trying to get the full base URL with the domain and protocol.
When I try:
url::base();
I only get /kohana/ back as a ...
3
votes
2answers
2k views
Kohana 3 Auto loading Models
I'm attempting to use a Model but I get a fatal error so I assume it doesn't autoload properly.
ErrorException [ Fatal Error ]: Class
'Properties_Model' not found
The offending controller ...
3
votes
4answers
630 views
KO3: How to deal with stylesheets and scriptfiles
I'm using Kohana 3 and it's template controller. My main site template controller currently looks something like this:
<?php defined('SYSPATH') or die('No direct script access.');
abstract class ...
3
votes
1answer
628 views
Kohana v3, automatically escape illegal characters?
Quick question, does Kohana (version 3) automatically escape data that is passed into ORM::factory..... (and everywhere else that has to do with the database)?
For example:
$thread = ...
2
votes
1answer
90 views
Assigning inappropriate action to form element
In Kohana documentation 3.2, there is an validation example under ORM directory. Let me
reiterate some code related to my question here:
<form action="<?= URL::site(**'/members'**); ?>" ...
2
votes
1answer
94 views
Kohana 3 ORM Table Naming
My question is about the conventions around a multi-worded MySQL table name e.g. "comments_flags," which is not a pivot table.
What is the correct database table name for "comments_flags"?
What ...
2
votes
1answer
583 views
Kohana 3.2 - Get referrer URI
I'm attempting to get the referrer URI in Kohana 3.2 using the following code:
$referrer = $this->request->referrer();
var_dump($referrer);
However the function returns NULL, I'm expecting it ...