MUMSAI is an application who manages and authenticates users.
In addition, the mumsai provides useful features like link and download management.
- represents a tool to manipulate your links.
From an admin account, add a new label, add a new link, and press associate icon to add labels to that link.
Links can belong to one or more labels.
There is a section called download management.
Administrators users can upload files and set access mode (need user login, or
not), description, version and links to license and documentation pages.
Each downloaded file it's counted.
If you exchange links with many sites, there is a feature (check links exchange) that can check automatically if your link it's still present in partners’ pages. When you insert a new link exchange you can choose from a list, what sites needs to be checked.
List last logins from all clients, including MUMSAI.
Once a user is selected ("choose user"/"choose user by email" option), an admin user can do the following actions:
In order to authenticate users from a client web site through MUMSAI, you need to copy and configure some script files. Follow these steps:
Use example:
Your index.php should look like this:
#start session############################################
require ("core.php");
$session=new Session();
//put session in array to work like $_SESSION default array
$SESSION=$session->getArray();
#seesion##################################################
Login page :
if(@$SESSION['username']=="")
{
echo "
<center>
<iframe width='400' height='400' src='redirect.php?&m=".$message."' frameborder='0'>Login frame</iframe>
</center>";
}
else
{
echo "Welcome {$SESSION['username']}.<a href='logout.php'>Logout</a>";
}
## end login ##
To find user permissions, use function getPermission(HTTP).This function will return one of the following string:
-"User"
-"Admin"
-"Moderator
To store values in session, write $session->setSession("key",$value);