Troubleshooting: Incomplete Content Localization
DNN Version: 09.02.00
Symptom
After enabling localization, only some content is localized.
Possible Cause
The localization process timed out during the conversion.
Solution
Back up the site and the database.
Go to Persona Bar > Settings > SQL Console.
Delete the culture code of the aborted localization process.
Run the following SQL script:
DELETE FROM Tabs WHERE CultureCode = 'xx-XX';
where xx-XX is the culture code of the added language.
Disable content localization for the site.
Run the following SQL script:
UPDATE Tabs SET CultureCode = NULL; UPDATE PortalSettings SET SettingValue = 'False' WHERE SettingName = 'ContentLocalizationEnabled' AND PortalID = xx;
where xx is the ID of the site for which localization was enabled.
Recycle the application pool to allow the changes to take effect.
Rerun the localization process.