updated test environment to install all requisite perl modules
This commit is contained in:
parent
e63bf2a8b4
commit
401e8938a6
4 changed files with 240 additions and 355 deletions
|
|
@ -8,14 +8,14 @@ The following people/companies are responsible for WebGUI:
|
|||
WebGUI Core..........................JT Smith / Plain Black
|
||||
|
||||
Contributing Developers..............Peter Beardsley / Appropriate Solutions
|
||||
Leendert Bottelberghs
|
||||
Leendert Bottelberghs / United Knowledge
|
||||
Richard Caelius / 100 World
|
||||
Irving Carrion
|
||||
Richard Clark
|
||||
Doug Collinge
|
||||
Flavio Curti
|
||||
Jeff Depons / WDI
|
||||
Frank Dillon / WDI
|
||||
Jeff Depons / Adaptive Dynamics
|
||||
Frank Dillon / Brunswick
|
||||
Arne Dokken
|
||||
Junying Du / WDI
|
||||
Ed Van Duinen / UNC
|
||||
|
|
@ -23,7 +23,7 @@ Contributing Developers..............Peter Beardsley / Appropriate Solutions
|
|||
Chris Gebhardt / OpenServe
|
||||
Andy Grundman
|
||||
Chris Jackson
|
||||
Roy Johnson
|
||||
Roy Johnson / Sparton
|
||||
Koen de Jonge / ProcoliX
|
||||
Martin Kamerbeek / ProcoliX
|
||||
Christian Kocourek
|
||||
|
|
@ -41,6 +41,7 @@ Contributing Developers..............Peter Beardsley / Appropriate Solutions
|
|||
Jeff Szpak / Plain Black
|
||||
Sean Tu / WDI
|
||||
Madsen Wikholm
|
||||
Matt Wilson / Boomer Consulting
|
||||
Gerald Yung
|
||||
|
||||
|
||||
|
|
@ -50,40 +51,9 @@ to WebGUI, but who's work has made WebGUI possible:
|
|||
|
||||
Perl.................................Larry Wall / O'Reilly
|
||||
|
||||
Convert::ASN1........................Graham Barr
|
||||
|
||||
Data::Config.........................Sébastien Aperghis-Tramoni
|
||||
|
||||
Date::Manip..........................Sullivan Beck
|
||||
|
||||
DBIx::FullTextSearch.................T.J. Mather
|
||||
|
||||
HTML::TagFilter......................William Ross
|
||||
|
||||
HTML::Template.......................Sam Tregar
|
||||
|
||||
HTTP::BrowserDetect..................Lee Semel
|
||||
|
||||
Net::LDAP............................Graham Barr
|
||||
|
||||
Parse::PlainConfig...................Arthur Corliss
|
||||
|
||||
Text::Balanced.......................Damian Conway
|
||||
|
||||
Tie::CPHash..........................Christopher J. Madsen
|
||||
|
||||
Tie::IxHash..........................Gurusamy Sarathy
|
||||
|
||||
XML::RSSLite.........................Jerrad Pierce
|
||||
Scott Thomason
|
||||
|
||||
XML::Simple..........................Grant McLean
|
||||
|
||||
TinyMCE..............................MoxieCode
|
||||
http://www.moxiecode.com
|
||||
|
||||
Classic Rich Edit....................Bratta
|
||||
|
||||
JS Calendar..........................Mihai "Mishoo" Bazon
|
||||
|
||||
Cool Menus...........................Thomas Brattli
|
||||
|
|
|
|||
|
|
@ -7,6 +7,31 @@ upgrading from one version to the next, or even between multiple
|
|||
versions. Be sure to heed the warnings contained herein as they will
|
||||
save you many hours of grief.
|
||||
|
||||
6.6.0
|
||||
--------------------------------------------------------------------
|
||||
* Perl modules that used to be shipped with WebGUI are now required
|
||||
to be installed on your system manually. You can optionally
|
||||
just use the WebGUI runtime environment to save yourself
|
||||
the hassle of downloading all of them. You can also install
|
||||
them using testEnvironment.pl --install-modules
|
||||
The new modules you'll need to install are:
|
||||
|
||||
Net::LDAP
|
||||
Date::Manip
|
||||
DBIx::FullTextSearch
|
||||
HTML::Highlight
|
||||
HTML::TagFilter
|
||||
HTML::Template
|
||||
Parse::PlainConfig
|
||||
HTTP::BrowserDetect
|
||||
Parse::RecDescent
|
||||
Text::Balanced
|
||||
Tie::IxHash
|
||||
Tie::CPHash
|
||||
XML::RSSLite
|
||||
XML::Simple
|
||||
|
||||
|
||||
6.5.0
|
||||
--------------------------------------------------------------------
|
||||
* The International Macro must be enabled in all WebGUI configuration
|
||||
|
|
|
|||
|
|
@ -12,40 +12,12 @@ QnD INSTALL INSTRUCTIONS:
|
|||
|
||||
1. Install Perl 5.6.x or greater. (5.8.x recommended)
|
||||
|
||||
2. Install the following Perl modules:
|
||||
2. Install Apache with mod_perl and set up your config. See Ruling WebGUI
|
||||
for information specific to Apache 1.3 vs 2.0. Apache 2 recommended.
|
||||
|
||||
LWP
|
||||
DBI
|
||||
DBD::mysql
|
||||
Time::HiRes
|
||||
Archive::Tar
|
||||
Compress::Zlib
|
||||
IO::Zlib
|
||||
Digest::MD5
|
||||
HTML::Parser
|
||||
SOAP::Lite
|
||||
Cache::Cache
|
||||
Image::Magick
|
||||
Parse::PlainConfig
|
||||
Tie::IxHash
|
||||
Tie::CPHash
|
||||
XML::RSSLite
|
||||
Text::Balanced
|
||||
Parse::RecDescent
|
||||
Bundle::Net::LDAP
|
||||
HTTP::BrowserDetect
|
||||
HTML::Template
|
||||
HTML::TagFilter
|
||||
HTML::Highlight
|
||||
HTML::CalendarMonthSimple
|
||||
Date::Manip
|
||||
Data::Config
|
||||
Convert::ASN1
|
||||
3. Install MySQL 3.23 or greater. MySQL 4.1 recommended.
|
||||
|
||||
3. Install Apache with mod_perl and set up your config. See Ruling WebGUI
|
||||
for information specific to Apache 1.3 vs 2.0.
|
||||
|
||||
4. Install MySQL.
|
||||
4. Install Image Magick.
|
||||
|
||||
5. Extract WebGUI into your webroot.
|
||||
|
||||
|
|
@ -59,8 +31,9 @@ QnD INSTALL INSTRUCTIONS:
|
|||
|
||||
7. Edit "etc/WebGUI.conf" to match your DB settings and log directory.
|
||||
|
||||
8. Run the following command from your WebGUI/sbin directory to determine
|
||||
whether you've configured your system correctly.
|
||||
8. Run the following command from your WebGUI/sbin directory to install
|
||||
the required perl modules and determine whether you've configured
|
||||
your system correctly.
|
||||
|
||||
perl testEnvironment.pl
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue