• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Improve this Doc
Show / Hide Table of Contents

Troubleshooting: Incomplete Content Localization

DNN Version: 09.02.00
12/08/2019 • 1 minute to read
Contributors  david-poindexter
12/08/2019  • 1 minute to read  • Contributors  david-poindexter

Symptom

After enabling localization, only some content is localized.

Possible Cause

The localization process timed out during the conversion.

Solution

  1. Back up the site and the database.

  2. Go to Persona Bar > Settings > SQL Console.

  3. 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.

  4. 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.

  5. Recycle the application pool to allow the changes to take effect.

  6. Rerun the localization process.

How to: Increase the Maximum File Size for UploadError: Login IP Filtering Is Currently DisabledError: Another User Has Taken Action on the PageError: Unknown Server Tag - DNNComboBoxError: Could not load file or assembly 'AWSSDK' or one of its dependenciesError: SQL TimeoutError: ArgumentNullException After a Move or an UpgradeTroubleshooting: Missing Resources After An UpgradeTroubleshooting: Mixed-Content Warnings When Using SSL OffloadingTroubleshooting: Profile Image Not ShownTroubleshooting: Page Remains in Draft ModeTroubleshooting: Unable to Remove Page Redirect URLsTroubleshooting: Site Theme Does Not LoadTroubleshooting: Missing Persona Bar
Back to top by the community, for the community... #DNNCMS