1
vote
2answers
127 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) …
1
vote
4answers
45 views
Is using a Mail Model in MVC incorrect?
I have built a model in some of my MVC websites to assist with sending emails, generally I do something like this
$mail = new Mail_Model;
$mail->to('me@somewhere.com');
$mail-& …
0
votes
3answers
115 views
What’s the proper MVC way to do this…?
Quick question about general MVC design principle in PHP, using CodeIgniter or Kohana (I'm actually using Kohana).
I'm new to MVC and don't want to get this wrong... so I'm wonde …
0
votes
1answer
25 views
Kohana Auth module can’t login
For those familiar with the Auth module in Kohana, I can't login a user. I can create a user fine, but apparently the hashes aren't matching. I've used the provide MySql schema to …
0
votes
2answers
60 views
How do I display a dynamically resized image in Kohana without saving it?
I have an image path string stored in a database
It goes like: img/uploads/imagename.jpg
I have a controller:
$this->image = new Image($wines->image)
//this is assuming …
0
votes
4answers
174 views
How do you make a Kohana website portable?
I just finished coding an online portal with Kohana PHP.
It works fine on my PC, but when I tried to host it on another server, "BONK!",
it shows up without displaying the picture …
0
votes
3answers
72 views
Real Estate - Property Website - Using PHP - Any Suggestions?
Hello,
I had an enquiry from a potential customer who would like to build a Real Estate website. He was looking to provide access to Agencies who can list their properties and add …
1
vote
2answers
62 views
Kohana: Understanding and reproducing Salt & Hashed passwords using the Auth Module
I'm using the Auth Module in Kohana v 2.3.4.
In terms of authenticating users, there's a two step process. The entry point is the function login. It's first task is to retrieve t …
0
votes
1answer
21 views
Kohana Error… Attempt to assign property of non-object
So I'm trying to go through the Version 3 Guide of Kohana and keep getting an error on the hello world create view part.
ErrorException [ Warning ]: Attempt to assign property of …
5
votes
9answers
2k views
Searching for a Kohana Beginner’s Tutorial for PHP
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 fr …
1
vote
2answers
32 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 fr …
12
votes
9answers
2k views
Kohana or CodeIgniter?
I'm looking for a PHP framework. I did a research here and found CodeIgniter would be best for me. But then I discovered that there is Kohana based on CodeIgniter. And I'm annoyed, …
1
vote
9answers
165 views
Should a two-to-many data relationship be treated as many-to-many?
I have 2 database tables: Teams and Games.
For the purpose of this question, we are dealing with football (soccer) teams and games.
Each Game has exactly 2 teams, generally a hom …
1
vote
1answer
27 views
Kohana Models - Can I use subfolder to organize?
I'm using Kohana and I have several models in the Models folder of my application. Can I organize those models into subfolders and call them in a way that Kohana can find them?
0
votes
5answers
115 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 questio …
