Exposed a Cache API and moved page caching settings from the config file to the UI.
This commit is contained in:
parent
2b7b9ea4d2
commit
c3c06514f3
6 changed files with 218 additions and 12 deletions
|
|
@ -26,6 +26,8 @@ Contributing Developers..............Peter Beardsley / Appropriate Solutions
|
|||
Christophe Marcant
|
||||
Tavis Parker / ParkerOne Consulting
|
||||
Daniel Quinlan
|
||||
Steve Simms
|
||||
Ben Simpson
|
||||
Jeff Szpak / Plain Black
|
||||
Sean Tu / WDI
|
||||
|
||||
|
|
|
|||
|
|
@ -57,6 +57,9 @@ save you many hours of grief.
|
|||
* The discussions on USS and Articles have been turned off. They'll
|
||||
need to be manually turned back on.
|
||||
|
||||
* The setting "cachePages" has been removed from the config file. It
|
||||
has been moved to the content settings page inside the UI.
|
||||
|
||||
|
||||
5.1.0
|
||||
--------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -3095,6 +3095,14 @@ alter table Article drop column allowDiscussion;
|
|||
alter table USS drop column allowDiscussion;
|
||||
delete from settings where name='usernameBinding';
|
||||
delete from settings where name='addEditStampToPosts';
|
||||
insert into settings values ("cachePages","60");
|
||||
insert into settings values ("cachePagesVisitor","600");
|
||||
delete from international where languageId=1 and namespace='WebGUI' and internationalId=887;
|
||||
insert into international (internationalId,languageId,namespace,message,lastUpdated) values (887,1,'WebGUI','Midas (Mozilla 1.3+)', 1047342950);
|
||||
delete from international where languageId=1 and namespace='WebGUI' and internationalId=896;
|
||||
insert into international (internationalId,languageId,namespace,message,lastUpdated) values (896,1,'WebGUI','Page Cache Timeout (Visitors)', 1047342926);
|
||||
delete from international where languageId=1 and namespace='WebGUI' and internationalId=895;
|
||||
insert into international (internationalId,languageId,namespace,message,lastUpdated) values (895,1,'WebGUI','Page Cache Timeout', 1047342910);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue