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)

6
votes
0answers
339 views

cakephp ajax not working properly

I am new in cakephp and I want to implement Ajax on my home page. I have three modules in my page (client, developer and project). I want to add an ajax link. It's working perfectly only in the ...
3
votes
0answers
263 views

CakePHP: caching with APC still creates cache files, no performance benefit

My problem: I am making Apache Benchmark test to see if CakePHP APC engine works. However, if I setup Cake's caching configuration to use APC engine, the cache files with serialized cached data are ...
3
votes
0answers
148 views

Appfog Cakephp Session Object lost on refresh or redirect

I just migrated my app to appfog. I store the session info in the database. But the session is lost after page refresh or on redirect. I am using cakephp 2.2.3, the app works fine on local machine and ...
2
votes
0answers
77 views

Error while using salesforse API

I have to write cake console script to upload and retrieve data from Salesforce: http://wiki.developerforce.com/page/Force.com_Toolkit_for_PHP. my application is in cakephp. so I am using Force.com ...
2
votes
0answers
205 views

Uploading file with jshelper in CakePHP 2.2.1

I am trying to made upload files with jshelper. In my view: <?php echo $this->Form->create('Form', array( 'inputDefaults' => array( 'format' => array('before', 'error', ...
2
votes
0answers
444 views

cakephp 2.0 integration with paypal

Hello everyone, I am new to paypal but now the basics of cakephp, rightnow I am making a paypal integration with cakephp but unable to pass the value to the paypal. I'm showing you my ...
2
votes
0answers
101 views

The pagination `before` and `complete` options not working properly

I want to display a loading image when I click on a sorting link of a listing record. Before, I used the complete property of Paginator. This works well if the table has more than one record. My code ...
2
votes
0answers
175 views

CakePHP cakeshell errors “A Notice: Uninitialized string offset: 0 in”

I am trying to run my cake shell script but the output looks like the following: -bash-3.2$ ../cake/console/cake audit ../cake/console/cake: line 30:/root/site/app: is a directory Array ( [0] ...
2
votes
0answers
331 views

PHP database sessions creating multiple records for same session ID

So I have this weird problem where PHP sessions are saving to the database (MongoDB) multiple times, all with the same ID. The first record has the correct session data, while the second has the wrong ...
2
votes
0answers
328 views

CakePHP 2.0 not loading custom helpers when exceptions occur

I'm creating a CakePHP application but whenever an Exception is thrown (e.g. Security exceptions amongst others) any custom helpers are not loaded. This causes the page to error and the helper not ...
2
votes
0answers
178 views

Why isAuthorized() is never called when running Controller tests?

Im trying to test authorization in one of my controllers to make sure that only certains kind of user can access some actions. But the isAuthorized() method on AppController is never called when ...
2
votes
0answers
129 views

Eclipse won't recognise break points in included files

I've been battling away for a month now getting xdebug working in eclipse to debug PHP applications. I've eventually managed to get xdebug working, hoorah!!! Now what I've failed to get working for ...
2
votes
0answers
279 views

Permission not working with new created controller in croogo 1.3.2

I am using croogo1.3.2 in this i create a new controller catgories and there are only 5 action admin_index, admin_add, admin_edit, admin_delete and admin_process, now i go to admin panel permission ...
2
votes
0answers
318 views

Updating CakePHP web service with binary image data

I have a web service (which uses CakePHP) that I am posting string data to successfully with a Mac OS X app I'm working on. Initially, I was given some advice that I would need to create a Base 64 ...
2
votes
0answers
258 views

How to validate a POST of a non standard action in Cake PHP 1.3

Using CakePHP 1.3 I have a controller with a non standard action name - say: class WidgetsController extends AppController { function modifyColor($id = null) { // Some code that modifies the ...
2
votes
0answers
529 views

Keeping Twitter Streaming API with Phirehose and CakePHP alive

I have been running the Twitter Streaming API via the Phirehose lib, also using cakePHP as my framework. Running Phirehose works correctly, successfully connecting to the Streaming API and returning ...
1
vote
0answers
3 views

Mail from CakePhp to Mobile inbox

This is how this notification comes through as a text message: 1 of 6 FRM:noreply@test.com SUBJ:test-failed file MSG:¿¿¿¿¿¿                                                          ...
1
vote
0answers
23 views

Cakep Email component issue

My Code $result = $email->template('expiry_mail_template', 'default') ->emailFormat('html') ->to($tomailbuyer) ...
1
vote
0answers
28 views

Automatically convert from dashes to underscores using the Cake PHP router

I've been setting up some routes like this: Router::connect('/background/a-page', array('controller' => 'background', 'action' => 'a_page')); Router::connect('/background/another-page', ...
1
vote
0answers
26 views

Cakephp Security component blackholes delete post

I'm sending a delete post from an organisation page to a people controller like this: $this->Form->postLink(__('Delete'), array('controller'=> 'people', 'action' => ...
1
vote
0answers
37 views

Strange Session timeout in CakePHP

i developed a program using cakePHP. This program uses frameworks own authentification system. Now i got a notice from a user. He gets logged out after 20-30 mins of inactivity. The strange fact: no ...
1
vote
0answers
23 views

CakePHP: Is there a limit to the depth of associations when using find()?

I am struggling to get this to work: $this->Attempt->contain(array('AttemptedQuestion' => array('Question'=>array('Category') ))); //THIS DOESNT WORK $attempt_to_be_graded = ...
1
vote
0answers
37 views

Access Control for large and multi level CakePHP System

I'm building a CakePHP Student Management System to be used by large Universities(50.000+ users), and i'm wondering what is the best way for implementing the Access Control Stuff. The University has ...
1
vote
0answers
51 views

CakePHP app black holes routed form requests

I have a CakePHP 2.3 setup with the following route: Router::connect('/contact', array('controller' => 'old_layout', 'action' => 'contact')); In my AppController, I define public $components ...
1
vote
0answers
52 views

Email template not using themed version

I am using CakePHP 1.3 and the built in email features as described in the documentation. I have the html version of the template located in app/views/elements/email/html/reservation.ctp and its ...
1
vote
0answers
85 views

Multiple Routing Prefixes + loginAction Not Working

I have searched and though people have asked similar if not the exact same question on this site and elsewhere, several of those questions have gone unanswered and the rest simply don't apply to me ...
1
vote
0answers
94 views

CakePHP: Validation message not showing but $this->validationErrors works

I have a field gentel_id with the following validation rules in my model Contrat: public $validate = array( 'gentel_id' => array( 'numeric' => array( 'rule' => ...
1
vote
0answers
43 views

Cakephp With MongoDB: Unable to set a new variable in the beforeSave function

How can I set a variable to a collection before saving data to MongoDB i.e in beforeSave() method Lets Say i have controller class BooksController extends AppController { $model_name = 'Books'; ...
1
vote
0answers
149 views

Cakephp 2 render multiple elements from 1 controller function

I call a Js link to update a product status (active/inactive) via ajax echo $this->Js->link('[X]', array('action' => 'deactivate', $p['Product']['id']), ...
1
vote
0answers
77 views

cakePHP redirect method double parameter

I am calling a redirect method: $encryptedEmail = "123"; $this->redirect(array("controller" => "claim", "action" => "index", $encryptedEmail)); The action I a redirecting to has the ...
1
vote
0answers
117 views

Query works in PgAdmin but not in CakePHP

I have this query (PostgreSQL): https://gist.github.com/patrickmaciel/74c72cdf1984bdcde804 It's works in PgAdmin, EMS Client, Navicat, Postgres Command Line, whatever. I test this query in 2 versions ...
1
vote
0answers
190 views

How to add jquery UI spinner on jqgrid table column

Is it possible to add jquery UI spinner on jqgrid table coulumn ? I have jqgrid table with more than 7000+ records , I am want to apply spinner on one column.Does jqgrid allow to do this? Thanks in ...
1
vote
0answers
202 views

How to save the data from dialog box?

I have an accordion where the link of dialog box present, but when the dialog box open it didn't save the field and not redirecting, what's the issue? i tried a lot to figure out but didn't get any ...
1
vote
0answers
114 views

cakephp plugin routing

Hi I have web application in cakephp1.2 and in that I used plugin (e.g pluginname).now by default in cakephp only the index action route comes built in.i.e when I hits usl ...
1
vote
0answers
49 views

Update database schema with cakePHP in svn post-commit hook

I work with a Red Hat server where I want to have a database updated every times a commit is made on SVN. CakePHP has this nice tool that updates the database schema. This line runs fine from command ...
1
vote
0answers
50 views

Pear::Image_Barcode output in CakePHP Controller

I want to output a barcode generated with PEAR::Image_Barcode in a CakePHP Controller: public function gen_bc($bc_text = null) { $this->autoRender = false; ...
1
vote
0answers
89 views

Cakephp Fixtures automatic truncate table not working properly

I recently switched over from cakephp 2.2.5 to 2.3 and the auto-truncate table is no longer working in 2.3. What I did in 2.2.5 was just testing the framework using some small tables with no ...
1
vote
0answers
107 views

how do i use cakephp 2.2 jshelper to call other jshelper functions?

I have the following code: $this->Js->get('#get_meters_today')->event('click', $this->Js->request( array('action' => 'getMetersToday'), array('async' => true, ...
1
vote
0answers
91 views

Use of Sphinx index without model

I’m working on search engine which is developed on cakephp 1.3 and full text API sphinxsearch. The search displays the results of two type or records. 1) Classes and 2) appointments. We had two ...
1
vote
0answers
50 views

CakePHP testAction does not correctly uses the resource routes

currently I'm writing the controller tests for a part of my application (using CakePHP 2.3.0 Stable). I am having a strange problem with the URL for the testAction() method. The following works: ...
1
vote
0answers
84 views

getting the namespace in xml file using querypath

I am using querypath for parsing my xml file. Its working fine , but now my requirement is that i need to get the name of the tag/namespace. Ex:- <contact> ...
1
vote
0answers
224 views

CakePHP form authentication for normal requests with basic authentication for JSON

I'm attempting to to build a web application that can be view by a user in a browser but also has an API for developers to interface with my application. My question is how do I change the ...
1
vote
0answers
57 views

DB Update and Redirect (CakePHP)

I'm adding a new column to my MySQL table in a controller in CakePHP. I then redirect to a page which displays the information contained in every column in the table. However, I'm receiving an ...
1
vote
0answers
118 views

CakePHP Recaptcha using CakeDC plugin version 1.1 no post received by controller method no error message

Using Cakephp 2.2.4 and the Recaptcha plugin 1.1 from CakeDC on a form. The page is SSL/HTTPS. When I submit form with correct recaptcha text entered the form resets and no messages. have checked ...
1
vote
0answers
212 views

CakePHP + nuSOAP - exposing a global function as a closure or using models outside of the controller?

I need to implement a SOAP service in a CakePHP controller. The exposed function names need to be in a global namespace (as in "Authenticate", not "SOAPController.Authenticate"). This forces me to ...
1
vote
0answers
126 views

Error when use nusoap to build webservice as a cakephp controller

I have used nuSoap as vender and created a soap webservice as a cakephp controller. route: Router::connect('/sms_gateway', array('controller' => 'SMS', 'action' => 'receiveMO')); ...
1
vote
0answers
133 views

CakePHP - New record on both HABTM models

So, I'm starting to believe that isn't possible but I'm hoping someone will prove me wrong. The crux of the question below is that I want to add new records for two HABTM associated models in the same ...
1
vote
0answers
107 views

Multiple domains on one database and CakePHP ACL Permissions

The situation We are developing a CakePHP webshop application that offers us the possibility to use just one database for different domains. For example we have shop1.com, shop2.com and shop3.com all ...
1
vote
0answers
240 views

CakePHP 2.0 ACL - updating the user record results in ARO error

I am using ACL in CakePHP 2.3.0-RC1 When I update a user field (optin to marketing) I get an error: AclNode::node() - Couldn't find Aro node identified by "Array ( [Aro0.model] => ...
1
vote
0answers
177 views

Cakephp 2 oauth2 plugin

I am trying to implement a REST API in cakephp. I download the CakePHP OAuth2 Server Plugin https://github.com/seddonmedia/cakephp-oauth-server and now i am trying to test it in order to understand ...

1 2 3 4 5 69