| 1 |
// $Id$
|
| 2 |
|
| 3 |
Drupal - MRBS integration
|
| 4 |
|
| 5 |
This very simple module offers single sign-on integration with MRBS ( http://mrbs.sourceforge.net/ ) and Drupal. The module uses Drupal user accounts, permissions and sessions with MRBS. Currently the module has only been tested when installed directly in a subdirectory on Drupal root directory, but it should be quite easy to modify it for other installations.
|
| 6 |
|
| 7 |
Installation
|
| 8 |
- Install MRBS in mrbs subdirectory on your Drupal installation
|
| 9 |
- Configure MRBS to use same database as Drupal and make sure it works with default auth and session handling
|
| 10 |
- Install Drupal module and enable it
|
| 11 |
- Set Drupal permissions for MRBS module at admin/user/permissions
|
| 12 |
- Copy auth_drupal.inc and session_drupal.inc from mrbs_inc subdirectory to your mrbs install directory
|
| 13 |
- Change config.inc.php:
|
| 14 |
- $auth["session"] = "drupal";
|
| 15 |
- $auth["type"] = "drupal";
|
| 16 |
|
| 17 |
That's it, MRBS users and sessions should now be managed by Drupal.
|