Due to the differences in the codebase between Kohana 2 and Kohana 3, as well as each minor version, please be specific in detailing which version of Kohana you are using when asking your question. Kohana is an elegant HMVC PHP5 framework that provides a rich set of components for building ...
54
votes
5answers
7k views
Optimizing Kohana-based Websites for Speed and Scalability
A site I built with Kohana was slammed with an enormous amount of traffic yesterday, causing me to take a step back and evaluate some of the design. I'm curious what are some standard techniques for ...
68
votes
16answers
20k 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 ...
39
votes
5answers
7k views
What is the HMVC pattern?
Reading Kohana's documentation, I found out that the main difference in 3.0 version is that it follows the HMVC pattern instead of MVC as version 2.x does. The page about this in Kohana's docs and the ...
5
votes
6answers
4k views
zend-framework versus Kohana versus Symfony
Which one of this frameworks would you recommend to someone who knows the basics of PHP?
What are the advantages and disadvantages?
42
votes
12answers
4k 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.
...
2
votes
2answers
373 views
help on building a basic php search engine
i looked for tutorials everywhere but just can't seem to get a good one...
a search page with pagination, column header sorting, and multiple filtering(filters are in checkboxes)
the problem:
had ...
33
votes
13answers
18k views
Searching for a Kohana Beginner's Tutorial for PHP [closed]
I am going to try to build a PHP website using a framework for the first time, and after some research here and there, I've decided to try to use Kohana
I downloaded the source from their website, ...
43
votes
15answers
19k views
Have You Switched from CodeIgniter to Kohana?
I usually just work with straight PHP, but now I want to try MVC, and see if a framework will really speed up development. After much waffling, analysis paralysis, and many dumb SO questions; I ...
22
votes
5answers
7k views
Kohana vs CodeIgniter, year 2011
I found this post but it dates back to 2008.
Is it still the case that Kohana is much better than CodeIgniter?
It seems like the main argument for Kohana was that it supported PHP5, but since nowadays ...
10
votes
2answers
1k 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
2k 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
740 views
Where should form validation occur in a MVC project?
I'm using Kohana, but I think this question is more general.
I have been doing form validation in the controller, and it has worked well so far. But lately, I've ran into a problem.
I have a ...
2
votes
2answers
967 views
preventing csrf in php
Requiring authentication in GET and
POST parameters, not only cookies;
Checking the HTTP Referer header;
saw this post on wikipedia and was wondering how I can apply them
ok...I am using the ...
6
votes
3answers
2k views
kohana transaction with orm
is it possible (how) to use mysql transactions and rollbacks using kohana ORM ?
2
votes
1answer
269 views
Kohana ORM and Validation, having problems
Trying to get Validation with ORM working for Kohana 3.2.
At the moment i have my Model:
<?php defined('SYSPATH') or die('No direct access allowed.');
class Model_Brand extends ORM {
...
2
votes
9answers
3k views
PHP Chart Library Solution
Good day.
I am a newbie to PHP framework, and I know a little about CI.
Recently, i plan to start my new practice project with Kohana.
I am looking for a good PHP Chart Solution.
Requirement:
Free ...
1
vote
4answers
675 views
Recursively check the parents of a child in a database
I'm working on a CMS system that receives urls like this:
/parent1/parent2/child/
Now it's easy to check only the child but in my opinion you should also check if the parents are correct and in ...
-1
votes
6answers
3k views
Kohana or CakePHP?
Being a web development over the years, I have good experiences on php, xhtml, css, javascript, ajax, etc. I also work with some old php libraries like Smarty, PEAR, etc. Recently I decided to use a ...
1
vote
2answers
2k views
Kohana 3 ORM: How to perform query with 2 many to many relationships
I have a products model with 2 many to many relationships defined.
protected $_has_many = array
(
'foodcats' => array('model' => 'foodcat', 'through' => 'products_foodcats'),
'foodgroups' ...
0
votes
2answers
259 views
When using Kohana DB, how does one avoid duplicate code when needing a count for pagination?
Using the Kohana query builder, is it possible to build my query piece by piece.
Then execute a count on said query.
Then execute the query itself.
All without having to write duplicate ...
5
votes
2answers
812 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 ...
2
votes
1answer
276 views
Partial Git deployment strategy?
I need to setup a Kohana dev environment that allows me to make full use of shared module / system classes across separate applications. Each application typically belonging to a different client. I ...
1
vote
3answers
123 views
How to test constructor that sets protected properties?
Well, I'm new to unit-testing (with phpUnit) and just started to test one class of mine.
Actual constructor looks like this:
/**
* Loads configuration.
*/
function __construct() {
$config =
...
1
vote
2answers
133 views
Workaround for validation and checking if the form has been actually posted
Here is my typical form
$errors = array();
if ($this->request->post('submit')) { // <----- I don't like this line
$post = ...
1
vote
1answer
161 views
Kohana ORM limit column size
How can I limit the size of column value returned by ORM.
I have a field having type long text.
I want ORM only to fetch starting 100 value,
how can I do that ?
0
votes
3answers
56 views
SQL JOIN query in MVC model of PHP using KOHANA 2.x
i wrote a query to retrieve values from database by joining two table, but it throws error.
following is the SQL query which i have written.
if ($selected_key_type != null ) {
$o = ...
0
votes
2answers
964 views
output image in a Kohana 3.2 view
I have the following script to output an image to the browser wich works fine.
$file_to_output=$_SERVER['DOCUMENT_ROOT'].'/static/imgs/uploads/20110318172207_16.jpg';
header('Content-Type: ...
0
votes
3answers
528 views
Hyphens in URLs with Kohana PHP Framework
This is an Apache .htaccess question.
In Kohana PHP Framework (I'm on 3.1), it doesn't appear that they support hyphens in URLs for the controller or action, which are the first 2 URL parameters ...
0
votes
2answers
393 views
Remove “/index/” from URIs in Kohana 3
As of right now all of my controllers are mapped like this:
http://example.com/index/index
http://example.com/index/services
http://example.com/index/contact
What I want to do is change the ...
0
votes
2answers
384 views
Sharing controllers, models and views between separate projects in CodeIgniter
Kohana, due to cascading file system and modules, allows to share code in common projects, that contains controllers, views and models directories. How can I do it in codeigniter? I want to create ...
-1
votes
1answer
155 views
Generate City in a textbox based from zip code entered in a textbox
I have two textboxes, Zip Code and City. When the user enters a Zip, the City should be automatically generated in the city textbox.
The Zip Code and City are stored in the a table in the Database. ...
6
votes
8answers
928 views
Learning Kohana
I'm a reasonable intelligent guy and have been involved in a lot of stuff, like html, php, java, c#, c, c++, assembly, and so on and so forth. All in all I think that there's very little I don't have ...
4
votes
1answer
2k views
Kohana 3.0.x ORM: Read additional columns in pivot tables
I'm using Kohana v3 and ORM, I have two models, Model_A and Model_B related by "has_many" through a pivot table, which has an additional column. I can save data in that column in the pivot table using ...
2
votes
1answer
2k views
i18n and Error messages in Kohana 3
I am developping an administration application with Kohana 3 and I'm obviously working with a lot of forms.
The application needs to be multilangual and I'm very confused about how to manage my ...
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
1answer
758 views
How to implement SimpleTest in Kohana
Here's the problem, I was assigned task from my bos to learn how to use Kohana and implement simple test in that. We would like to use it as our framework for future projects.
Being new to both ...
2
votes
3answers
3k views
Kohana 3 pagination
I'm really lost on how pagination works in kohana 3. Is there a good example of pagination in Kohana 3 anywhere?
14
votes
7answers
1k views
Why use a templating engine with a framework?
I recently discovered the PHP framework Kohana (which is awesome) and was reading a thread about using it in conjunction with a templating engine such as Smarty or Twig. My question is why bother? ...
7
votes
6answers
4k views
Kohana — Command Line
I'm trying to "faux-fork" a process (an email being sent via SMTP) in my web application, and the application is built on Kohana.
$command = 'test/email';
exec('php index.php '.$command.' ...
7
votes
2answers
4k views
In Kohana, can you trigger a 404 error?
I have a controller called articles, which creates the articles model which gets the relevant data from the database.
I want to, if the method I call returns false, to trigger a 404 error. This is ...
3
votes
1answer
1k 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
6answers
3k views
Using $this, self::, parent:: for code readability
I would like to know if it is acceptable/preferred to use self::method() and parent::method() when working in php classes.
You can use $this->method() but $this-> can also refer to a class variable, ...
3
votes
3answers
5k views
Are there any example projects that use Kohana with user registration and login authentification?
I want to make an web application (platform) that does pretty straightforward stuff: Users can register, get an account, and therefore login on to the platform. I've installed Kohana. It would be cool ...
1
vote
2answers
178 views
Translating Kohana-modules in a convenient way?
I have been looking for a convenient way of making and maintaining translations of my Kohana-modules. I have played around with POEdit and have extracted all __()'s from my modules. Really like the ...
1
vote
3answers
527 views
PHP 5 - Securing an admin area of a site
I'm currently writing a couple of MVC sites using Kohana as my framework. Each has a simple admin area where the admin can upload and edit content. I'm currently storing the admin's user model in a ...
0
votes
2answers
2k views
Need assistance with Kohana 3 and catch all route turning into a 404 error
Based on this documentation, I've implemented a catch all route which routes to an error page.
Here is the last route in my bootstrap.php
Route::set('default', '<path>', array('path' => ...
6
votes
3answers
8k 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
2answers
480 views
Forum/Board written atop one of the big PHP Frameworks
I was looking for a fresh forum software (threaded) or bulletin board (flat/partitioned). And I'm wondering if there's an implementation based on one of the big PHP frameworks (CodeIgniter, Kohana, ...
3
votes
2answers
392 views
Kohana: Undefined index when there is not one
I'm using Kohana 3.1 and I'm getting a very strange error. The Kohana POST handler seems to think that there's an undefined index when there is not one.
Inside of a controller class:
$post = ...
3
votes
1answer
554 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 ...