diff --git a/knowledge-base/fixing-licensing-issues-upgrading-telerik-reporting-19-1-25.md b/knowledge-base/fixing-licensing-issues-upgrading-telerik-reporting-19-1-25.md
new file mode 100644
index 000000000..6246eb761
--- /dev/null
+++ b/knowledge-base/fixing-licensing-issues-upgrading-telerik-reporting-19-1-25.md
@@ -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
+
+
+
+
+ Product |
+ Progress® Telerik® Reporting |
+
+
+ Version |
+ 19.1.25.521 |
+
+
+
+
+## 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
+
+
+```
+
+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%})