Skip to content

Added new kb article fixing-licensing-issues-upgrading-telerik-reporting-19-1-25 #1737

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
title: Upgrading to 19.1.25.521 Breaks Project Due to Licensing Issues
description: Learn how to resolve project issues after upgrading to Telerik Reporting 19.1.25.521, including browser caching problems and deployment concerns.
type: how-to
page_title: Fixing Licensing Issues After Upgrading to Telerik Reporting 19.1.25.521
meta_title: Fixing Licensing Issues After Upgrading to Telerik Reporting 19.1.25.521
slug: fixing-licensing-issues-upgrading-telerik-reporting-19-1-25
tags: telerik-reporting, licensing, cache, incognito, hard-refresh, edge-browser, deployment, nuget
res_type: kb
ticketid: 1690549
---

## Environment

<table>
<tbody>
<tr>
<td> Product </td>
<td> Progress® Telerik® Reporting </td>
</tr>
<tr>
<td> Version </td>
<td> 19.1.25.521 </td>
</tr>
</tbody>
</table>

## Description

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.

## Solution

To resolve the issue, follow these steps:

1. Perform a hard refresh by pressing `CTRL+F5` in the Edge browser.
1. If the hard refresh doesn’t work:
- Open the browser's DevTools (`F12` or right-click and select "Inspect").
- Navigate to the "Network" tab.
- Check the "Disable cache" checkbox.
- Restart the browser and perform another hard refresh (`CTRL+F5`).
1. Verify that all JavaScript resources are returned with a status code 200, indicating no cache usage.

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:

```html
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js?v=1.1"></script>
<script src="_content/Telerik.ReportViewer.BlazorNative/js/reporting-blazor-viewer.js?v=1.1"></script>
```

This forces browsers to reload the updated files.

## See Also

* [Setting Up Your Telerik Reporting License Key]({%slug license-key%})
* [Frequently Asked Questions]({%slug license-frequently-asked-questions%})
* [Errors and Warnings in Telerik Reporting Licensing]({%slug license-errors-and-warnings%})