"cdbauthmanager.authassignment" Is Read Only

I just moved my server to the cloud, and its giving me this error on pages having RBAC. I tried changing the permissions for the model, even to 777 (from 644) but that did not fix it.

Anyone know whats going on or what I can try to fix this? Appreciate the help.

Figured this out. This was a silly mistake. I was trying to solve the issue of RBAC table assignment after uploading to a linux server, and did that wrong. This is the correct way.




//In config/main.php


'authManager'=>array(

        'class'=>'CDbAuthManager',

        'connectionID'=>'db',

        'assignmentTable'=>'authassignment',

        'itemTable'=>'authitem',

        'itemChildTable'=>'authitemchild',

        ),