Questions about the 2.0.x branch of the CakePHP MVC framework. If your question applies to CakePHP in general, use the tag [cakephp].
0
votes
1answer
15 views
How Can implement FriendShip with CakePHP Model?
In the CakePHP Documentation they implement this as below !!
class Message extends AppModel {
public $belongsTo = array(
'Sender' => array(
'className' => 'User',
...
-4
votes
1answer
18 views
extract the keyvalue from array variable cakephp [closed]
I have an array that gives me the data like this
Array
(
[5079906a-6eb4] => Selling
)
Now I want to use this (5079906a-6eb4) value for my further processing.
My question is how to extract ...
-1
votes
0answers
19 views
CakePHP pagination not working properly
I am using cakephp 2.3 version. I need to wrap tag for current page number only and there should be no tag wrap for default numbers.
I tried following:
<?php echo ...
1
vote
2answers
30 views
How to maintain a variable in the url which is customized in cakephp?
What im trying to do here is maintain the variable 42 all throughout all pagination urls. I want my url to change from this
/exams/take/42/page:2
to this
/exams/take/42/items/2
Again,the number ...
0
votes
0answers
7 views
Override the i18n table on cakephp 2.3.5
How to override the query that linked with i18ns table on cakePHP 2.3.5
the default query:
SELECT Preference.id, Preference.preference, Preference.slug, Preference.default_value, Preference.active, ...
0
votes
1answer
18 views
CakePHP isAuthorized not working properley when passing arguments
I'm using isAuthorized to deny access to methods if the record id doesn't belong to the user. Profiles can have many documents and documents belong to one profile:
Controller/DocumentsController.php
...
0
votes
1answer
19 views
cakephp file field validation
i m trying to validate file field in cakephp in model with valid extension on create and on update try to validate file only if field is not empty.On Create the validation works fine, But on update it ...
-3
votes
0answers
20 views
Cakephp - How to calculate commission [closed]
iam new to cakephp .
I have a doubt.
I have 2 text box busname and commission(i will entering amount here) and ,
i have 4 column busname , bus amount , total amount, commission.
may i know , how to ...
0
votes
1answer
20 views
Issue plotting a time table with filled slots
I've got a boardroom booking system where a person books a boardroom and the booking is visible on the web for employees in the company. Currently, it plots correctly if there is one booking for the ...
0
votes
0answers
21 views
How to have url pagination with variables in cakephp? [duplicate]
I have read this similar question, however what I'm trying to do here is maintain the variable (42) all throughout the paginated urls.
I want my url to change from this
/exams/take/42/page:2
to ...
0
votes
1answer
37 views
CakePHP find returns results with missing fields
I need to get my User info and when I call
$this->User->find('first', array('conditions' => array('User.id' => $user_id)));
the result contains just some of the fields.
I've currently ...
0
votes
1answer
14 views
cakephp 2.X override table prefix dynamically on join action
I a cakephp setup to manage multiple web-sites in which they a number of common models, with the table prefix 'main_'. And there's common model Fbuser is using a table 'main_fb_users'
And now, I have ...
0
votes
2answers
44 views
Form validation with model but no table in cakePHP
I have a form that requires that all fields are filled in.
Upon submit, it should validate, before doing anything else. However, it submits even if there are some fields that were not filled in.
...
0
votes
1answer
22 views
How to render view to an element in the default layout from the controller?
I have an element in my default layout which I would like to see on all the pages in my website.This element has a a form with a submit button and goes to Quotes controller index action.On clicking ...
0
votes
1answer
33 views
CakePHP: view containing underscore in filename not working
Trying to use the Cakephp Naming Conventions in naming my view file.
Here is my Controller (/app/Controller/CallbacksController.php):
<?php
App::uses('AppController', 'Controller');
class ...
0
votes
1answer
31 views
How to paginate in cakephp by using find?
This is my choices table
id | question_id | content
1 1 bee
2 1 fly
3 1 dog
4 2 cat
5 2 bat
6 2 ...
0
votes
1answer
36 views
insert multiple rows in a saveall in cakephp
i'm newbie in Cake and wodering how to insert multiple rows in a single saveall function,
i got this table,
CREATE TABLE IF NOT EXISTS `dates` (
`date` varchar(10) COLLATE utf8_unicode_ci NOT NULL
)
...
0
votes
1answer
20 views
cakePHP Validations : one model for to forms in the same view
I have one view wich has 2 forms one for login and one for registration as following :
signup.ctp //my view
<div>
<?php
echo $this->Form->create("Tbluser");
...
1
vote
3answers
50 views
CakePHP 2.x Troubles Using minYear/maxYear Params
I use CakePHP V. 2.3.4 on Windows 7 32 Bits, I'm trying to use maxYear and minYear parameters, but I don't get the correct values, the code that I use is next:
echo $this->Form->input(
...
0
votes
1answer
15 views
How to include a class in CakePHP 2.x
This is a very basic question but I can't figure it out.
I have a class that could be named myClass.php, this is a standalone PHP script that contains a standard object definition like this:
...
0
votes
1answer
36 views
CakePHP: Why does file owner and group keep changing to root?
I am running an install of CakePHP on Ubuntu 12.04 LTS.
The way certain files are accessed I need permissions set a certain way within my install of Ubuntu. Nothing out of the ordinary.
The problem ...
2
votes
1answer
53 views
CakePHP - Manually link two tables together (adding a field to a HABTM link table)
I have a model for 'AddOns', which has a bunch of data in. I also have tags, which work in the usual manner, just like on SO, allowing a maximum of 5 tags from a comma-separated list.
The behaviour ...
0
votes
1answer
31 views
Using CakeEmail with ajax method
I'm trying to send a simple email with CakeEmail on an ajax method. I assume the ajax call is the problem, which is returning a 400 bad request if I have the email function within it. Otherwise it ...
0
votes
1answer
31 views
CakePHP: Global Redirect
In some parts of the application, a user can do some bad things by changing a URL. For example, let's say they'd change the request for an edit.
http://website.com/edit/4000
But they do not own post ...
0
votes
0answers
41 views
Auth violation while using a CakePHP plugin model inside a different plugin's controller
I am using a UsersController and trying to access a method on that model in another plugins controller:
if ($this->User->save($this->request->data)) {
...
-1
votes
4answers
41 views
PHP MVC Pattern [closed]
I'm building this app on CakePHP but this is more a pattern theory questions than something that applies specifically to CakePHP.
I'm pulling XML data from a 3rd party REST service and have to parse ...
-3
votes
0answers
8 views
Paypal sandbox integration with cakephp [closed]
I am a newbee in cakephp.I just wanted to know how to integrate paypal sandbox with cakephp
0
votes
2answers
43 views
cakephp 2 controller not loading “index” default action
I recently start having this weird problem, when trying to access this url:
http://localhost/xinglong/reservations
the server doesn't load the page, it just hangs and looks like it is trying to ...
1
vote
1answer
32 views
How to include assets (JS) into the layout from a controller - CakePHP
This is probably a duplicate, but I am struggling to find the same question and certainly the answer.
I'm a little unsure and confused on how assets are handled in Cake (2). I want to include some ...
0
votes
1answer
12 views
How can I show a value from a table/Model using the form helper?
I am trying to show a list of checkboxes from a table, with the value of the checkbox being the table ID and the text being the label. I want to do this using the form helper.
Example output:
...
0
votes
0answers
19 views
Proper way to unit test beforeFilter() and beforeRender() in AppController
I'm writing unit tests for a new site I'm working on that uses CakePHP 2.3. Everything's going smoothly, except for one thing. I want to test the beforeFilter() and beforeRender() functions. ...
2
votes
1answer
76 views
+50
CakePHP saveAssociated not saving HasMany Through Model Data
I'm trying to get my associated models in CakePHP 2.3 to save properly, but I'm having issues. I'm storing posts, and I want to know what links are in those posts. For each of those links, I'd like to ...
2
votes
1answer
64 views
+50
CakePHP SoapClient drops fields?
My app uses CakePHP (2.2.5) to get data from a SOAP server. I put logging into the SoapSource.php connector to see the XML returned and to display the array returned:
$result = ...
0
votes
1answer
39 views
How to disable cache on logout in CakePHP
I am using cakephp 2.3 version. I need to disable cache only when the user logs out. This is to prevent login in case the back button is pressed.
But for all other scenarios I don't want to disturb ...
-2
votes
2answers
56 views
Cakephp find inside a foreach
i have a model called Post and another one called Comment and on Comment i have a field called post_id... Post has many comments and Comment belongs to post.
I want list posts and the comments ...
0
votes
0answers
21 views
How can I display a group of 6 checkboxes as 2 sets horizontally aligned in cakephp?
I am new to cakephp and am just learning to use checkboxes in cakephp.My problem is that I would like to display 6 checkboxes as 2 sets horizontally aligned.I tried giving in two different div's with ...
1
vote
3answers
40 views
How to search for different models at the same time in CakePHP?
I'm looking for the easiest way to search in different models at the same time. I have 3 models: Game, Movie and Book and I want to be able to search for game, movie or book title in one query. Does ...
0
votes
1answer
26 views
Custom delete method doesn't call in custom datasource
I'm using a custom datasource to consume webservice.
Create, Read and Update work well but Delete doesn't works.
Here is my code calling the delete method in my controller.
public function ...
-2
votes
1answer
14 views
Inner join cakephp 2?
I'm having 2 tables named, users and userdetails. Basicly the query i want to run is:
SELECT * FROM users INNER JOIN userdetails ON users.id = userdetails.userid
I wonder how you could get this ...
0
votes
1answer
36 views
multiple mail recipients with CakePHP using bcc (the right insert method)
i use the php framework cakePHP to create a web app. There,i want the user to insert in a field as many email addresses as he desires and by hitting the Send button,a message would be emailed to all ...
0
votes
1answer
34 views
Sort the $results array from the afterFind callback by calculated field?
First posted question, I have a little bit of Cake experience, but I am far from being proficient. In my Model - Product, I use the afterFind callback to do some calculations.
Firstly, it checks if ...
1
vote
0answers
24 views
Cakephp different classes for requests
I have an application in Cakephp. In my front-end, it only responses for one request and I have used usual CakeRequest() class, and in my back-end, as far as using extjs, I have defined another ...
0
votes
4answers
38 views
How to send input data in the action of the form in php?
This is my form page.
<?php echo $this->Form->create('Searchs', array('type' => 'get', 'action' => 'view', 'class' => 'navbar-search'));?>
<input name="q" type="text" ...
0
votes
1answer
13 views
CakePHP Data Handling
Good Day. I am a noob CakePHP programmer here.
In my Controller, I have this.
$this->loadModel('User');
$this->User->recursive = 0;
$users = $this->User->find("all");
And when I did ...
-1
votes
0answers
19 views
How to load posts in list of posts
Hey I am newbie to web development.
I am developing a project in cakephp where I have a page where there is lists of posts which will contain title, description and other descriptive stuff.
I have a ...
0
votes
1answer
48 views
Managing CakePHP Plugins with Composer
Over time I've developed a number of CakePHP Plugins that I reuse across projects. What I'd like to do is start managing them like dependencies.
My initial thoughts are that I should make each plugin ...
0
votes
0answers
38 views
CakePHP: White Screeen of Death for a specific controller
I'm developing for first time in CakePHP and this screen is giving me a headache. I don't know how to debug it, so I'm asking for a little of help here. So far, my app works fine locally but when ...
0
votes
1answer
30 views
Creating Virtual Fields based on condtions
Good day. :) I'm new to cakePHP so please bear with me.
I have a Model Student. Student has an attribute status which is an integer. I want to create virtual fields based on a Student's status.
...
-1
votes
0answers
17 views
validation rule for drop down and attachment in cakephp 2.0
i need a validation script for drop down and attachment in cakephp 2.0. I am
trying to search such type of script.Please suggest me.
Thanks
Ajay
0
votes
2answers
23 views
Contained records only 1 level deep for afterFind?
I have a Schedule which hasMany Events. Each Event belongsTo a Room.
I set up my options for a Contain'd find::
$options = array(
'conditions' => array('Schedule.' . ...

