Tagged Questions

0
votes
0answers
1 views

There is a way to use a controller action directly as an element in CakePHP?

I want to use the view for one controller action inside another view with CakePHP, and passing some variables. Anybody has been work on this situation or something similar?
0
votes
1answer
41 views

Conditions in associated models using Model->find() (CakePHP)

Hi, I am having some issues with CakePHP's find() method and conditions in 'deeper' model associations. There are some of these around but I could not find an answer to this so far …
1
vote
3answers
38 views

MVC Pattern in cakephp

Could someone explain me about MVC pattern? How does it help cakephp framework?
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' …
1
vote
1answer
33 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
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
votes
1answer
51 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
2answers
27 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 …
1
vote
4answers
57 views

Using DISTINCT in a CakePHP find function

Hello, I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list. …
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 …
1
vote
2answers
79 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
3answers
73 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 …
0
votes
1answer
39 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
2answers
41 views

Validation Errors not showing.

I am trying to validate a user when they register to my application. Nothing is getting set to validationErrors, which is strange can anyone help me out? Here is my MembersControl …

1 2 3 4 5 50 next
15 30 50 per page