Skip to content.
TWiki > MessageBoardPlugin

Message Board Plugin

This is a database based message board plugin for the TWiki system. Users can post and read messages from a database as if it was a message board fixed on the wall.

Syntax Rules

Use the TWiki Tag %MESSAGE_BOARD% with options:

Option Name Value Range Description
displayOnly '0' or '1' When set to 1 causes Message Board to just display messages, not allowing users to post new messages. When set to 0 will display posted messages and allow users to post new messages. Defaults to 0.
messageOrder 'ASC', 'DESC' Chooses the order of messages, ASC meaning newer messages showing first, DESC meaning older messages showing first. Defaults to ASC.

MessageBoardPlugin Global Settings

  • One line description, shown in the TextFormattingRules topic:
    • Set SHORTDESCRIPTION = Forum basato su un Database

  • Color Settings
    • Set TABLE_HEAD_COLOR = %WEBCOLOR%

  • Icons and Image Settings
    • Set TRASH_CAN_ICON_LINK = Remove
    • Set PENCIL_ICON_LINK = Edit

  • Database Settings
    • Set DB_DRIVER = mysql
    • Set DB_SERVER = localhost
    • Set DB_SERVER_PORT = 3306
    • Set DB_DATABASE = torinopm
    • Set DB_TABLE = message
    • Set DB_USER = torinopm
    • Set DB_PASSWORD = torinopm

  • Plugin Messages (so you can internationalize them):
  • Error opening connection to the database
    • Set MSG_DB_CONNECT_ERROR = ALERT! Error connecting to the database
  • Error closing connection to the database
    • Set MSG_DB_CLOSE_ERROR = ALERT! Error closing the database connection
  • Error during query preparation
    • Set MSG_DB_PREPARE_ERROR = ALERT! Error preparing query
  • Error during data fetch
    • Set MSG_DB_FETCH_ERROR = ALERT! Error fetching data from database
  • Error during query execution
    • Set MSG_DB_EXECUTE_ERROR = ALERT! Error executing query
  • No data found error
    • Set MSG_DB_NO_DATA_ERROR = ALERT! No data found
  • Update error message
    • Set MSG_DB_UPDATE_ERROR = ALERT! Error updating data
  • Insert error message
    • Set MSG_DB_INSERT_ERROR = ALERT! Error inserting data

  • Debug plugin: (See output in data/debug.txt)
    • Set DEBUG = 0

Plugin Installation Instructions

Note: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the server where TWiki is running.

  • Download the ZIP file from the Plugin web (see below)
  • Unzip MessageBoardPlugin.zip in your twiki installation directory. Content:
    File: Description:
    data/TWiki/MessageBoardPlugin.txt Plugin topic
    data/TWiki/MessageBoardPlugin.txt,v Plugin topic repository
    lib/TWiki/Plugins/MessageBoardPlugin.pm Plugin Perl module
    pub/TWiki/MessageBoardPlugin/trashcan.png Trash Can Icon
    pub/TWiki/MessageBoardPlugin/editicon.png Pencil and Paper Icon
  • Create a table into your database using (this is mysql SQL, the only DB supported at the moment)
         CREATE DATABASE message_board;

    CREATE TABLE message(
      id INT PRIMARY KEY AUTO_INCREMENT,
      author VARCHAR(50) NOT NULL,
      due DATETIME NOT NULL,
      posted DATETIME NOT NULL,
      msg TEXT NOT NULL,
      dropped ENUM( 'Y', 'N' ) NOT NULL DEFAULT 'N'
    )
  • Create a new user and give it appropriated permissions:
      GRANT SELECT, INSERT, UPDATE, DELETE
        ON messsage_board.message
        TO board IDENTIFIED BY 'b0aRd'
  • Test if the plugin is correctly installed:
    • Open a MessageBoardTestArea? and insert %MESSAGE_BOARD{ messageOrder="DESC" }% into the topic. Preview, save and try to post a message.

Plugin Info

Plugin Author: TWiki:LuisCamposDeCarvalho
Plugin Version: 15/06/2004 (V1.000)
Change History:  
15 Jun 2004: Initial version
CPAN Dependencies: DBI CGI
Other Dependencies: none
Perl Version: 5.6.1
Plugin Home: http://TWiki.org/cgi-bin/view/Plugins/MessageBoardPlugin
Feedback: http://TWiki.org/cgi-bin/view/Plugins/MessageBoardPluginDev

Related Topics: TWikiPreferences, TWikiPlugins, DefaultPlugin

-- TWiki:LuisCamposDeCarvalho - 15 Jun 2004

Attachment sort Action Size Date Who Comment
trashcan.png manage 0.8 K 16 Jun 2004 - 17:54 Main.lcampos  
editicon.png manage 2.0 K 16 Jun 2004 - 17:55 Main.lcampos  


Ultima versione: r1.1 - 16 May 2005 - 19:13 - Main.guest
 
Se riconosciuto dal sistema come utente: Main.guest