Tagged Questions

Kohana is an elegant HMVC PHP5 framework that provides a rich set of components for building web applications.

learn more… | top users | synonyms

63
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 ...
51
votes
5answers
6k 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 ...
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. ...
40
votes
15answers
18k 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 ...
35
votes
5answers
5k 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 ...
31
votes
13answers
17k 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, ...
17
votes
5answers
4k 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 ...
11
votes
1answer
441 views

Using Interfaces in Kohana 3.1.3

I'm trying to build a form wizard in Kohana and am learning a bit as I go. One of the things that I've learn might work best is utilizing a state pattern in my class structure to manage the different ...
11
votes
6answers
960 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? ...
10
votes
2answers
678 views

How to Move Already Written CodeIgniter Code to Kohana?

I've been using CodeIgniter for some time, and I liked it a lot. It looks like I need to move to Kohana though, because my other team member needs our code to fully use PHP5 features to their fullest ...
9
votes
5answers
354 views

PHP OOP; independent getter/setter methods, or combined?

While working on a project, I've been making some changes and browsing around existing framework API docs for insight. While perusing the Kohana docs, I noticed that the getters/setters of any given ...
9
votes
2answers
895 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, ...
9
votes
3answers
255 views

Introducing Rails into a PHP shop? Or build up what we already use?

Here's the setup at our shop: 1 VERY large PHP app (Kohana 2) with many dev's and lots of infrastructure Multiple (4-5 and growing) small PHP apps with 1-2 dev's working on these Issues: no ...
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 ...
8
votes
3answers
2k views

Best library for PHP Sessions

I have been using the CodeIgniter system for a while now - but it has it's short comings. I am grateful for what it taught me, but now I need a library for a new non-codeigniter project and so I am ...
7
votes
1answer
284 views

Regex as first line of defense against XSS

I had a regex as the first line of defense against XSS. public static function standard_text($str) { // pL matches letters // pN matches numbers // pZ matches whitespace // pPc ...
7
votes
3answers
2k views

Can someone explain Kohana 3's routing system?

In bootstrap.php, where you set routes, I'm having a hard time getting them to work. I read some documentation a while ago that I can't seem to find again that explains them. Here is one of my ...
7
votes
7answers
636 views

Proper Design of a MVC Project

I've been using Kohana for a couple months now, and am still relatively new to the MVC style of organizing your code/presentation/db-layer. Unfortunately, while there is plenty of documentation on how ...
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
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 ...
6
votes
5answers
3k 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.' ...
6
votes
5answers
2k views

CodeIgniter vs Kohana

I've never used either before. I'm not a pro php programmer, but want to be. I like "state of the art" tools and code. Is there any reason I shouldn't go for Kohana? I noticed there were not books ...
6
votes
7answers
612 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 ...
5
votes
1answer
141 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
3answers
610 views

REQUEST_URI is not overridden by using APACHE RewriteRule?

Problem : Am using Kohana/PHP to develop a hosted website for other companies. I get the customer to put in a CNAME entry in their DNS server to point to my domain. Eg. http://invites.somecompany.com ...
5
votes
2answers
951 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
2answers
226 views

What is the point of this constant in Kohana?

In Kohana's core class, there is a constant FILE_SECURITY. string(60) "<?php defined('SYSPATH') or die('No direct script access.');" Now obviously if you place this at the start of your files, ...
5
votes
3answers
652 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
5answers
1k views

Should I use Drupal or Kohana-type framework for a web “application”

The debate is that I need a PHP Framework/Drupal with the flexibility to add custom features to a potentially large application (web and with an api). However, with a framework, like Kohana, I see ...
5
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 ...
5
votes
3answers
1k views

Zend Framework with Kohana PHP 3

I've put the Zend library folder into classes folder of my app and renamed all files and folders to lowercase ( using Ant Renamer ). When I call Zend_Feed, instead of loading /classes/zend/feed.php, ...
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?
5
votes
3answers
859 views

Call a Kohana helper from cron (or any URL)

I need to call a Kohana helper (or any php MVC framework) from a Cron job. How can I do this? The server is Linux, so, I can only think of two possible solutions: 1- Open an URL from the cron job, ...
5
votes
2answers
2k views

kohana transaction with orm

is it possible (how) to use mysql transactions and rollbacks using kohana ORM ?
5
votes
2answers
204 views

How to deal with mutliple sites that access one 'brain'?

Generally, my development has only covered small to medium size companies and e commerce sites. My next project will encompass say 30 sites - however, they'll have about 95% in common with each ...
5
votes
2answers
952 views

Can I setup routes in Kohana to only match particular HTTP methods (GET/POST/etc)

I'm exploring a few PHP frameworks and the current front runner is Kohana. Having a Rails background I've become used to what the rails community calls "RESTful" routes. So a "GET /posts" displays ...
4
votes
2answers
386 views

PHP MVC Framework for Noob Transitioning from Static Sites

Sorry to beat a dead horse, but I've done a ton of reading/exploring and I'm still trying to decide which framework is right for me. I usually make static brochure-type websites, with a little bit of ...
4
votes
4answers
870 views

Kohana vs Symfony [closed]

First of all I don't want to start another flame war and I have read the other topics on this subject, however: What I would like is opinions from users who have experience with Kohana and/or ...
4
votes
2answers
247 views

Case sensitivity in URL issue on Linux + NGinx + Kohana + php

There is an issue/bug/feature/whatever on Linux + NGinx + Kohana : We have to make sure that we keep all our file names in lowercase only. We can't have anything like "setUserServer.php". It ...
4
votes
1answer
172 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
7answers
610 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
313 views

PHP kohana framework template rendering issue - blank page

I have created one function to fetch the user inbox message and display it using "user-profile-messages" templates. Also I have added functionality (in the same function) to deleting bulk inbox ...
4
votes
4answers
970 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
3answers
952 views

How Scalable is Codeigniter V Other PHP Frameworks?

How Scalable is Codeigniter V Other PHP Frameworks? I'm new to Codeigniter and love to know how scalable it is when compared to other PHP Frameworks? Thank you in advance ;-)
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
2answers
369 views

Decreasing queries in MySQL with many one-to-many relationships (ORM)

I'm currently designing an application using PHP and MySQL, built on the Kohana framework. I'm making use of the built in ORM and it has proved to be extremely useful. Everything works fine, but I'm ...
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
425 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, ...
4
votes
5answers
268 views

php function foo(array $arg = NULL) — why the array and NULL?

I've seen the following a few times lately: function foo(array $arg = NULL) { ... } My question being why make the default of $arg NULL when it will be just cast into an array? Why not do: ...

1 2 3 4 5 21