[FIX] ‘Sorry, you are not allowed to access this page.’
-
There’s an issue that stops the buttons from enable/disable properly, as trying to hit them returns:
Sorry, you are not allowed to access this page.
The reason for this issue is a typo.
\plugins\blue-admin\inc\inc.php line ~184. Need to fix the redirect calls with the proper page:
if($tab=trim($tab)) { //$location=$_SERVER['PHP_SELF'].'?page=blue_admin&tab='.$tab.'&'.$action; $location=$_SERVER['PHP_SELF'].'?page=blue-admin&tab='.$tab.'&'.$action; //typo fix }else{ //$location=$_SERVER['PHP_SELF'].'?page=blue_admin&'.$action; $location=$_SERVER['PHP_SELF'].'?page=blue-admin&'.$action; //typo fix }
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[FIX] ‘Sorry, you are not allowed to access this page.’’ is closed to new replies.