Focal Point
Installing WF 5.23

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3791018331

December 14, 2004, 04:41 PM
CHERI
Installing WF 5.23
We are planning on installing WF 5.23 in January. I thought I'ld ask to see if anyone has experienced anything we need to be aware of. We would like this to go as smoothly as possible.

Thanks Smiler
December 14, 2004, 04:52 PM
Leah
Are you upgrading from a 4.3.x version. If so did you use print spooling. 5.3.x only supports ip addressing for printers which is why we haven't gone to production with it yet.
December 14, 2004, 04:57 PM
CHERI
Yes, we are upgrading from 4.36. No, we are not using print spooling. Thanks, any comments are appreciated.
December 14, 2004, 05:16 PM
GCohen
I hope it was a typo and you meant
WF 5.3.2 .
December 14, 2004, 05:25 PM
CHERI
Yes, it was. I meant 5.3.2
December 15, 2004, 04:11 AM
susannah
is your site a self-serve or Mre? and do you have Caster? and do you plan to install it on a test box first and do a dry run? (strongly encouraged..4 and 5 are very different.).and are you going to get your tech rep to come over and install it for you or are you going to go it on your own?
December 15, 2004, 06:39 PM
CHERI
We are using MRE. We also use Report Caster.
Yes, we are going to load on a test box first.
No, we were going to try to install ourselves rather have an IBI person here. Do you recommond having an IBI person do the install ?
December 15, 2004, 07:04 PM
susannah
1.oh yes indeed. Have a tech rep guide you thru.
version 4 is all about edapath
version 5 is all about apppath
moi, i installed with apppath disabled and edapath retained...you'll have to make that decision for your site..they're very different .
2.Caster is quite cool in 5.
3.MRE has a problem which may or may not impact your site...In version 4, executing fexes that are resident in one domain but executed from another domain was easy to do. In version5, they've killed that capability. So a test box is an absolute necessity.
4.And of course, 5 is java based so some of your code will bomb unexpectedly...all about java reserved words. There's a thread buried deep in this board about some of the words. No biggie, just some code might need polishing.
December 16, 2004, 02:35 PM
webfocuspgm
Cheri,
We migrated from 4.3.6 to 5.2.3 plus patches to 5.2.5. I second the use of an IBI tech if you can get that approved, I could not. I don't remember exact issues but I know that there were reasons we had to apply all the patches up to 5.2.5 and that we had a problem with the migration utility for the MRE. It is a one time shot. I installed with 1 server three environments (Development, Quality (user testing) and Production ) which is easier than what we had in 4.3.6.

I wish I could have had the expertise and guidance of an IBI tech.... get one if you can and don't let them leave until they get MRE migrated, a Report scheduled, and a Dev Studio App migrated and running...
December 16, 2004, 02:53 PM
susannah
and i second webfocuspgm's motion...make sure all the functionality is tested before they leave.
A good techrep is worth his/her weight in gold.
December 21, 2004, 08:23 AM
<Grzegorz>
There are some differences with displaying graphs in 5.3 and the previous versions.

1. The graph legend by default was placed on the right side of the graph frame, and in 5.3 it is displayed below the frame, so it may cause the legend to clash with the chart after upgrading.
The solution is to use the new setting of the graph API: setLegendPosition(2); - it should display the legend on the right side again.

2. When you use graphs displayed as the HTMLTABLE on the HTMLFORM template, the graphs may not be displayed at all. The solution is to set the CGI variable WF_BURST_OUTPUT to OFF. In order to use the same code both in 5.3 and an older version, place it at the beginnig of the FEX:

-IF &FOCREL LT 'R72053' THEN GOTO :PRE53;
-TYPE WEBFOCUS CGIVAR WF_BURST_OUTPUT=OFF
-:PRE53


It is not a big issue, as it is easy to right the script or program for automating the FOCUS code changes. WebFOCUS report logic is just the text, so it is easy to modify or generate it automatically.