Sviatoslav
Sviatoslav
Hi, I want to avoid this issue, but I can't do that right now. I can't find enough free time... The extension need to be completely rewrited. The first aproach...
Hi, Can you show your `UserIdentity` class?
You should inmplement your `UserIdentity` according to [this wiki](https://github.com/SleepWalker/hoauth/wiki/UserIdentity-class-example). If your identity being instantinated without `$password`, this means, that this is hoauth authorization. You should handle this case in `__construct()`...
There can be problems with `returnUrl` in yii-user or it can be, that your facebook account is already assotiated with admin account.
Your yii app is in debug mode? php errors are not disabled?
can you also set this on your index page? ``` php error_reporting(E_ALL); ini_set('display_errors', 1); ```
hello @nakarin4350, can you add this two lines to yours `UrlManager` component config in `application.config.main`? ``` php 'urlManager'=>array( 'urlFormat' => 'path', // this 'showScriptName' => false, // and this 'rules'=>array(...
To help you, I need the way to reproduce this issue on my localhost... Do you use yii-user? If so, you can try to install [this](https://github.com/SleepWalker/hoauth-demo-site) demo. This is the...
There is the instruction for both `attributes` property and `UserIdentity` in README. In `attributes` you should specify the attributes of your `User` model as keys and coresponding fields of social...
Hmm, I can't understand. From where do you try to access those attributes? Probably it will be easier if you post your user's table sql, `User` model and `UserIdentity`. Than,...