this plugin says it's for 4.5.1 but when trying to install the module, it says the version is not supported. i looked in the manifest.php file and it only displays ver 5. is there any way to change the manifest so it will install to 4.5.1?
here's the url to the sugarexchange for the hearme plugin - http://www.sugarexchange.com/product...hp?product=606
here's the manifest.php contents:
// manifest file for information regarding application of new code
$manifest = array(
'acceptable_sugar_versions' => array (
'exact_matches' => array (0 => '5.0.0'),
'regex_matches' => array ( 0 => '5\\.0\\.0[a-z]')
),
'acceptable_sugar_flavors' => array (0 => 'PRO','CE','ENT'),
// name of new code
'name' => 'HearMe',
// description of new code
'description' => 'This module integrates HearMe with Sugar',
// author of new code
'author' => 'RPS Technology',
// date published
'published_date' => date("Y-m-d"),
// version of code
'version' => '1.31',
// type of code (valid choices are: full, langpack, module, patch, theme )
'type' => 'module',
// icon for displaying in UI (path to graphic contained within zip package)
'icon' => '',
// uninstallable
"is_uninstallable" => 'Yes',
);
$installdefs = array(
'id'=> 'HearMe',
'copy' => array(
array('from'=> '<basepath>/images/hearme.gif',
'to'=> 'themes/default/images/hearme.gif',
),
array('from'=> '<basepath>/modules/HearMe',
'to'=> 'modules/HearMe',
),
array('from'=> '<basepath>/modules/Meetings',
'to'=> 'modules/Meetings',
),
array('from' => '<basepath>/custom/modules/Meetings',
'to' => 'custom/modules/Meetings'
),
array('from' => '<basepath>/include/HearMe/DetailView.tpl',
'to' => 'include/SugarFields/Fields/HearMe/DetailView.tpl',
),
array('from' => '<basepath>/include/HearMe/EditView.tpl',
'to' => 'include/SugarFields/Fields/HearMe/EditView.tpl',
),
array('from' => '<basepath>/include/ssonhandler.php',
'to' => './ssonhandler.php',
),
),
'user_page' => array(
array(
'from' => '<basepath>/custom/UserPage/HearMe.php',
),
),
'menu' => array(
array(
'from' => '<basepath>/custom/menu/Home/menu.php',
'to_module' => 'Home',
),
array(
'from' => '<basepath>/custom/menu/Calls/menu.php',
'to_module' => 'Calls',
),
array(
'from' => '<basepath>/custom/menu/Dashboard/menu.php',
'to_module' => 'Dashboard',
),
array(
'from' => '<basepath>/custom/menu/Meetings/menu.php',
'to_module' => 'Meetings',
),
array(
'from' => '<basepath>/custom/menu/Tasks/menu.php',
'to_module' => 'Tasks',
),
array(
'from' => '<basepath>/custom/menu/Activities/menu.php',
'to_module' => 'Activities',
),
array(
'from' => '<basepath>/custom/menu/Calendar/menu.php',
'to_module' => 'Calendar',
),
),
'language' => array(
array(
'from' => '<basepath>/custom/language/en_us.Users.php',
'to_module' => 'Users',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Home.php',
'to_module' => 'Home',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Activities.php',
'to_module' => 'Activities',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Calendar.php',
'to_module' => 'Calendar',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Calls.php',
'to_module' => 'Calls',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Dashboard.php',
'to_module' => 'Dashboard',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Meetings.php',
'to_module' => 'Meetings',
'language' => 'en_us',
),
array(
'from' => '<basepath>/custom/language/en_us.Tasks.php',
'to_module' => 'Tasks',
'language' => 'en_us',
),
),
'beans'=> array(
array('module'=> 'HearMe',
'class'=> 'HearMe',
'path'=> 'modules/HearMe/HearMe.php',
'tab'=> false,
)
),
'custom_fields'=>array (
array (
'name'=> 'hearme',
'label'=>'Video Conference',
'type'=>'HearMe',
'require_option'=>'optional',
'default_value'=>'',
'ext1' => '',
'audited'=>0,
'module'=>'Meetings',
),
),
);


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks