Questions tagged [kohana-3.3]

Kohana is an open source, object oriented MVC web framework built using PHP5 by a team of volunteers that aims to be swift, secure, and small.

Anything can be extended using the unique filesystem design, little or no configuration is necessary, error handling helps locate the source of errors quickly, and debugging and profiling provide insight into the application.

To help secure your applications, tools for input validation, signed cookies, form and HTML generators are all included. The database layer provides protection against SQL injection. Of course, all official code is carefully written and reviewed for security.

156 questions
1
vote
1 answer

Kohana 3.3 ORM return actual data type, not string

I've got a MySQL table which contains a 'status' column of type tinyint(1). (Actually this is a boolean column, but as far as I know MySQL does not support this type and auto-converts it to tinyint(1).) If I perform an ORM::factory('Model', $id) on…
Apollo13
  • 119
  • 1
  • 1
  • 11
1
vote
2 answers

Kohana 3.3 hello world does not work

I keep getting the following error when i navigate to: http://localhost:81/framework/: Kohana_HTTP_Exception [ 404 ]: The requested URL framework was not found on this server. My Controller:
PriceCheaperton
  • 5,071
  • 17
  • 52
  • 94
1
vote
2 answers

How to query this with ORM?

I've using Kohana for a couple of weeks. One thing I noticed is that Kohana is missing eager loading (as far as I know). Let's say I have the following tables. Subjects id name Chapters id subject_id name Videos id chapter_id name When a user…
Moon
  • 22,195
  • 68
  • 188
  • 269
1
vote
3 answers

Kohana 3.3 Route - action not found redirected to default of the controller

currently with Kohana 3.3 default route if i have say controller user and action login and i call /user/login, everything is fine, the action is called and executed. but now if i change the url to /user/logins, then system does not find any action…
Kristo
  • 115
  • 1
  • 2
  • 10
1
vote
1 answer

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. It can't find my models ! But I can display my…
emilie zawadzki
  • 2,035
  • 1
  • 18
  • 25
1
vote
1 answer

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 able to use Twig on all my templates using Kohana…
John Troy
  • 13
  • 1
  • 3
1
vote
2 answers

Array key exists but can't be read from a cookie

This is a weird one, so bear with me. Asking you guys really is my last resort. To be clear, I'm using Kohana 3.3, although I'm not even sure that's related to the problem. I'm using a cookie to track read items on a website. The cookie contains a…
thordarson
  • 5,943
  • 2
  • 17
  • 36
1
vote
1 answer

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_ they don't exist). I need some explanation…
Haradzieniec
  • 9,086
  • 31
  • 117
  • 212
1
vote
1 answer

Kohana 3.3 - Profiler/Debug toolbar

Is there any Profiler/Debug toolbar compatible like this or this with Kohana 3.3?
crash01
  • 117
  • 1
  • 8
1
vote
2 answers

What are the main differences between Kohana 3.2 and Kohana 3.3

On my first view I haven't found no principled differences except new vendor folder. What are they?
s.webbandit
  • 16,332
  • 16
  • 58
  • 82
0
votes
0 answers

How to make when user click back button, will be appear document expired

can i realize, when user in controller a... and then the user going into controller b... When user click the back button, how to make Document expired.. but in both controller a and b ISN'T a form submit.. for information i using kohana framework…
BoniW
  • 3
  • 4
0
votes
1 answer

Kohana Route using wrong pattern for URL/subject

I'm trying to change the URL to another using the routing class in Kohana. Here's my link:
Daniel Bertoldi
  • 359
  • 4
  • 14
0
votes
2 answers

Kohana 3.3 after login with auth shows user not logged in

I have a small app written in kohana 3.3. For login purposes I use auth module to log in as user. Log in is simple and looks like that: $auth = Auth::instance()->login($_POST['login']['username'], $_POST['login']['password']); if(!$auth){ //…
Marek Kaliszuk
  • 577
  • 5
  • 21
0
votes
0 answers

Apache won't serve new files even after restarting

I've deployed some PHP files to the server, but I'm getting a 404 when trying to access them from the browser. Can someone explain to me when apache2 wouldn't serve new files? Everything works perfectly in my local test environment, so I know the…
0
votes
1 answer

PHP session lost after 2nd redirect but not first

I have a PHP project, which also has a Kohana PHP project in a subfolder on the site "/reports". I redirect to the reports project like so: redirectreports.php
Adam Copley
  • 1,495
  • 1
  • 13
  • 31
1 2
3
10 11