Im trying to set up my yii2 site on a linux server, and i use my windows pc for development using wampp.
Ive set up RBAC AuthManagement to use DBManager, and everything works perfectly on my development site. However, when i try and install the site onto my Live server, i get a Yii2 NonInstantiableException Error, stating that "Class yii\rbac\DBManager does not exist" (Screenshot attached)
While looking through the stack trace, it highlights a line in my code where i have Yii checking a users roles to see if it can display a navigation item. Ive attached the code below to show the line highlighted:
use yii\helpers\Html;
$frontend_url = "frontend site";
//organisation navigation links
$orgNav[] = ['label' => "Organisation Details"];
$orgNav[] = ['label' => "All Organisation List",'visible'=>Yii::$app->user->can('owner')];
$orgNav[] = ['label' => "Organisation User Management",'visible'=>Yii::$app->user->can('superAdmin')];
$orgNav[] = ['label' => "Organisation Customer Management"];
if(Yii::$app->user->can('admin')){
$menuItems[] = ['label'=>'Organisation','items'=>$orgNav];
}
//Ticket Management Links
$ticketNav[] = ['label'=>'Open Tickets'];
$ticketNav[] = ['label'=>'Closed Tickets'];
$ticketNav[] = ['label'=>'My Tickets'];
$ticketNav[] = ['label'=>'All Tickets (For Org)','visible' => Yii::$app->user->can('admin')];
$ticketNav[] = ['label'=>'Open a new Support Ticket'];
$menuItems[] = ['label'=>'Tickets','items'=>$ticketNav];
//user navigation links
$userNav[] = ['label'=>'Profile', 'url'=>'/user/index'];
$userNav[] = ['label' => 'Account Settings'];
$userNav[] = [
'label' => 'Logout (' . Yii::$app->user->identity->username . ')',
'url' => ['/site/logout'],
'linkOptions' => ['data-method' => 'post']
];
$menuItems[] = ['label'=>'User','items'=>$userNav];
//admin links (for owner and superAdmins)
$adminNav[] = ['label' => 'Organisation Management','visible' => Yii::$app->user->can('owner')];
$adminNav[] = ['label' => 'User Management','visible' => Yii::$app->user->can('owner')];
$adminNav[] = ['label' => 'License Management','visible' => Yii::$app->user->can('owner')];
$adminNav[] = ['label' => 'Site Settings','visible' => Yii::$app->user->can('owner')];
$menuItems[] = ['label' => 'Admin','items'=>$adminNav,'visible'=>Yii::$app->user->can('owner')];
$menuItems[] = ['label' => '> Home', 'url' => ['/']];
$menuItems[] = ['label' => '> Visit Website', 'url' => $frontend_url];
The line that is being highlighted is
$orgNav[] = ['label' => "All Organisation List",'visible'=>Yii::$app->user->can('owner')];
Ive googled this error but get shown other classes which dont provide much information for me.
Could i get some insight on this please?