added a per-site config file option for international message caching

This commit is contained in:
JT Smith 2004-02-22 21:50:29 +00:00
parent 35ead8b39e
commit 3eec10dc49
11 changed files with 59 additions and 55 deletions

View file

@ -77,8 +77,9 @@ webgui.
to allow templates to be hidden from forms and/or management.
- Added dTree menu to the navigation system
(Thanks to Geir Landro, http://www.destroydrop.com)
- Added Cool Menus to the navigation system. (Thanks to Thomas Bratili,
- Added Cool Menus to the navigation system. (Thanks to Thomas Brattli,
http://www.dhtmlcentral.com)
- Added a config file option for per-site International message caching.

View file

@ -82,8 +82,6 @@ Convert::ASN1........................Graham Barr
Data::Config.........................Sébastien Aperghis-Tramoni
HTML::CalendarMonthSimple............Gregor Mosheh
HTML::TagFilter......................William Ross
HTML::Template.......................Sam Tregar

View file

@ -26,6 +26,7 @@ save you many hours of grief.
* WebGUI now requires the following Perl modules to be installed:
Data::Serializer
SOAP::Lite
Cache::Cache (no longer optional)
WARNING: Be sure you install these modules BEFORE you attempt to
upgrade or the upgrade will fail and you'll have a mess to
@ -36,6 +37,7 @@ save you many hours of grief.
calendars. Your old templates will remain intact, however,
so that you can migrate them manually to the new template
variables.
5.5.0

View file

@ -26,7 +26,7 @@ QnD INSTALL INSTRUCTIONS:
SOAP::Lite
Data::Serializer
Image::Magick (optional)
Cache::Cache (optional)
Cache::Cache
3. Install Apache (preferably with mod_perl) and set up your config.

View file

@ -500,6 +500,7 @@ push(@newWobjects,"WSClient");
$conf->set("wobjects"=>\@newWobjects);
$conf->set("emailRecoveryLoggingEnabled"=>1);
$conf->set("passwordChangeLoggingEnabled"=>1);
$conf->set("useSharedInternationalCache"=>1);
$conf->write;

File diff suppressed because one or more lines are too long