abhi1693 / yii2-app-advanced-startup-kit

Yii 2 Practical Advanced Application Template (GUI Startup Kit)
Other
31 stars 22 forks source link

Unknown component ID: authClientCollection #6

Closed hdushku closed 9 years ago

hdushku commented 9 years ago

When I try to login in I get this error: Unknown component ID: authClientCollection

hdushku commented 9 years ago

solved by putting the below code in config:

'authClientCollection' => [
    'class' => 'yii\authclient\Collection',
    'clients' => [
        'google' => [
            'class' => 'yii\authclient\clients\GoogleOpenId'
        ],
        'facebook' => [
            'class' => 'yii\authclient\clients\Facebook',
            'clientId' => 'facebook_client_id',
            'clientSecret' => 'facebook_client_secret',
        ],
        // etc.
    ],
]
abhi1693 commented 9 years ago

I have fixed this issue. Update your project and re-install your application.