CakePHP is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. It uses commonly known design patterns like MVC and ORM within the convention over configuration paradigm.

learn more… | top users | synonyms (1)

0
votes
1answer
25 views

find 'all' using INNER JOIN rather LEFT JOIN

I'm coding an app to sell cars, so i have a model called Anuncio(part that show the car, its in portuguese i dont know translate it) that has one Carmodel and Carmodel has one CarMake. On anuncio ...
0
votes
0answers
13 views

knockout.js validation plugin not working with CakePHP

I'm trying to use the knockout.js validation plugin with CakePHP but I can't seem to get it working. I'm including the validation plugin at the end of the corresponding view. The network tab in ...
0
votes
1answer
12 views

CakePHP REST Put/Post not accepting data

I am attempting to write a RESTful service using CakePHP 2.3.5. So far I've successfully created the GET functions for the resource I'm working with. I can send a GET request to example.com/areas.json ...
-2
votes
1answer
19 views

The best way to call a js from cakephp action

Suppose that a have one action to add an user very simple: $this->Model->save($this->request->data); And, after save the user, I want to make a notification with the Noty.js What's the ...
0
votes
0answers
17 views

Double log statements

I have weird issue, it might be something silly but I can't find where the problem is. I develop an application on cakephp 2.x and when I log data from the controller it appears twice in the log. ...
0
votes
1answer
11 views

Table not found, same using useTable

I have a model, called "Cliente" and this model have a association with another table called ClienteRelFot. I declared that ClienteRelFot has a useTable = 'rel_fot_ec', but the cake are looking for ...
-1
votes
1answer
26 views

Sturcture for Admin Panel and User Panel

I want to make my project by using Cakephp. Can I make Structure like that with setting of route: / (This is for User Panel) /admin (This is for Admin Panel) Controller: ...
0
votes
2answers
18 views

cakephp call set array in controler

I was wondering is it possible to call back an array/string in my controller that I set with $this->set('gainedTotal', $this->Member->Point->gainedTotal()); I need to use the value ...
0
votes
1answer
16 views

Controller & Model issue in CakePHP 2.3.5

i'm having an issue with this (the database design is in spanish): I have a controller ProfesionalController.php and a model Called ProfesionalModel.php, in the ProfesionalModel im using public ...
0
votes
2answers
17 views

cakephp routing with language sub directory

I am generating a link (this is for when the language is set as "fre"): $html->link('About', array('controller' => 'pages', 'action' => 'about', 'language'=> 'fre')) ; I also have a sub ...
0
votes
1answer
28 views

Wrong controller is called from Form. Cakephp

Have a form. $this->Form->create(array('controller'=>'bookings','action'=>'book')); But for some reason, instead of BookingsController it is searching RoomsController for the specified action. ...
1
vote
1answer
17 views

How to figure out memory utilisation of any PHP application?

Is there any efficient way, by which i can check in & outs of the memory usage by the application code or functions. Right now in my application, it is eating up the RAM of the machine & not ...
0
votes
0answers
20 views

Direct access to URL redirects differently to using in anchor

I've got a very odd situation here and I'm hoping SO's collective knowledge can help. I'm working on a legacy CakePHP 1.3 application, using the native Auth component to secure the majority of the ...
0
votes
3answers
32 views

Split directories in the MVC cakephp

I got a simple question and can't find the answer to it on the web. Im using the framework CakePHP. My question is: Is it possible to split my model, controller and view directories. Like this; ...
0
votes
1answer
15 views

Numbered fieldsets appearing in checkboxes cakephp

I am using cakephp 2.2.0, in that I am displaying checkboxes for multiple selection, everything is working fine except, It shows numbers in fieldsets with every checkbox. I want to remove that, What ...
0
votes
1answer
22 views

Hide / show Pagination in cakephp

Hide/show Pagination i have requirement to develop pagination like facebook when you down page 'show more' button which clicked then other record display on same page.also used jquery+ajax. Thanks ...
-1
votes
2answers
18 views

Set a folder as access denied when some one try to locate it through browser

In cakephp website, how can I set a folder as access denied when some one try to locate it through browser. Example: by default someone try to type www.example.com/img will list all the images and ...
-12
votes
0answers
62 views

learning php, help please [closed]

Someone has offered to help me learn php, they have formed a list of topics they think i need to know but has asked me to add my own topics, what would you add to the following list. I am comfortable ...
0
votes
0answers
9 views

using Git repository on Virtualmin

I have a VPS with CentOS 6.3 and Virtualmin on it. I have installed Virtualmin git module according to this manual http://www.virtualmin.com/documentation/web/git I created a new repository for a ...
0
votes
1answer
16 views

prevent validation from showing on multiple forms cakephp

i have a strange problem, i have a page where in top right there is a login panel, and somewhere on the middile of the page there is a register form. Both login form and register form has fields ...
0
votes
0answers
24 views

How to use multiple submit buttons to different models on the same page in cakephp?

I have 2 forms on one page in my website. One form is in an element which is called in the default layout as it is supposed to be in all the pages of my website and has an action 'index' in the ...
1
vote
2answers
40 views

Using php variables in js files

I have a view file called edit.ctp and a js file called edit.js. On edit.ctp i'm calling edit.js like that: $this->Html->script('edit', array('inline' => false)); js files its being ...
1
vote
2answers
33 views

Find with Sum and Group By

My MODELS ARE 1 Project hasMany Records Records belogsTo Project Table project (id, pname) Table records(id, projects, tempo) I want to get a SUM of time spent per project. In My ...
0
votes
0answers
23 views

cakephp find() with order option applying to two models which resulted in virtual field name conflict

I want to turn the following query into the cakephp way using find(): SELECT User.id, PayerCompany.name, User.last_name, User.first_name FROM users AS User inner JOIN companies AS PayerCompany ON ...
0
votes
1answer
22 views

cakePHP WHERE IN CLAUSE : Array to String convertion

Hello I want to get all the data from a table that are in the range of those arrays below : //A data sent from AJAX to PHP $authors = $_POST['authors']; $articles= $_POST['articles']; The following ...
0
votes
1answer
17 views

How to use the pagination of the JQuery plugin “dataTables” but with the same style as cakephp's pagination?

We are using cakephp website. The only way I could have many data sets with a separate pagination for each dataset on one single page was by suing the great DataTables JQ plugin. BUT! I also want the ...
0
votes
0answers
19 views

AuthComponent doesnt redirect unauthorized users when in Firefox

this one is really strange. I have few controllers with number of actions, most of them not allowed for unauthorized users. Everything works fine in Chrome for example - however, when in Mozilla ...
0
votes
0answers
27 views

Modal window using jquery in cake php

I am new babies to cakephp.I need to create the modal window using jquery in cakephp. So can anybody sugggest me step by step process for that.I mean how to include the jquery library file needed for ...
0
votes
1answer
18 views

CakePHP Access a different table my view

I have two tables Contact and Quote, this is a one to many relationship (i.e. one contact can have many quotes). Foreign keys are all setup correctly. When I go to create a new quote I want to be ...
0
votes
2answers
22 views

cakephp variable available in index/view, but not in controller

I have 2 Models/Views/Controllers - Users and Jobs Through the Auth method, I have the following being set from within the AppController: $this->set('current_user', $this->Auth->user()); ...
0
votes
1answer
19 views

cakeDC search on concat fields

I am using the cakeDC search plugin for cakephp and I need to search by full name. I have stored the name in the database as separate first and last names. How would I concat the first and last name ...
0
votes
0answers
14 views

How can I access CakePHP log files on Heroku?

I've deployed a CakePHP application to Heroku. CakePHP writes its logs in APP_ROOT/app/tmp/logs/error.log and APP_ROOT/app/tmp/logs/debug.log by default but since there's no way to get a shell to a ...
1
vote
1answer
23 views

Same nextval sequence with PostgreSQL 8.3

Setup CakePHP 2.3.5 PostgreSQL 8.3 Apache 2.2 PHP 5.3.8 Windows 7 Ultimate x64 Problem When I execute this query 2 twices, return the same value? $sql = "select nextval('auth_num_seq') as ...
1
vote
1answer
32 views

Cake PHP v0.2.6 from 2006 - site questions

Today I was asked to work on a site using cake. This site appears to be using ake version 0.2.6 from 2006. This site was build by a college student. Its convoluted to me. I would like your pro ...
0
votes
2answers
20 views

Cakephp strange image src link

I have a backend and a frontend. In the frontend all is right. The image link is correct and the image is displayed. ...
1
vote
1answer
16 views

PHP_CodeSniffer to check for file extensions in a folder

I am using the CakePHP framework, and would like to have PHP_CodeSniffer warn against image files that developers might in a haste, paste into the app/webroot/css folder while copying in something, as ...
0
votes
1answer
17 views

CakePHP Retreive data, associate models, containable behavior

I can't seem to figure out how the containable behavior works, or how to retrieve the data from (and based) on associated models. I need to put the following MySQL query in the cakephp find('all') ...
0
votes
0answers
29 views

CakePHP - DatePicker and TimePicker doesnt work when I make a request ajax ('change')

i'm using CakePHP with a datepicker and a timepicker. In my CakePHP aplicattion i use $this->Js->get('#tes')->event('change', $this->Js->request to populate different dropdown lists ...
0
votes
1answer
37 views

cakephp combine find() queries

I am still new to Cakephp I have 3 find queries to the same model and I have tried to combine them to make one. Finding it hard with the cake way of accessing the data. Especial that they have ...
0
votes
1answer
17 views

cakephp email attachment size

I am using cakephp 2.3. I am sending email using the following code, which is working fine with 2MB or evern 3MB of file size. But when there is file with 7MB of size then it gives internal error and ...
0
votes
1answer
27 views

How to install phpbb in cakephp?

I have downloaded recent copy of phpbb3 and cakephp 2.3.5 and I have installed cakephp successfully. Now the thing is I want to install the phpbb3 and integrate it with my cakephp so that it can be ...
0
votes
1answer
22 views

Cakephp order by filed list

How can i define order by field list in cakephp paginate function like $this->paginate = array( 'conditions' => array('Page.provider_id' => ...
0
votes
1answer
23 views

Cake PHP Admin Dashboard Plugins

This question is an open ended one. I am hoping to get some opinions from the Cake PHP user community. I would like to orientate myself with the various options related to Cake PHP Dashboard plugins. ...
-3
votes
0answers
19 views

Cake Php email $this->email->send() working but no mails are coming to inbox [closed]

i am using $this->email->send() for sending of mails in cake php , i am receiving success Message , but no mails are coming to my inbox , Can anyone please solve , i am also using php mail() ...
0
votes
1answer
17 views

CakePHP and MongoDB: Undefined index length when saving data

I am on Cake 2.3.5 and using this: https://github.com/ichikaway/cakephp-mongodb DB Config public $mongo = array( 'datasource' => 'Mongodb.MongodbSource', 'database' => 'hello_forms', ...
-2
votes
0answers
19 views

Authentication not working for one page

I have developed a project in cakephp and used 'authentication'. Everything is working fine on localhost but when I uploaded the site admin part for one page is not showing anything its just blank ...
-1
votes
1answer
13 views

CakePHP: one-to-one using saveAll

If I have many one-to-one relationships and I have a form which allows the user to enter data for all of these, how do I ensure that only populated records are saved in the child tables. eg a User can ...
-1
votes
1answer
29 views

Cakephp master password

In my CakePHP project I am asked to set a master password for users. So admin can login with any username of CakePHP and that master password. In my mind I am getting this: Either add a condition ...
0
votes
0answers
32 views

cakephp - saving data of two tables in different databases

I have 2 tables in different databases. I joined the information in the same dropdownlist. But when i try to save data, the system does not know which table to get the selected id. it is just checking ...
0
votes
1answer
33 views

Cake PHP paginate multiple tables of one model

community, there is a problem with multiple tables which receive their entries of the same model "Post" on the same page. When clicking a paginator-number the app will change the page for both tables. ...

1 2 3 4 5 280