skip to Main Content

I am experiencing an error in the Magento 2.3.3 module manager when I want to enable the plugin (extension) error, the following picture:

enter image description here

I have tried to increase memory_limit and see other references but have not found the right answer

system operasi : windows 10 64bit

PHP Version 7.3.11

2

Answers


  1. After making changes into php.ini file, please stop and restart server. You have to clear cookies of browser as well.

    For missing php extensions

    Go to your php root folder,

    Simply copy all icu* * * *.dll files:

    from

    C:xamppphp

    to

    C:xamppapachebin

    intl extension will start working!!!

    Restart server as well if it doesn’t work.

    Login or Signup to reply.
  2. Yes! after googling I got the success both in windows and linux (Ubuntu). I need to run the cron, before try to install module in magento.

    Open terminal and enter the following line in the terminal.

    cd <magento_root_directory>
    

    then execute the following 3 commands in terminal.

    php bin/magento cron:run
    
    php update/cron.php
    
    php bin/magento setup:cron:run
    

    Then try to install the module from magento 2.3 admin panel.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search