Fixed! – SugarCRM – Module Loader blank page after installing module

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');

11 Responses to Fixed! – SugarCRM – Module Loader blank page after installing module

  1. chinmoy says:

    Thanks You. This code proved very useful for me.

  2. […] 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, […]

  3. Homepage says:

    … [Trackback]…

    […] Read More here: spamcollect.com/archives/142 […]…

  4. Robson says:

    VERY GOOD! Thanks!

  5. Gabriel says:

    Worked for mi, sugar 6.5.18. thanks

  6. Roger says:

    Thanks a lot very usefull!

  7. Jef says:

    Thanks for this useful information. It worked for me after I installed sugarcrm on another server and suddenly the problem appeared ….

  8. divya says:

    In sugarcrm 6.5 while installing new custom module , the below error is thrown – mode of operation not specified

  9. divya says:

    i cant install and uninstall any modules

  10. Quauhtli Martinez says:

    Thank you!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.