I'm attempting to export a subsite from staging to production using powershell and export-spweb and import-spweb.
This worked just fine from staging to development.
When we try to run this on production, we get the following error:
Could not find Feature DataConnectionLibrary
We have disabled this feature on staging and tried again, but were are getting the same error message.
We're moving from Enterprise to Standard if that's of any consequence. And 2010 on both servers.
Thanks.
Update
I found this posting. Turns out that it really does matter when moving from enterprise to standard, even if you're not using the features.
I found this url:
It uses stsadm. In powershell, I have the following. Hopefully this helps someone else.
site collection level
Disable-SPFeature -url http://url -Identity IPFSSiteFeatures site collection level: not active anyway
Disable-SPFeature -url http://url -Identity PremiumSite Disable-SPFeature -url http://url -Identity BizAppsCTypes Disable-SPFeature -url http://url -Identity BizAppsFields Disable-SPFeature -url http://url -Identity ExcelServerSite subsite level
Disable-SPFeature -url http://url/subsite -Identity DataConnectionLibrary Disable-SPFeature -url http://url/subsite -Identity BizAppsSiteTemplates Disable-SPFeature -url http://url/subsite -Identity ReportListTemplate Disable-SPFeature -url http://url/subsite -Identity PremiumWeb subsite level: not active anyway
Disable-SPFeature -url http://url/subsite -Identity BizAppsListTemplates Disable-SPFeature -url http://url/subsite -Identity IPFSWebFeatures