Hi,
i dont know Edit Logic Hook is supported in sugarcrm Version 5.5.0.
i m getting this in admin page
so anyone help me to solve this issues
thanks in advance![]()
Hi,
i dont know Edit Logic Hook is supported in sugarcrm Version 5.5.0.
i m getting this in admin page
so anyone help me to solve this issues
thanks in advance![]()
Regards
==========================
akkimca
Work as Sugarcrm Freelancer
Feel free to Find me in skype. Its my pleasure to talk with you.
ID: akshay.biztech
I think I need more info before answering.
Exactly where did this come from and what are you trying to do?
Are you saying you have a logic hook and something got messed up in 5.5?
Not I have had nothing but problems so far trying to get 5.2 to upgrade to 5.5 with all my studio customizations. In this case that might be your problem.
Let us know some more details and I can try to help,
PAris
ohhhhhh
ok i tell u step by step
i want to install this module in my sugarcrm version 5.5.0
http://www.sugarforge.org/projects/editlogichooks
after installing this module i m getting this screen in admin panel at bottom
so pls help![]()
Regards
==========================
akkimca
Work as Sugarcrm Freelancer
Feel free to Find me in skype. Its my pleasure to talk with you.
ID: akshay.biztech
May be something changed in 5.5 that broke this module. Have you tried the forums and emailing the developer to make sure its 5.5 compatible?
Hadn't seen this little module. May try it myself.
For creating logic hooks there is no reason you can't do this by hand as well. There are very good instruction int he Wiki and on the developers site. In fact you can copy the examples and make minor editing and use as is. (of course less the code you want for the hook!)
Will let you know if I have problems as well.
Paris
Yep getting the same issue. Wonder if its because I already have some logic hooks in play. Will post to his forum and send an email. Will let you know what I find out.
thanks PAris
The layout for the admin menus changed in 5.2 and my module has 5.2 hardcoded in the code to cater for it.
Find my admin menu extension in custom/modules/Adminitration/Ext/Administration and custom/Extension/modules/Administration/Ext/Administration and change 5.2 to 5.5
M
--
Marnus van Niekerk
There are only 10 types of people in the world
those who can read binary and those who don't
Modules:
CE Teams - Upgrade safe teams module for Community Edition
FieldACL - Field Level Access Control for Community Edition
EditLogicHooks - Create and edit Logic Hooks from the Admin GUI
FlexibleChartDashlet - Display any data in a Dashlet Chart
DocumentThumbnails - Thumbnails for Documents module
Many questions can be answered by reading the Developers Manual
Tried several things still not working. BTW The same author has a teams module I was testing. This edit does work for that. Still getting that funny stuff on the screen with dead links.
Emailing the author again,
Paris
Paris Templin, CEO
Templin Computing LLC- Washington State based IT and Onlne Backup Specialiosts. We specialize in providing CRM and backup solutions to small and medium businesses.
http://www.templincomputing.net
Ther are only some simple layout changes in the building of admin menus in version 5.5.
Just change the module elhAdmin.menu.php
in the package to
PHP Code:<?php
$admin_option_defs = array();
if ($sugar_config['sugar_version'] = 5.2)
$admin_option_defs['Administration']['elhAdmin'] = array(
'themes/default/images/Repair', 'LBL_ELH_ADMIN', 'LBL_ELH_ADMIN_DESCRIPTION', './index.php?module=Administration&action=editLogicHooks'
);
else if ($sugar_config['sugar_version'] >= 5.5)
$admin_option_defs['Administration']['elhAdmin'] = array(
'Repair', 'LBL_ELH_ADMIN', 'LBL_ELH_ADMIN_DESCRIPTION', './index.php?module=Administration&action=editLogicHooks'
);
else
$admin_option_defs['elhAdmin'] = array(
'themes/default/images/Repair', 'LBL_ELH_ADMIN', 'LBL_ELH_ADMIN_DESCRIPTION', './index.php?module=Administration&action=editLogicHooks'
);
if ($sugar_config['sugar_version'] >= 5.2)
$admin_group_header[] = array('ELH_ADMIN_TITLE','',false,$admin_option_defs,'ELH_ADMIN_DESC');
else
$admin_group_header[] = array('ELH_ADMIN_TITLE','',false,array('Administration' => $admin_option_defs),'ELH_ADMIN_DESC');
?>
Last edited by kuske; 2010-02-22 at 06:58 AM.
Harald Kuske
Pre-Sales Engineer Central Europe
SUGARCRM Deutschland GmbH
Erika-Mann-Str. 53, 80636 Munich, Germany
Email: hkuske@sugarcrm.com
Home: http://www.sugarcrm.com
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks