Manifest should contain name(installdefs[id] or manifest[name])

Hi,

I'm getting this text when trying to upload the custom module:

$manifest = array( 'key' => 1, 'name' => 'Accounts Types', 'description' => 'Example Description', 'author' => 'CompanyNet', 'version' => '10.2.0', 'is_uninstallable' => true, 'published_date' => '2020-10-14 15:24:00', 'type' => 'module', 'acceptable_sugar_versions' => array( 'exact_matches' => array( '10.2.0' ), //or 'regex_matches' => array( '10.*' //any 10.0 release ), ), 'acceptable_sugar_flavors' => array( 'PRO', 'ENT', 'ULT' ), 'readme' => '', 'icon' => '', 'remove_tables' => '', );$manifest = array( 'key' => 1, 'name' => 'Accounts Types', 'description' => 'Example Description', 'author' => 'CompanyNet', 'version' => '10.2.0', 'is_uninstallable' => true, 'published_date' => '2020-10-14 15:24:00', 'type' => 'module', 'acceptable_sugar_versions' => array( 'exact_matches' => array( '10.2.0' ), //or 'regex_matches' => array( '10.*' //any 10.0 release ), ), 'acceptable_sugar_flavors' => array( 'PRO', 'ENT', 'ULT' ), 'readme' => '', 'icon' => '', 'remove_tables' => '', );Manifest should contain name(installdefs[id] or manifest[name])

It seems to indicate there's a problem with manifest[name] but I can't see what. Can anyone help here please? Here's my manifest file:

$manifest = array(
'key' => 1,
'name' => 'Accounts Types',
'description' => 'Example Description',
'author' => 'CompanyNet',
'version' => '10.2.0',
'is_uninstallable' => true,
'published_date' => '2020-10-14 15:24:00',
'type' => 'module',
'acceptable_sugar_versions' =>
array(
'exact_matches' => array(
'10.2.0'
),
//or
'regex_matches' => array(
'10.*' //any 10.0 release
),
),
'acceptable_sugar_flavors' =>
array(
'PRO',
'ENT',
'ULT'
),
'readme' => '',
'icon' => '',
'remove_tables' => '',
);

Parents Reply Children