|
|
|
TalkShop
is a collection of Perl scripts that allows you to run a highly customizable webforum on
your website. Through TalkShop, visitors can
post new messages, read messages, and respond to messages from other visitors, all via
their browser. Messages are displayed in an easy to read threaded format by default, but
visitors can also select to view the messages in chronological order, or view a summary of
all the active threads in the forum. TalkShop started off life as Matt Wright's WWWBoard v2.0, but a considerable amount of features have been added to the basic script, in order to make it more to make it more user-friendly, as well as incorporate many new features. The latest released version is Talkshop v2.76 |
|
Apart from the basic
WWWBoard features, TalkShop offers the
following enhancements:
|
|
To run the TalkShop scripts, you will need access to an
executable directory (normally called CGI-BIN) on your webserver. This directory could be
located in your own web page area, or it may be a common CGI-BIN directory shared by other
users on the webserver. Perl version 5 (or higher) will also have to be installed on the
webserver, otherwise the TalkShop scripts
won't run! TalkShop uses a number of environment variables to operate. You may experience a few problems when configuring TalkShop on your webserver if some of these are not defined. Please use the TalkShop Support Forum if you require any assistance.. |
|
The latest release of
the TalkShop
scripts can be downloaded from the following address: Note: TalkShop is continuously under development, and enhancements are always being added. The latest UNRELEASED version of TalkShop can be seen in operation at TalkShop Support Forum If you'd like to get a copy of these scripts that contain all of the latest enhancements, please contact the author at brian@caribsurf.com or post a message to the support forum |
|
The TalkShop Support Forum was set up specifically for discussing configuration issues, as well as enhancements to the TalkShop script. This forum is located at the following address: |
|
The following sites on
the internet use the TalkShop script suite,
or a version thereof:
If you'd like to add a name to this list, please contact the author at brian@caribsurf.com |
|
The original WWWBoard script (and other scripts) can be downloaded from Matt Wright's website at http://worldwidemart.com/scripts/. |
|
TalkShop
versions 2.68-1 and later are Y2K compliant. Earlier versions will have to be
patched to correct a date issue. To patch TalkShop,
open the talkshop.cgi file in a text editor, and replace the text: if ($year <= 99) { $year = "19$year"; } else { $year = "20$year"; } With: $year = 1900 + $year |