| 1 |
FUDforum Integration module
|
| 2 |
==============================================================================
|
| 3 |
|
| 4 |
This module provides integration with FUDforum (http://fudforum.org/).
|
| 5 |
The following (all optional) blocks are provided to integrate your forum with
|
| 6 |
your drupal site:
|
| 7 |
|
| 8 |
1) FUDforum: User login
|
| 9 |
Allow forum users to login to your drupal site with their forum userids
|
| 10 |
and passwords. When a user changes his/her Drupal profile, the changes
|
| 11 |
will be synced back to the forum database. Likewise, if the user changes
|
| 12 |
his/her forum profile, it will be synced back to the Drupal site next
|
| 13 |
time he/she logs in.
|
| 14 |
|
| 15 |
2) FUDforum: New forum posts
|
| 16 |
Display a list of the 10 latest forum messages.
|
| 17 |
|
| 18 |
3) FUDforum: Online forum users
|
| 19 |
Display a list of all on-line forum users.
|
| 20 |
|
| 21 |
4) FUDforum: Forum statistics
|
| 22 |
Display forum statistics including: number of users, threads, messages,
|
| 23 |
newest member, etc.
|
| 24 |
|
| 25 |
Prerequisites
|
| 26 |
------------------------------------------------------------------------------
|
| 27 |
This module assumes that FUDforum was configured to use PATH_INFO style URLs.
|
| 28 |
See setting in FUDForum's Admin Control Panel. If not, you will have to change
|
| 29 |
the URL format in the module code yourself.
|
| 30 |
|
| 31 |
Installation
|
| 32 |
------------------------------------------------------------------------------
|
| 33 |
|
| 34 |
Follow these steps to install the FUDforum module:
|
| 35 |
|
| 36 |
- Navigate to Administer » access control and add the following required
|
| 37 |
roles: 'forum user' and 'forum moderator'.
|
| 38 |
|
| 39 |
- Download the FUDforum module from http://drupal.org/project/fudforum
|
| 40 |
|
| 41 |
- Copy fudforum.module to your modules directory (create a
|
| 42 |
subdirectory .../modules/fudforum/)
|
| 43 |
|
| 44 |
- Navigate to Administer » modules and enable the fudforum module.
|
| 45 |
|
| 46 |
- Navigate to Administer » settings » fudforum and enter the path to
|
| 47 |
FUDforum's GLOBALS.php file. Ensure that Drupal will be able to read
|
| 48 |
this file.
|
| 49 |
|
| 50 |
- Enable the blocks you want to use from Administer » blocks
|
| 51 |
|
| 52 |
|
| 53 |
Credits / Contacts
|
| 54 |
------------------------------------------------------------------------------
|
| 55 |
|
| 56 |
Module written by Frank Naude.
|
| 57 |
|
| 58 |
TODO List
|
| 59 |
------------------------------------------------------------------------------
|
| 60 |
- Register new users created on Drupal to the forum DB
|
| 61 |
|
| 62 |
- Support databases other than mysql
|
| 63 |
|
| 64 |
- Translate this module into other languages.
|
| 65 |
|