1
vote
3answers
36 views
MVC Pattern in cakephp
Could someone explain me about MVC pattern? How does it help cakephp framework?
-1
votes
1answer
49 views
Advantages of CakePHP over other frameworks.
What makes cakephp to stand ahead of other frameworks. Is this really topping the chart in terms of PHP programming?
1
vote
1answer
31 views
multiple database relationship on field other than primary key in CakePHP
I have a project that necessarily spans several databases.
One database has tables:
CREATE TABLE device {
device_uid integer unsigned not null primary key auto_increment,
o …
0
votes
1answer
20 views
HABTM data not saving (cakephp).
Hello,
I have two models related HABTM (documents and people).
class Person extends AppModel {
var $name = 'Person';
var $hasAndBelongsToMany = array(
'Document' …
0
votes
1answer
14 views
Cakephp Session lost in Flash player
Just want to know if anyone have the same problem.
The website need to login to perform certain task. We use stock Auth component to do the job.
Everything is fine until it hits …
1
vote
2answers
24 views
Cakephp Save with a table where the primary key is not ‘id’
I have an existing web application that I am converting to use CakePHP.
The problem is that the primary keys for most of the tables are in this format "${table_name}_id" (story_id) …
1
vote
1answer
24 views
How do I handle json data sent as an HTTP Post to a cakephp app?
If I'm being sent an HTTP Post where the body of the http request is just a UTF8 encoded string, how do I access that data in my cakephp controller? It appears that $this->params o …
0
votes
3answers
71 views
Advice needed from PHP/Cake PHP expert
I'm very new to programming (besides SQL and databases), but I ultimately want to master Cake PHP for web development.
Now, given how new I am, I'm rather lost as to how I get s …
1
vote
2answers
77 views
Why does CakePHP use different plural/singular naming conventions?
Can somebody perhaps explain here why on earth CakePHP has a convention of using plural names for db tables and controllers and singular for models? Why not always use singular ter …
0
votes
1answer
37 views
CakePHP: Return the SQL for Model::find() rather than running it
Is there a way to get the SQL which would be run for a particular find() query, rather than actually running it?
For example:
echo $this->Users->find_sql('all');
// "SELECT …
0
votes
1answer
35 views
CakePHP same ‘view’ for multiple functions
I have a Cakephp project
the controller has several different methods.
function Index()
function IndexAuthor()
And I want to use the same 'view' (or template, Index.ctp) for b …
0
votes
5answers
83 views
array transformation in php
how would you turn this array:
Array
(
[0] => 234234234
[1] => 657567567
[2] => 234234234
[3] => 5674332
)
into this:
Array
(
[contacts] => A …
0
votes
2answers
108 views
Cakephp: How would I route all missing controller/action calls to a single, general error page?
I've got a cakephp app that I'm trying to get to serve up the Pages::404 function (and corresponding view) whenever Cake encounters any error (missing controller, action, etc).
Wh …
0
votes
1answer
35 views
How can I tell if I’m in beforeSave from an edit or a create? CakePHP
Hello,
I have a model where I need to do some processing before saving (or in certain cases with an edit) but not usually when simply editing. In fact, if I do the processing on …
1
vote
4answers
199 views
PHP Framework: Ebay Like Site
Hello all,
I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal.
What would be the best PHP framewor …
