Quote:
Originally Posted by Chadi
Is there a way to set usergroup permissions? I want only select usergroup IDs to have access.
|
Hello friend,
Sorry for my late.
1 Is there a way to set usergroup permissions? I want only select usergroup IDs to have access.
Answer:
Yes sure it can be implemented in login_chat.php
2 I'm interested in usergroup permissions also.
For example I have this in FlashChat:
// Usergroup Definitions //
$users = '11,13' ; // Allowed standard access.
$banned = '1,2,8' ; // Banned from any access.
$moderators = '5,7,12' ; // Allowed access as moderators.
$administrators = '6' ; // Allowed access as administrators.
This means I have more control and can also have promotions which give members chat access after a certain time. Is this available in your software?
Answer:
Following parameters are allowed to support integration:
$LOGIN_SUCCESS = 0;
$LOGIN_PASSWD_ERROR = 1;
$LOGIN_NICK_EXIST = 2;
$LOGIN_ERROR = 3;
$LOGIN_ERROR_NOUSERID = 4;
$LOGIN_SUCCESS_ADMIN = 5;
$LOGIN_NOT_ALLOW_GUEST = 6;
$LOGIN_USER_BANED = 7;
Look at these, it can recognize users/banned/superadmin with integration, without moderators, please understand it.
Thanks.