Monday, March 19, 2012

The table "{{users}}" for active record class "RegistrationForm" cannot be found in the database. Yii Frame in User Module

How to resolve this issue in real time?

very simple when ever we install the use module in Yii  it's giving table prefix like tblusers

solution:-
   path: yourapp/protected/config/main.php

 goto below line
           'db'=>array(
            'connectionString' => 'mysql:host=localhost;dbname=yourdb',
            'emulatePrepare' => true,
            'username' => 'yourusername',
            'password' => '',
            'charset' => 'utf8',
             'tablePrefix' => 'tbl_',
        ),

add tablePrefix end the array :)
 

No comments:

Post a Comment