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)

-1
votes
0answers
12 views

How can I create an administrator section for my CakePHP site?

I am new to CakePHP. I am developing a new small site in CakePHP. I have difficulties creating an administrator for my site. How can I create an administrator section for my site?
0
votes
1answer
6 views

CakePhp and Google Charts Plugin

Hello i'm using Google Charts Plugin to my CakePHP application. In my Controller i do: There are two functions that return two graphs. function statistics() { $this->timePerClient(); ...
-3
votes
0answers
36 views

Converting HTML to Excel [closed]

I have a code which converts a html page into excel file. The following code has been working well so far, but Im having a problem of converting the html page into excel file after I had changed the ...
0
votes
0answers
22 views

CakePHP - Ajax not working correctly

#Edit I use CakePHP 2.3.5 I would like to know what is the problem with my Ajax request and Controller behaviour. These are the issues i encounter: Ajax - POST request always fails (i always get ...
0
votes
0answers
8 views

Json does not popup as download file in cakephp 2.3

I am using cakephp 2.3 and want to generate list of users in json format. controller name: users method: list Earlier, I have done it in cake 1.3.x and when user tries access method via url in ...
0
votes
0answers
20 views

Moving cakePHP installation to a different host error

I moved cakephp installation to a different host and got this error(the code segment is the output I get including the php code, it is suggesting AppController would extend AppController): Missing ...
0
votes
0answers
8 views

CakeDC admin is accessible by all kinds of users/roles by default, make it secure

I've installed CakeDC Users plugin and I found out that role, is_admin don't function by default. If I login with regular username role=registered and is_admin=0, I can still go to /admin/users/add/. ...
0
votes
0answers
30 views

$request variable empty after a post

I'm facing this weird problem on CakePHP, when I try to login into the administration of my website locally (/users/login), I enter my username and password and works just fine but after I uploaded it ...
1
vote
2answers
48 views

Recursion for assigning jobs

This is a specific question, so I'll quickly explain the background first. I'm working on software that assigns employees to a specific "job" for the day. In order for them to work the job, they must ...
0
votes
0answers
18 views

How to set permission on plugin controller in cakephp 2.3

I am following http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple-acl-controlled-application.html tutorial for a simple ACL controlled cakephp application. ...
0
votes
0answers
22 views

Getting id from selectbox in cakephp

I have created a select box and it shows some values, that are coming from one table. for that i created a select box element in the view <?php echo ...
0
votes
1answer
46 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
1answer
31 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
16 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 ...
-3
votes
1answer
29 views

The best way to call a js from cakephp action [closed]

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
24 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
12 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
30 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
19 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
29 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
21 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
21 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
35 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
23 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
22 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 ...
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
26 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
41 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
34 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
23 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
19 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
29 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
21 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
17 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
39 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 ...

1 2 3 4 5 280