After upgrade to 12.* version we are facing problem with package deployment using module loader

Hi ALL,

After upgrade to 12.* version we are facing problem with package deployment using module loader.

If we try deploy the package then stuck at 99% and if we check in module loader package shows in installed list.

Can anyone suggest what will be root cause for this issue?

Thanks,

Shreya

Parents
  • In my experience, when you get that far, it's often the Repair and Rebuild that gets stuck due to file permissions.

    I use the following from Sugar root to set all directories to 775 and all files to 664 from the sugar root down:

    sudo chown -R  apache:apache * 
    sudo find . -type d -exec chmod 775 {} \;
    sudo find . -type f -exec chmod 664 {} \;
    

    It resets all the permissions, then I can proceed.

    I have always used command line to upgrade, but I'm sure that the Admin panel also builds a log. You may want to find that log and see where your upgrade stops just to verify what error you get. Also check the usual suspects: the sugar log and the php log. 

    Francesca

Reply
  • In my experience, when you get that far, it's often the Repair and Rebuild that gets stuck due to file permissions.

    I use the following from Sugar root to set all directories to 775 and all files to 664 from the sugar root down:

    sudo chown -R  apache:apache * 
    sudo find . -type d -exec chmod 775 {} \;
    sudo find . -type f -exec chmod 664 {} \;
    

    It resets all the permissions, then I can proceed.

    I have always used command line to upgrade, but I'm sure that the Admin panel also builds a log. You may want to find that log and see where your upgrade stops just to verify what error you get. Also check the usual suspects: the sugar log and the php log. 

    Francesca

Children