sarvan75 / yii-user-management

Automatically exported from code.google.com/p/yii-user-management
0 stars 0 forks source link

Error in Registration Controller when sending activation email #171

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Enable the registration module
2. Add email field to registration view
3. try to register a new user

What is the expected output? What do you see instead?

Exception:
The table "{{yumtextsettings}}" for active record class "YumTextSettings" 
cannot be found in the database.

yumtextsettings database table is not created during the install procedure.

What version of the product are you using? On what operating system?
YUM 0.8.5 on MAC OSX

main.php configuration

        'user' => array(
            'debug' => false,
            'usersTable' => 'user',
            'translationTable' => 'translation',
        ),
        'membership' => array(
            'membershipTable' => 'membership',
            'paymentTable' => 'payment',
        ),
        /***
         Unused Modules
        'usergroup' => array(
            'usergroupTable' => 'user_group',
            'usergroupMessagesTable' => 'user_group_message',
        ),

        'friendship' => array(
            'friendshipTable' => 'friendship',
        ),
        'messages' => array(
            'messagesTable' => 'message',
        ),
        */
        'profile' => array(
            'privacySettingTable' => 'privacy_setting',
            'profileFieldsGroupTable' => 'profile_field_group',
            'profileFieldsTable' => 'profile_field',
            'profileTable' => 'profile',
            'profileCommentTable' => 'profile_comment',
            'profileVisitTable' => 'profile_visit',
        ),
        'role' => array(
            'rolesTable' => 'role',
            'userHasRoleTable' => 'user_role',
            'actionTable' => 'action',
            'permissionTable' => 'permission',
        ),
        'registration' => array(
            'enableRegistration' => true,
            'enableCaptcha' => false,
        ),

Original issue reported on code.google.com by paix...@gmail.com on 19 Nov 2011 at 11:47

GoogleCodeExporter commented 9 years ago
Probably your answer lies here:
https://github.com/thyseus/yii-user-management/issues/10

Original comment by abhishek...@gmail.com on 15 Oct 2012 at 10:54