cakephp icon indicating copy to clipboard operation
cakephp copied to clipboard

CakePHP: The Rapid Development Framework for PHP - Official Repository

Results 212 cakephp issues
Sort by recently updated
recently updated
newest added

Added NULL condition to overwrite and clear SQL WITH clause matching the CONTAIN process.

### Description ```php $rfidChip = $this->RfidChips->find() ->select(['id']) ->contain([ 'Units' => [ 'fields' => ['id', 'operator_id'], 'Operators' => [ 'fields' => ['null_column'], // null_column is a column which has a value...

defect
ORM

### Description I fetch something from the database, pass it through `Hash::combine()` and I end up with an array of entities. ``` APP/Controller/ExampleController.php (line 123) [ (int) 1 => object(MyPlugin\Model\Entity\User)...

defect
utility

### Description In CakePHP 3 the kind of the confirmation message implementation supported newline charcters. Now in CakePHP 4 it is not possible anymore to integrate newline characters or I...

defect
view

### Description A few times now I have had where the belongsToManys don't match up and I get the error about it. e.g. this using the join table was wrong...

enhancement
ORM

### Description Tried to create a union query on two tables that are on different databases and get an error. It does not seem to take into account the other...

database

### Description https://github.com/cakephp/cakephp/blob/4.x/src/TestSuite/Fixture/SchemaLoader.php#L71-L87 If `dropTables()` is by passed via` $dropTables = false` (line 71) the `$driver->connection = null `(Line 68) and ` $sql `can not be executed because no database...

defect

### Description Hi, I feel like this may have been already talked about / be a known query builder "gotcha", but I can't seem to find issues or mentions about...

defect
ORM

### Description Hi, i have noticed a problematic behavior (bug?) within the TreeBehavior when concurrent requests are used. In my case, CakePHP is used to provide the backend API to...

enhancement
support
ORM

### Description We are using Database sessions and noticed random Integrity constraint violation error for primary key. I have not been able to reproduce this error at my side. I...

defect