Alexander Makarov
Alexander Makarov
See #19174
See https://forum.yiiframework.com/t/suite-common-frontend-backend-could-not-be-found/129152
https://github.com/samdark/yii2-cookbook/blob/master/book/forms-validator-multiple-attributes.md should likely be adjusted. See https://github.com/yiisoft/yii2/commit/d62590807d7f609defd8a2bdc0121405b226c258#commitcomment-41083851
```php class Module extends \yii\base\Module { public function init() { parent::init(); \Yii::configure($this, require __DIR__ . '/config.php'); } ``` config.php: ```php return [ 'params' => [ ... ], 'components' => [...
For https://github.com/samdark/yii2-cookbook/blob/master/book/scaling.md it's necessary to describe on how to deal with assets.
See https://github.com/yiisoft/yii2-app-advanced/pull/307
See https://github.com/yiisoft/yii2/issues/10404. Could be solved by using DB sessions and writing additional info into the table: ``` php 'session' => [ 'class' => 'yii\web\DbSession', 'writeCallback' => function ($session) { return...
AR is perfect when you need to delete, update or create one or more records sequentially. Its support of dirty attributes (saving only what was really changed) results in optimized...
http://www.yiiframework.com/forum/index.php/topic/59500-single-vendor-for-multiple-project/