Hi @hjimene3.
It sounds like you didn't add the extension import policy to the correct location in platform-settings.json. If should be under PlatformSettingsConfig as in this example:
{
"PlatformSettingsConfig": {
"AdministratorUserSettings": {
"InitialPassword": "PtC@1234567890"
},
"ContentTypeSettings": {
"supportedMediaEntityContentTypes": [
"image/svg+xml",
"image/png",
"image/gif",
"image/bmp",
"image/jpeg",
"application/pdf",
"image/vnd.microsoft.icon"
]
}
},
"ExtensionPackageImportPolicy": {
"importEnabled": true,
"allowJarResources": true,
"allowJavascriptResources": true,
"allowCSSResources": true,
"allowJSONResources": true,
"allowWebAppResources":true,
"allowEntities": true,
"allowExtensibleEntities": true
},
"PersistenceProviderPackageConfigs": {
"MssqlPersistenceProviderPackage": {
"ConnectionInformation": {
"driverClass": "com.microsoft.sqlserver.jdbc.SQLServerDriver",
"jdbcUrl": "jdbc:sqlserver://localhost:1433;databaseName=thingworx;applicationName=Thingworx;",
"password": "twadmin@12345",
"username": "twadmin"
}
}
}
}
If it's a syntax error, you can validate the syntax in platform-settings.json at this site, or provide your platform-settings.json here for review.
Regards.
--Sharon