The error “component communityinstaller.enablefeaturesaction failed: not found at communityinstaller.installworkflow.
The error message suggests that the “enablefeaturesaction” component, which is required for the installation workflow, could not be found. This can happen for various reasons, such as invalid configuration, missing files, or incorrect dependencies.
To resolve this issue, you should check the following:
- Verify that the “enablefeaturesaction” component is correctly configured in the Community Installer tool.
- Make sure all the necessary files and dependencies are present for the installation.
- Check that the component is referenced correctly in the install workflow.
Here’s an example of how the configuration might look like in the Community Installer tool:
<communityInstaller>
<components>
<component id="enablefeaturesaction" type="MyNamespace.EnableFeaturesAction, MyAssembly">
<!-- Configuration options for the component -->
</component>
<!-- Other components -->
</components>
<workflows>
<workflow id="installworkflow">
<actions>
<action type="enablefeaturesaction">
<!-- Configuration options for the action -->
</action>
<!-- Other actions -->
</actions>
</workflow>
</workflows>
</communityInstaller>