skip to Main Content

I am using latest Rewardspoint module for magento2 and it display me blank checkout page. When I checked the system.log then it show me this error;

[2018-10-12 04:06:11] main.CRITICAL: Source class “MagestoreRewardpointsModelPluginQuoteCartCartTotalInterface” for “MagestoreRewardpointsModelPluginQuoteCartCartTotalRepository” generation does not exist. [] []

Both of the above directories do not exist in rewardspoint module.

2

Answers


  1. Chosen as BEST ANSWER

    I got the problem. MagePlaza Core module was not compatible to latest RewardsPoints module. After upgrading MagePlaza Core module, problem resolved. https://github.com/mageplaza/module-core


  2. Can try to run the following script first to see to problem solve or not.

    If the problem still exist, i will update the answer.

    rm -rf var/di
    rm -rf var/cache
    rm -rf var/generation
    rm -rf var/page_cache
    
    php bin/magento setup:upgrade
    php bin/magento setup:di:compile
    php bin/magento cache:clean
    php bin/magento cache:flush
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search