Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleInfo

This process must be repeated every time the Media Manager is updated.

During the installation process there are changes applied to the DAM database. For this reason it is strongly recommended to back up the database for the DAM Center before proceeding with running the installation script.

Before you can use the Media Manager, some an installation scripts script need to be applied to the DAM Center to accompany the installation. These can be found in the DigiZuite Media Manager DAM Center updates.zip archive. It :

  1. Copy the zip installation folder from swinstall, into the server and unzip the file
  2. The folder includes a "MediaManager.DbUpgrade" executable that is an all-in-one

...

  1. . You must specify a variety of configuration parameters in the accompanying MediaManager.DbUpgrade.exe.config file before running the executable

...

Note
titleNote
As this tool makes changes to the DAM database, remember to back up the database for the DAM Center before proceeding.

The configuration parameters are defined as XML keys. For all parameters aside from connectionString, the value property is the one containing the configurable value.

...

titleInfo

...

  1. script. 


The following is an example of a valid configuration:

Code Block
languagexml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <connectionStrings>
    <add name="db" connectionString="Server=8.8.8.8;Database=company_dam;User Id=administrator;Password=evK3GFn9LQVpm;#{dzDAMConnectionString}"/>
  </connectionStrings>
  <appSettings>
    <!-- JobService GenerateSearchForAll -->
    <add key="runGenerateSearchForAll" value="true"/>
    <add key="apiUrl" value="https://dam.company-site.net/dmm3bwsv3/#{APIURL}"/>
    <add key="apiUsername" value="System#{dzApiUsername}"/>
    <add key="apiPassword" value="e6662662a3f90aa497566c9b4a32f2f7#{dzApiPassword}"/>

    <!-- Standard/Required -->
    <add key="versionGuid" value="5DD9CE780b59c5cf-C555e3a9-4F904043-801Baedb-F89372756091fceaa4040d4c"/>
    <add key="availability" value="74A5A102-A310-4BB7-9E84-0B14C36436B2"/>
    <add key="usingEmbeddedScripts" value="true"/>
    <add key="timeoutInSeconds" value="1800"/>
  </appSettings>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
  </startup>
</configuration>


To configure this file for whatever installation you have, you will need to get some information about the DAM Center, as well as make some decisions based on what kind of installation you want. Here is a description of all the configuration parameters:

...