directheads
Results
2
comments of
directheads
auth by login/pass not work in yii2 advanced template.
Im fixed it for me: In User model actionFindIdentity: replace return isset(self::$users[$id]) ? new self(self::$users[$id]) : null; with return static::findOne(['id' => $id, 'status' => self::STATUS_ACTIVE]); In eauth demo users accounts...