This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Flexera Community
- :
- App Broker
- :
- App Broker Knowledge Base
- :
- No Strings are Displayed on My Apps Page After Upgrade to App Portal 2017 R2
Subscribe
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
No Strings are Displayed on My Apps Page After Upgrade to App Portal 2017 R2
No Strings are Displayed on My Apps Page After Upgrade to App Portal 2017 R2
Summary
After upgrading to App Portal 2017 R2, no English strings are being displayed under the MyApps page.Symptoms
After upgrading to App Portal 2017 R2, no English strings are being displayed under the MyApps page... The following screen capture illustrates the missing strings:Cause
The App Portal installer inserts a duplicate string into the WD_localizations table, where the strings are stored. This duplicate string prevents the English strings from rendering properly on the page.Workaround
To work around the issue, it is necessary to delete the duplicate string. To delete the duplicate string, run the following query against the App Portal database.if ((SELECT COUNT(*) from WD_localizations where resourceid like 'AdminUninstall' and LocaleId = '') > 1) delete top(1) From WD_Localizations where resourceid like 'AdminUninstall' and LocaleId = ''
After deleting this string, it is necessary to perform an iisreset on the App Portal server.
No ratings