One of the big ones (fortunately easy to fix) was that the Sitecore package for WFFM for the processing server was invalid and giving us lots of errors when spinning up a new environment. It only has the following:
<parameters>
<parameter name="Application Path" tags="iisapp">
<parameterEntry type="ProviderPath" scope="iisapp" match="WebSite" />
</parameter>
<parameter name="Reporting Admin Connection String" tags="Hidden, SQLConnectionString, NoStore">
<parameterEntry type="ProviderPath" scope="dbfullsql" match="Content\\Website\\Data\\WFFM_Analytics\.sql$" />
</parameter>
</parameters>
However this does not include the parameters necessary to restore the 2 included .dacpac files inside the package. It should contain:
<parameters>
<parameter name="Application Path" tags="iisapp">
<parameterEntry type="ProviderPath" scope="iisapp" match="WebSite" />
</parameter>
<parameter name="Core Admin Connection String" tags="Hidden, SQLConnectionString, NoStore">
<parameterEntry type="ProviderPath" scope="dbDacFx" match="core.dacpac" />
</parameter>
<parameter name="Master Admin Connection String" tags="Hidden, SQLConnectionString, NoStore">
<parameterEntry type="ProviderPath" scope="dbDacFx" match="master.dacpac" />
</parameter>
<parameter name="Reporting Admin Connection String" tags="Hidden, SQLConnectionString, NoStore">
<parameterEntry type="ProviderPath" scope="dbfullsql" match="Content\\Website\\Data\\WFFM_Analytics\.sql$" />
</parameter>
</parameters>
You can simply unzip -> edit -> re-zip the files, and you should be good to go.
I have confirmed this with sitecore support who have provided the issue reference number 193329.
I have also raised a pull request in the quickstart templates for when the fixed packages are released by Sitecore.
No comments:
Post a Comment