Tagged Questions

CakePHP is a rapid development MVC framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications. Full information, downloads and more are available at the official CakePHP site.

learn more… | top users | synonyms

9
votes
4answers
447 views

CakePHP Cookie/Session problems

I am having issues with my CakePHP application. This seems to be happenining only in IE, and only on certain computers. It is consistent on the computers where it is happening though. Issue one: User ...
7
votes
3answers
2k views

Migrating from Cake 1.3 to 2.0 and beyond - migrate existing, or only use for new?

I'm nearling completion of my first CakePHP-driven website and just saw they're already working on CakePHP 2.0 (not the stable release yet). My questions: Is it incredibly time consuming to move to ...
7
votes
3answers
2k views

Set Response Status Code

I have an API call for which I need to be able to run some checks and potentially return various status codes. I don't need custom views or anything, I just need to return the proper code. If the user ...
5
votes
1answer
153 views

What is the differences between bind model and contain cakephp?

What is the differences between bind model and contain cakephp? any one have idea please share with me.. I am new to cakephp
5
votes
2answers
549 views

CakePHP - query returns empty field if it has a special character in it

I have what I think to be a normal query-call in CakePHP - it works for all results, but when a field has a special character in it, the field will return empty. It doesn't break - and it still gives ...
5
votes
2answers
299 views

Cakephp testing login

I want to test login function if it works propperly and only lets valid and active users in. My user fixture contains: array( 'password' => '*emptyPasswordHash*', // empty password ...
5
votes
2answers
254 views

CakePHP and Drupal 6 need to talk to each other, but how?

I have a CakePHP app which needs to take data from Drupal (6). Specifically, there is one custom content type and one webform that need to be shared with CakePHP - so when a new node for that content ...
5
votes
2answers
3k views

Routing: 'admin' => true vs 'prefix' => 'admin in CakePHP

Hi I'm setting up admin routing in CakePHP. This is my current route: Router::connect('/admin/:controller/:action/*', array('admin' => true, 'prefix' => 'admin', 'controller' => 'pages', ...
5
votes
1answer
708 views

CakePHP Media Plugin version 1.3, UUID filenames

Is anybody else using David Persson's media plugin for CakePHP? I'm struggling with setting up some features of the latest version. I'd like to set it up to make a UUID-based filename for uploaded ...
5
votes
2answers
724 views

CakePHP 1.3 inflections?

Where do I put my inflections in CakePHP 1.3? I am new to Cake
4
votes
2answers
184 views

CakePHP find with MAX

Tables and Dummy Data CREATE TABLE IF NOT EXISTS `messages` ( `id` int(11) unsigned NOT NULL auto_increment, `user_id` int(11) unsigned NOT NULL, `node_id` int(11) unsigned NOT NULL, ...
4
votes
1answer
223 views

How to localise a CakePHP plugin?

I'm developing a CakePHP plugin which should support multiple languages. The procedure for i18n localisation is documented here, but plugins aren't explicitly covered. Is this structure below supposed ...
4
votes
5answers
513 views

CakePHP - problem with HABTM paginate query

Tables restaurants cuisines cuisines_restaurants Both restaurant and cuisine model are set up to HABTM each other. I'm trying to get a paginated list of restaurants where Cuisine.name = 'italian' ...
4
votes
2answers
148 views

Is it possible to page and sort two different models in the same view in CakePHP?

I want to do something very straight forward and simple. I want to have two different sets of paginated data on the same page. The two different sets depend on different models. For discussion's ...
4
votes
3answers
2k views

Submitting current timestamp in cakephp

What is the method to submit a current timestamp directly on an insert or an update. If I were running regular sql, I would use the function NOW() for the specific sql field on submission. How would I ...
4
votes
1answer
195 views

Save the Errors in Database instead of errors.log in cakePHP

I need to save the Errors in a database table instead of writing in into errors.log?? How can i achieve it??? thanks in advance
4
votes
2answers
4k views

Best practice to upload files in CakePHP

Can any one suggest me the best way to write code for uploading a file in CakePHP? I need to upload a file and save its name in table. If the record saving fails it should not upload the file. If ...
4
votes
3answers
362 views

How to limit data to users who own it without limiting admin users in CakePHP?

Currently I am writing an application where I have multiple users. They have data that should only be visible to them and not the other authenticated users in the system. I also have administrators ...
3
votes
2answers
750 views

Gmail automatic login script

I have the gmail login credintals. Is it possible to login automatically to Gmail if we pass the username and password through url or by CURL.
3
votes
1answer
190 views

CakePHP - restricting editing to your own “data”

At the moment I use Auth Component for users to login / logout - ACL is defined to sort between user groups (Guests, Users, Admins) - with obvious restrictions; Admin being able to access everything, ...
3
votes
1answer
117 views

How can best deal with this complicated ACL situation using CakePHP?

I'm making a small application to handle project related information and I'm having troubles with ACL. How do I best deal with the following situation? My app has the following tables: users: Keeps ...
3
votes
1answer
361 views

How can I access a GET request in CAKEPHP?

How can I access a GET request in CAKEPHP ? If I am passing a variable in the url http://samplesite.com/page?key1=value1&key2=value2 Should I use $_GET or $this->params to get the values in ...
3
votes
1answer
523 views

Integrating PHPUnit with CakePHP 1.3

I have been looking for a tutorial to help me integrate PHPUnit with CakePHP. Looking to use Selenium tests too so prefer PHPUnit. I have been trying to follow the tutorial on ...
3
votes
2answers
181 views

Cake PHP 1.2x vs. 1.3x

After a few years away I'm looking into Cake PHP for a client. From what I've seen in their docs and marketing material, it looks like they're maintaining two different branches (1.2x vs. 1.3x). ...
3
votes
1answer
43 views

Showing content on home page but not for all pages

i'm using cakephp 1.3 and I want to make my slide of pictures to be displayed only in my home page. i'm useing the following code: <?php if($page == 'home'){ ?> //The content of slider ...
3
votes
1answer
269 views

CakePHP Auth Allow JSON Extension

Essentially, what I would like to know is if you can use the Auth Component to allow certain extensions (JSON/HTML)? Basically, lets say we have one action, the action is index. In this action all we ...
3
votes
2answers
2k views

cakephp one form, multiple models, not displaying one model's validation messages

I have a registration form and I am creating a record in both User and Identity tables (a user hasMany identities) the form looks like this <?php echo $this->Form->create('User');?> ...
3
votes
2answers
451 views

Why PHPUnit executes code when generating coverage report?

Dear stackoverflowers, We are developing a web application based on cakephp. CakePHP turns out to be a bit hard to use in a TDD manner and therefore we have are trying to develop the least amount of ...
3
votes
1answer
219 views

CakePHP: plugins in production environment

In a production deployment, you wouldn't have your /app folder in the public webroot; it only takes one sloppy fingered mistake to turn private business assets such as PHP files into plaintext on the ...
3
votes
3answers
163 views

CakePHP: Make datafield admin-editable only

In my data model, I've got a field that should be admin-editable only. Normal users can edit records in the model and view this specific field, but they should not be able to edit it. Is there a ...
3
votes
1answer
204 views

Can I use dynamically created form fields with the Security Component in CakePHP 1.3?

Using CakePHP 1.3, I have a (working) form that has dynamically created form fields (via Javascript). Everything works great, multiple models are saved via saveAll(), and it's just beautiful. But, I ...
3
votes
2answers
570 views

Where is the appropriate place to define inflector rules in CakePHP 1.3?

In CakePHP 1.2, custom inflector rules could be defined in a file app/config/inflections.php. This file was removed in CakePHP 1.3. Instead, the documentation prescribes using the Inflector::rules ...
2
votes
2answers
23 views

Can I Recreate The Following MySQL Query In CakePHP?

I'm trying to achieve this query in CakePHP (1.3, if that's relevant): select * from releases r join formats f on r.id = f.release_id where r.default_upc = f.bar_code I was hoping I could do ...
2
votes
1answer
86 views

How to override default CSS in cakePHP 1.3?

I'm running into a bit of a problem with my search plugin CSS. It doesn't apply some of the CSS rules I placed on /plugin/searchable/webroot/css/searchable_style. I think it is being overridden by the ...
2
votes
2answers
51 views

CakePHP: add new row for table as needed

I need to create a receipt thing. User is able to create new product which is consist of various number of ingredients. I'm using a table to layout the inputs, and on each row there is a select list ...
2
votes
2answers
87 views

Customize logging - CakePHP (1.3)

I would like to extend the cakephp logging facility. Using $this->log($msg, $level) you can log a $msg with $level to tmp/logs/$level.log. How I would like to use logging is: Separate ...
2
votes
2answers
62 views

CakePHP and SVN

I am trying to collaborate with my team on SVN. I would like to know which is the best way to configure SVN ignores on Cakephp Package. I have been getting a lot of conflicts when i have tried working ...
2
votes
2answers
165 views

CakePHP Subquery from SQL

CREATE TABLE IF NOT EXISTS `messages` ( `id` int(11) unsigned NOT NULL auto_increment, `user_id` int(11) unsigned NOT NULL, `node_id` int(11) unsigned NOT NULL, `reciever_id` int(11) unsigned ...
2
votes
5answers
74 views

Only update password if field is filled in

My view: <tr> <td>Username</td> <td><?php echo $this->Form->input('User.username', array('label' => '')); ?></td> </tr> <tr> ...
2
votes
6answers
115 views

CakePHP Containable: Loading too much relations?

I'm a huge fan of cakephp's containable element, because I always thought, that it would handle loading of additional models appropriate. But in the last days I dug deeper and found out, that there's ...
2
votes
1answer
47 views

Cakephp 1.3 Save Multiple Model rows, some with an id and some without an id

Is it possible to update existing data and save new data at the same time without having to loop through the array? I would like the array with the id to update and the array without an id to create a ...
2
votes
2answers
94 views

Change validation rules on the fly

I'm working on a form that contains user data, specifically a phone number field. The phone number typically isn't required so the only validation rule in the model is the usphone rule. However, if ...
2
votes
4answers
313 views

How can I do member registration confirmation?

How can I register with CakePHP ? After registering , it will send email for confirmation. If I click the link for confirmation then the account will be confirmed. How can I do this? Is there any ...
2
votes
1answer
85 views

Retaining parent slugs in CakePHP

I'm experimenting with SEO friendly URL's in CakePHP as efficiently as I can, I've managed to use the current format, each example uses function view($slug) except for the first example which uses ...
2
votes
3answers
124 views

CakePHP - Custom Route Controller

Is there anyway for me to create dynamic custom routes? The goal is to allow users to specify any URL they want to route to any controllers/view/ structure. If user want to create something as ...
2
votes
5answers
294 views

New to MVC. CakePHP 1.3 or 2.0.0-RC2?

I want to start developing in an MVC framework, specifically CakePHP. I see they have released 2.0.0-RC2 and was wondering if it is a waste of time to start an app in 1.3 when 2.0 is right around the ...
2
votes
1answer
201 views

CakePHP - how to insert new line / line break in Html helper hyperlink

Using the CakePHP Html helper, how does one go about inserting a line break in the anchor text? <?php echo $this->Html->link("My Anchor Text \n with new line", '/mycontroller/myaction'); ...
2
votes
1answer
349 views

cakePHP Auth - with allow/deny, what isAuthorized is actualley needed for?

Check this: function beforeFilter() { $this->Auth->authorize = 'controller'; $this->Auth->allow('delete'); } function isAuthorized() { if ($this->Auth->user('role') != ...
2
votes
1answer
211 views

Server side validation using JQuery validator (Cakephp)

Hi i am currently doing a school project using cakePHP. I have the following form and assume that the form tag is created. <?php echo ...
2
votes
2answers
156 views

Code completion for CakePHP in IDE

Someone recommended I "use code completion" and I realized that while my IDE has code completion, it doesn't recognize the large majority of methods and variables inherited from CakePHP's framework, ...

1 2 3 4 5 27