Top "Cakephp-3.0" questions

Questions about the 3.0.x branch of the CakePHP MVC framework.

CakePHP 3 contain select fields

I have the following DB tables: items, users, groups, itemImages. There are many to many relations between (items, groups) and (…

php mysql cakephp orm cakephp-3.0
cakephp 3.0 how to populate a select field with values instead of id

i was looking for a previous answer, but the ones i've found are related to older cakephp versions i have …

php cakephp cakephp-3.0
Cakephp 3.0 change or remove wrapping div on input form

I am trying to remove or change the wrapping div that CakePHP uses on its form helper. When I use …

php html cakephp cakephp-3.0
phpunit mock - method does not exist

I recently updated PHPunit from 5.3 to 5.5 in an IntegrationTestCase of an app that is CakePhp 3.x based. and I don't …

php unit-testing cakephp phpunit cakephp-3.0
Cakephp 3 query OR Condition

Guys how can I apply an OR condition in the following Where statement ? $this->IbCommisions->find()->…

cakephp-3.0
$this->set('title', 'Title Name'); not working in CakePHP 3.x

Basically in default.ctp I have this for my title: <title> <?= $this->fetch('title') ?> </…

php cakephp cakephp-3.0
CakePHP 3.0 -> Between find condition

Is it possible to do a "BETWEEN ? AND ?" where condition LIKE in cakephp 2.5? In cakephp 2.5 I write something like 'conditions' =&…

cakephp orm cakephp-3.0
Login [ Auth->identify() ] always false on CakePHP 3

I started using CakePHP 3 after a time using CakePHP 2 and I am having troubles to create the authentication login. The …

php cakephp authentication login cakephp-3.0
CakePHP 3.x - AuthComponent::user() in View

In CakePHP 2.x you could do AuthComponent::user() in View to get data from Auth component. In CakePHP 3.0beta3 it …

cakephp cakephp-3.0
How to execute custom query in cakephp 3.x

Custom query execution in cakephp. I have applied below code. $conn = ConnectionManager::get('default'); $rs = $conn->query('SELECT * FROM …

php cakephp-3.0