This example shows you how to add HTML to your flash messages. Helpful when you want to add a link in CakePHP flash messages.
Cake4, CAKEPHP 4
This article demonstrates how to login as another user by impersonation, in CakePHP4. This allows administrators to login as another user and test issues with that user.
CakePHP
How to Fix Error: CSRF token from either the request body or request headers did not match or is missing.
Override the CakePHP maximum of 100 records in pagination.
CakePHP, CakePHP4
This example demonstrates how to return the first row or record from those returned in CakePHP.
CakePHP, CakePHP4
This example shows you how to obtain user information from the session.
CakePHP, CakePHP4
These examples describe how to install the AWS SDK for PHP with composer, and utilize S3.
cakephp4, AWS, CakePHP
This example shows you how to skip CSRF checks in CakePHP (when you have it globally enabled), for prefixes with 'Api'
CakePHP, CakePHP4
This example shows how you can get the current routing prefix in CakePHP.
CakePHP
This example shows you how to reference another component from within a separate component in CakePHP 4. For example, you can call functions in Component A from Component B.
CakePHP, Components
This example shows you how to use a model (e.g. $this->Load('Model') ) from within a component, so you can use models like you would in a native controller.
cakephp4, Components
CakePHP 4 Using an app.php or app_local.php Variable in Components or Controllers
CakePHP
This CakePHP 4 component lets you easily handle cookies. This example sets a unique ID cookie.
CakePHP, PHP
Write and read cookies in your CakePHP 4 app.
CakePHP, CakePHP4
Components are re-usable bits of code you can call anywhere throughout your application.
CakePHP, CakePHP4
Use an alternative prefix in CakePHP4. For example, you can have separate folders for different functionality by user role, and you can use this method to separate functionality (actions / methods) for specific purposes, in separate controllers.
CakePHP, CakePHP4
Joining a single table on multiple fields in CakePHP 4, for example, join the users table on created_by and modified_by fields.
CakePHP 4, CakePHP
Validate Existing Password when Changing Password in CakePHP 4
CakePHP4
Get Items to Populate a Dropdown in CakePHP 4
CakePHP4
If you have been using GMail's "less secure" feature to send SMTP emails from your website, you've probably noticed as of May 30, 2022 that it's no longer working. here's a solution.
Support