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. Use this tag for questions about CakePHP ...

learn more… | top users | synonyms

0
votes
0answers
7 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
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 ...
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
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
19 views

cakephp 2.3 login to different table with custom Auth components

I've trying to login a user to 2 differents tables tmp_users, active_users, inside UsersController. I've created two custom Auth components one for each. App::uses('FormAuthenticate', ...
0
votes
1answer
13 views

Cakephp response object routing?

I am using Cake 2.3 I have an app that allows users to add products and upload files associated with that product. I have encountered a problem with using response objects, as seen here: ...
0
votes
0answers
9 views

how to update the url using ajax pagination in cakephp 2?

Good morning, I created a pagination via ajax using cakephp2.3, it is working properly. The problem is that the page number is not being updated in the url. He is getting this way: / ...
0
votes
1answer
22 views

Column not found, retreiving data associated model

I've got the following find() function $this->User->find('all',array( 'conditions' => array('User.id' => $this->Auth->user('id')), 'fields' => ...
0
votes
0answers
43 views

Form with multiple models associated with another model in CakePHP

Lets say I have three models: Ant, Bear, Coon. Now Coon belongs to Ant and Bear. Bear hasMany Coons, Ant hasMany Coons. I want to submit form where I create 1 Bear, 1 Ant, and just 1 Coon which ...
0
votes
1answer
31 views

Saving spatial data in CakePHP

I have a problem saving spatial data in CakePHP with saveAll(). I really dont want to write the query manually (Handling spatial data in CakePHP) because there are number of models being saved. Also ...
0
votes
0answers
10 views

CakePHP Acl controlled application failed ARO/ACO lookup - Permissions not registering

I am building an profile based application. I am attempting to use the simple acl controlled application tutorial found here: ...
0
votes
0answers
40 views

Data disappears from Xcache in CakePHP

I've tried to learn as much as I could before posting here so here is my little "reasearch" This is my one of my cache configs (this one was made to debug the issue) from /bootstrap.php: ...
0
votes
2answers
44 views

Cakephp 2.x Stuck with Auth component with diferent models

I'm coding a app for car selling, i'm stucked with auth component. I have 3 kind of access: admin: app owner dealers: the owners of car dealers user: people who whach car offers and make questions ...
0
votes
1answer
32 views

Cakephp 2.3 baking with mongodb datasource

I try to use "./cake bake" to configure my db (mongo) and my models. When I digit the command on my shell, my output is: Welcome to CakePHP v2.3.2 Console App : app Path: ...
0
votes
1answer
38 views

Baked views have vsprintf error

All views created by cake bake which call 'format' => __() return the following error: vsprintf(): Too few arguments [CORE/Cake/basics.php, line 565] I looked at basics.php, line 565. It is part of ...
1
vote
2answers
41 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
1answer
13 views

Allow action from plugin

Is it possible to allow an plugin action in appController.php I can't find and figure out how to do it. What I mean is, I know it is possible to use $this->allow('action') in the plugin's ...
0
votes
1answer
10 views

find('list') between model with i18ns return an empty array

I'm using cakePHP 2.3.5 with CakeDC User & I18n plugin. I create 2 tables, user_detail_group and user_detail_fields, which user_detail_fields belong to user_detail_group. Both tables relates to ...
1
vote
1answer
40 views

how best to use two databases in cakephp 2.3?

Good morning everyone, I have a question, I am using two databases in an application that I am creating in cakephp 2.3. A mysql database, which typically configured, and another database nosql ...
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
30 views

CakePHP Dropdown showing all table items and preselected record

I'm new to cakePHP, and looking for some guidance. I have a database already set up, and a previous php application I have build which I'm looking to re-build/engineer within cake. I'm looking at ...
0
votes
1answer
42 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 ...
1
vote
1answer
41 views

Find within date range

I'm trying to find all services for each customer in a monthly date range. Following this answered question CakePHP: Date Range I created this code in my summaries controller: public function ...
1
vote
3answers
40 views

How to get choices of each item in a table in cakephp?

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 ...
1
vote
1answer
42 views

CakePHP customize Router URL order

I'm using CakePHP to one of my project. When I was designing the URL, I know CakePHP does well when I use $this->Html->Link('Add Post', array('controller'=>'posts', 'action'=>'edit', ...
0
votes
1answer
25 views

CLI cron job sending get request to URL but 404 for everyone else

I would like to setup a cron job for CakePHP which sends GET request a URL in my Cake Application, (or runs a function in my controller). However, if an user visits this URL, they will just get a 404 ...
0
votes
2answers
72 views

How to use Auth in cakephp using mongodb

I have a mongo db structure for users with "username" and "password". I am trying to use the Auth in cakephp login but it seems like its not working for me. I tried removing the $this->data but still ...
0
votes
0answers
14 views

change userModel and scope inside action in cakephp 2.3

I'm trying to change the userModel and the scope inside an action in cakephp 2.3 I have 2 user tables. tmp_users and active_users; tmp_users's model is User and active_users' model is ActiveUser. I ...
0
votes
0answers
14 views

CakePHP navigate array in view

I want to display the result of a query in my view using CakePHP 2.3 hasMany relationship I have this result array: array( (int) 0 => array( 'Article' => array( 'id' ...
0
votes
2answers
72 views

Cannot save associated data with hasMany through (Join Model)

Hi, I am new to cakephp and doing a project on cakephp 2.3.4. I have to associate product metal class through has many through association . But it doesn't seem to be working. Model code class Metal ...
1
vote
3answers
54 views

MissingControllerException directory in /app/webroot/file/

I get these messages in my error.log: Request URL: /files/thumbs1/1354046882.jpg Stack Trace: #0 /path/to/web/app/webroot/index.php(92): Dispatcher->dispatch(Object(CakeRequest), ...
0
votes
1answer
28 views

CakePHP Custom Validation Method Not Called With allowEmpty

I have a model that has a first name, last name, and organization/company name field. The user must enter either a first name and a last name OR an organization name. The issue is that my custom ...
0
votes
1answer
32 views

Adding component in cakephp 2.3.4

How to add a component with check first if the component is exist. I used this on cakephp 2.2.3 public function __construct( $request = null, $response = null ) { parent::__construct( $request, ...
0
votes
1answer
44 views

Close header after outputing

header('Content-type: text/csv'); header('Content-Disposition: attachment; filename="file.csv"'); echo "blabla"; $Email = new CakeEmail(); ...
1
vote
1answer
20 views

CakePHP blackholes file uploads when post_max_size is exceeded

As stated in the corresponding PHP manual entry, PHP will clear out $_POST and $_FILES if an upload exceeds the post_max_size limit. I have a form like the following, and I'm using the Security ...
-1
votes
1answer
57 views

cakePHP after returning from a form all variables are lost [duplicate]

Using cakePHP v2.3.4. Revised question after debugging what goes on, I have the following problem any variable is lost after returning from a form [post]. I have tried to store some information in a ...
0
votes
1answer
76 views

CakePHP 2.3 & jQuery 1.8: Sending arbitrary data via ajax to Cakephp controller

For complicated reasons not worth getting into, I need to send an array of data to a Cakephp controller, via AJAX, and preferably (though not necessarily) by jQuery. I know how to do this just fine ...
1
vote
3answers
59 views

Model::query() doesn't return Model-name in results

When I execute some query with a $this->query, CakePHP return this: Model: <?php App::uses('AppModel', 'Model'); class Authorization extends AppModel { public $displayField = 'name'; ...
0
votes
0answers
75 views

Undefined class constant 'MYSQL_ATTR_INIT_COMMAND'

I want my cakephp support Unicode, I have tried to change my database config (cakephp-2.3.2/app/Config/database.php) public $default = array( 'datasource' => 'Database/Mysql', 'persistent' ...
0
votes
1answer
37 views

How could I create a sub-query in cakePHP?

How could I create a sub-query in cakePHP with find method? For example: SELECT *, (SELECT COUNT(*) FROM table2 WHERE table2.field1 = table1.id) AS count FROM table1 WHERE table1.field1 = 'value' ...
0
votes
2answers
41 views

Cake Php: Editing record also adds new records

i am trying to soft delete a record, but when ever i update the record i also get 6 new empty records. here is my edit code public function del($id = null){ $dt = ...
1
vote
1answer
61 views

Use Sanitize::clean without Database connection at CakePHP 2.3

I am working over Oracle DataBase and CakePHP 2.3. As CakePHP doesn't support Oracle (there are no drivers for it), I am using Oracle procedures or php OCI8 functions in my models. As a result of it, ...
0
votes
1answer
27 views

Cake low recursive and non working bindmodel()

I'm relatively new with Cake (2.3). In the cookbook and forum I can only find similar posts, but no one gives me a precise answer to the question. I just have a problem understanding and hope for your ...
-3
votes
0answers
30 views

Multiple record insert using Cakephp [closed]

I want to insert multiple records.For this i designed my view like this way <?php echo ...
0
votes
2answers
57 views

CakePHP - input select not taking select options from a variable

I am developing an application with CakePHP 2.3.2 and I am having some trouble with an input select on a form. I am creating an array, in my Controller, which contains a list of states. In my View I ...
0
votes
2answers
201 views

file upload in cakephp 2.3

I'm new in cakephp and i'm trying to create a simple file upload with cakephp 2.3 here is my controller public function add() { if ($this->request->is('post')) { ...
0
votes
2answers
64 views

Can't get session component inside AppController constructor

I need to get the roles of a user from the database. I want to do it once and before everything. So I call a function from AppController constructor, which uses the session component. The function is ...
0
votes
1answer
38 views

Paginate component fetches all data not paged data

I have a model and i want to paginate its data. all i do is, creating a model, something like this, class MyModel extends AppModel {} and include Paginator component in my controller and use it, ...
0
votes
1answer
73 views

How could I routing to the app/webroot folder? (CakePHP)

If I type this: "http://examplepage.com/gallery/examplecagegory/1-test-picture.jpg" to the browser. Go to webroot: "app/webroot/gallery/pictures/1.jpg" I tried: ...

1 2 3 4