Skip to main content

XTM Connect – Sitecore Administrator Guide

Enabling import of large content files

If large content files fail to import into XTM Cloud, this might be due to a setting in the Sitecore web.config configuration file. Adjust this setting, in the <appSettings> section, if required:

  1. Open the web.config configuration file and look in the <appSettings> section.

  2. Check whether it contains a maxmimeparts setting. This maxmimeparts setting controls the maximum number of MIME parts (images or other digital content) that can be imported into XTM Cloud, in a translation project. If the number of MIME parts in a translation content file exceeds the value set for maxmimeparts, the project that contains the file cannot be imported into XTM Cloud.

  • If the <appSettings> section contains a maxmimeparts setting, check which value is set.

    If it is low, change the value to "10000".

  • If the <appSettings> section does not contain a maxmimeparts setting, add one, and set its value to "10000". To do so, add the following code to the <appSettings> section:

<appSettings>
    ...
      <add key="microsoft:xmldictionaryreader:maxmimeparts" value="10000"/>
</appSettings>