Top "Cakephp" questions

CakePHP is an open-source web, rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications.

cakePHP value for empty option

is there a way to pass a value for the empty option in a select dropdown generated by the FormHelper? …

php cakephp formhelper cakephp-2.4
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 …

php forms cakephp file-upload cakephp-1.3
How to unit test your API?

I'm at the point where I need to write unit tests for a REST API written using CakePHP 1.3. The API …

unit-testing api cakephp
CakePHP 2.X - loading custom class in app/Lib dir

I have a class Called MyClass. It lives in app/Lib/MyDir/MyClass. I'd like to use App:uses() to …

php cakephp cakephp-2.0
Asynchronous processing or message queues in PHP (CakePHP)

I am building a website in CakePHP that processes files uploaded though an XML-RPC API and though a web frontend. …

php multithreading cakephp asynchronous message-queue
CakePHP Session Timeout on Inactivity only

So the crux of this question is just how to prevent CakePHP from de-authenticating a session ONLY after a period …

cakephp authentication session-timeout
How do I completely disable caching in Cakephp?

So I opened the cache floodgates in my Cakephp app and now I want to close them... I've done pretty …

php cakephp caching
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/*', …

cakephp routing routes cakephp-1.3
How to Create a URL in Controller like HtmlHelper

TLDR: How can I create a URL in the Controller similar to how I can use the HtmlHelper to create …

cakephp html-helper cakephp-2.x cakephp-3.x
How to use inner join in CakePHP models

I have two tables that I want to INNER JOIN, I spent hours but I had no luck. I will …

cakephp join model associations model-associations