FAQ/Izenda-Update-Best-Practices.md
... ...
@@ -22,4 +22,40 @@
22 22
5) Compare customized files from Step #1 to new updated files and merge over your customizations to the new files, starting with the global.asax and connection info (if contained somewhere besides the global). Move over customizations one at a time, testing each.
23 23
24 24
_See Also:_
25
-[[How-do-I-upgrade-my-6-7-RI-with-a-6-8-DLL]]
... ...
\ No newline at end of file
0
+[[How-do-I-upgrade-my-6-7-RI-with-a-6-8-DLL]]
1
+
2
+##Upgrading Beyond Version 6.10.0.16
3
+
4
+1A) Download the FULL RI Downloads RI Link from (http://archives.izenda.us)[http://archives.izenda.us]
5
+
6
+1B) If you are upgrading from an older version of Izenda and do not want to download the full RI, you can use the RI as a reference.
7
+
8
+It is critical to update your resource links per this example:
9
+
10
+link rel = "stylesheet" type = "text / css" href = "./ rp.aspx? extres = components.vendor.bootstrap.css.bootstrap.min.css"
11
+
12
+2) Unzip and copy the bin and resources to the corresponding website folders as would be done in a standard upgrade.
13
+
14
+3) Locate the rp.aspx page in the extracted folder. For MVC Kits this is in the Reporting folder. In Webforms and VB this is located in the root of the extracted folder.
15
+
16
+4) Copy the new rp.aspx page to all locations in your implementation containing the rs.aspx page (please ensure you search as some implementations have more than one location for this file.
17
+
18
+5) Locate the default.master page in Webforms or VB kit and _SiteLayout.cshtml in MVC kits. Find the following line:
19
+
20
+<script type="text/javascript" src="Resources/js/main.js"></script>
21
+
22
+Replace with the following:
23
+
24
+<script type="text/javascript" src="./rp.aspx?js=AdHocQuery"></script>
25
+
26
+This is REQUIRED as the main.js file is no longer included in the kit, and if this is not replaced there will be errors when you try to run the site.
27
+
28
+6) Find and replace all references to ./rs.aspx wtih ./rp.aspx (this is not required but making these changes will improve the loading speed for resources on the pages - this change removes blocking issues faced with resources loading)
29
+
30
+7) Replace:
31
+
32
+<link rel="stylesheet" href="Resources/css/main.css" type="text/css" />
33
+
34
+With the following:
35
+
36
+<link rel="stylesheet" href="./rp.aspx?extres=css.main.css" type="text/css" />
... ...
\ No newline at end of file