![]() |
lefty 12/13/2020 |
The below link / post may help! With Dynamic Permissions. It worked for me without giving full access , only access to setup users and assign them to a group but not admin by structuring the query in the view to not include admin group from uggroups table. You would or the person setting up the user would have to send them a password reset / reminder for them to change password for access or they can on their own once they are setup. |
A
|
AlphaBase author 12/13/2020 |
Thanks for you response and for the link, John. |
![]() |
lefty 12/14/2020 |
Thanks for you response and for the link, John. But for me, the question is: how do I assign a new user with a passwordas a "sub-admin".
|
A
|
acpan 12/14/2020 |
This is what worked for me, if you are using BYCRYPT encryption in your PHPR project and want to programmatically add users, you can try to encrypt the plain password to encrypted password with PHP's function password_hash: Thanks for you response and for the link, John. But for me, the question is: how do I assign a new user with a passwordas a "sub-admin". |
A
|
AlphaBase author 12/14/2020 |
$password_encypted = password_hash($password_plain_text, PASSWORD_DEFAULT);
|