Skip to content

Commit 50b75c1

Browse files
github-actions[bot]KB BotIvetNikolovatodorarabadzhiev
authored
Added new kb article fixing-licensing-issues-upgrading-telerik-reporting-19-1-25 (#1737)
* Added new kb article fixing-licensing-issues-upgrading-telerik-reporting-19-1-25 * Update fixing-licensing-issues-upgrading-telerik-reporting-19-1-25.md * Update fixing-licensing-issues-upgrading-telerik-reporting-19-1-25.md --------- Co-authored-by: KB Bot <[email protected]> Co-authored-by: IvetNikolova <[email protected]> Co-authored-by: Todor Arabadzhiev <[email protected]>
1 parent 8717dd0 commit 50b75c1

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
title: Upgrading to 19.1.25.521 Breaks Project Due to Licensing Issues
3+
description: Learn how to resolve project issues after upgrading to Telerik Reporting 19.1.25.521, including browser caching problems and deployment concerns.
4+
type: how-to
5+
page_title: Fixing Licensing Issues After Upgrading to Telerik Reporting 19.1.25.521
6+
meta_title: Fixing Licensing Issues After Upgrading to Telerik Reporting 19.1.25.521
7+
slug: fixing-licensing-issues-upgrading-telerik-reporting-19-1-25
8+
tags: telerik-reporting, licensing, cache, incognito, hard-refresh, edge-browser, deployment, nuget
9+
res_type: kb
10+
ticketid: 1690549
11+
---
12+
13+
## Environment
14+
15+
<table>
16+
<tbody>
17+
<tr>
18+
<td> Product </td>
19+
<td> Progress® Telerik® Reporting </td>
20+
</tr>
21+
<tr>
22+
<td> Version </td>
23+
<td> 19.1.25.521 </td>
24+
</tr>
25+
</tbody>
26+
</table>
27+
28+
## Description
29+
30+
After upgrading to Telerik Reporting version 19.1.25.521, the project fails due to licensing issues. The problem is specific to the Edge browser and is resolved in incognito mode. Hard-refreshing the browser resolves the issue, but concerns arise about users encountering caching problems after deployment. You want to ensure that the browser loads the latest JavaScript files without caching old resources.
31+
32+
## Solution
33+
34+
To resolve the issue, follow these steps:
35+
36+
1. Perform a hard refresh by pressing `CTRL+F5` in the Edge browser.
37+
1. If the hard refresh doesn’t work:
38+
- Open the browser's DevTools (`F12` or right-click and select "Inspect").
39+
- Navigate to the "Network" tab.
40+
- Check the "Disable cache" checkbox.
41+
- Restart the browser and perform another hard refresh (`CTRL+F5`).
42+
1. Verify that all JavaScript resources are returned with a status code 200, indicating no cache usage.
43+
44+
To avoid similar problems for end-users after deployment, use a cache-busting technique by appending a query string (e.g., version or timestamp) to the script URLs. For example:
45+
46+
````html
47+
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js?v=1.1"></script>
48+
<script src="_content/Telerik.ReportViewer.BlazorNative/js/reporting-blazor-viewer.js?v=1.1"></script>
49+
````
50+
51+
This forces browsers to reload the updated files.
52+
53+
## See Also
54+
55+
* [Setting Up Your Telerik Reporting License Key]({%slug license-key%})
56+
* [Frequently Asked Questions]({%slug license-frequently-asked-questions%})
57+
* [Errors and Warnings in Telerik Reporting Licensing]({%slug license-errors-and-warnings%})

0 commit comments

Comments
 (0)