WebGUI 3.6.0 release
This commit is contained in:
parent
81da4fe3af
commit
0997fc100c
22 changed files with 3085 additions and 103 deletions
File diff suppressed because one or more lines are too long
|
|
@ -7,6 +7,26 @@ 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.
|
||||
|
||||
3.6.0
|
||||
--------------------------------------------------------------------
|
||||
* You need to get a new Perl module called HTML::Parser before you
|
||||
upgrade. You probably already have this module installed,
|
||||
but we had to warn those of you who don't.
|
||||
* If your first install was WebGUI 3.5.2 then you are missing a
|
||||
necessary table. 3.5.2 was released without this code in
|
||||
create.sql. Execute the following code on your database:
|
||||
|
||||
CREATE TABLE webguiVersion (
|
||||
webguiVersion varchar(10) default NULL,
|
||||
versionType varchar(30) default NULL,
|
||||
dateApplied int(11) default NULL
|
||||
);
|
||||
insert into webguiVersion values
|
||||
('3.5.2','intitial install',unix_timestamp());
|
||||
|
||||
NOTE: If you upgraded to 3.5.2 from any version, you are
|
||||
not at risk. Do not apply the above update.
|
||||
|
||||
3.3.0
|
||||
--------------------------------------------------------------------
|
||||
* You need to get a new Perl module before you upgrade. It is
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ QnD INSTALL INSTRUCTIONS:
|
|||
Date::Calc
|
||||
HTML::CalendarMonthSimple
|
||||
Image::Magick
|
||||
HTML::Parser
|
||||
|
||||
3. Install Apache (with or without mod_perl) and set up your config.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,4 @@
|
|||
create table webguiVersion (
|
||||
webguiVersion varchar(10),
|
||||
versionType varchar(30),
|
||||
dateApplied int
|
||||
);
|
||||
insert into webguiVersion values ('3.5.1','intitial install',unix_timestamp());
|
||||
insert into webguiVersion values ('3.5.2','intitial install',unix_timestamp());
|
||||
|
||||
# MySQL dump 8.14
|
||||
#
|
||||
|
|
|
|||
2076
docs/upgrades/upgrade_3.5.2-3.6.0.sql
Normal file
2076
docs/upgrades/upgrade_3.5.2-3.6.0.sql
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue