cakephp life cycle
// https://stackoverflow.com/questions/20525897/what-is-the-lifecycle-of-a-cakephp-request/20534204#20534204
cakephp life cycle
// https://stackoverflow.com/questions/20525897/what-is-the-lifecycle-of-a-cakephp-request/20534204#20534204
cakephp 4 change layout view in a method
//chnage the layout in Cakephp 4 with the layout file called ajax.php
$this->viewBuilder()->setLayout('ajax');
setup cakephp
1. Add .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
2. Add Permission tmp, Vendor, Webroot
- Window Set permisson
- Linux Set chmod -R 777
cakephp
composer create-project --prefer-dist cakephp/app:~4.0 my_app_name
multiple OR cakephp
// ------------------------------------
// ------------ MULTI OR --------------
// ------------------------------------
$conditions = array();
$conditions = array(
'OR' => array(
array(
'MemberRole.school_id' => array(),
'MemberRole.role_id' => $role,
),
array(
'MemberRole.school_id' => array(),
'MemberRole.role_id' => Environment::read('role.register'),
),
array(
'MemberRole.school_id' => $school_id,
'MemberRole.role_id' => Environment::read('role.register'),
),
array(
'MemberRole.school_id' => $school_id,
'MemberRole.role_id' => $role
),
),
);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us