This took me a while till I found a solution. The module builder in SugarCRM seems to have a bug. Whenever you install something using the module loader, the system seems to kind of crash. The module loader page is not showing anything any more except the saying “Module Loader”. This seems to be a bug in all 6.2.x versions.
I found a solution here.
Goto the file ModuleInstall/PackageManager/PackageManager.php and edit line 668.
change:
$target_manifest = remove_file_extension( $upgrade_content ) . '-manifest.php';
to:
$target_manifest = UploadFile::realpath(remove_file_extension( $upgrade_content ) . '-manifest.php');
[…] http://www.spamcollect.com/archives/142 […]
Thanks You. This code proved very useful for me.
[…] I remembered a singular forum post which ultimately directed me to a technical blog, Spam Collect, Fixed! – SugarCRM – Module Loader blank page after installing module. This directed to a minor change at line 668 of ModuleInstall/PackageManager/PackageManager.php, […]
… [Trackback]…
[…] Read More here: spamcollect.com/archives/142 […]…
VERY GOOD! Thanks!
Worked for mi, sugar 6.5.18. thanks
Thanks a lot very usefull!
Thanks for this useful information. It worked for me after I installed sugarcrm on another server and suddenly the problem appeared ….
In sugarcrm 6.5 while installing new custom module , the below error is thrown – mode of operation not specified
i cant install and uninstall any modules
Thank you!