skip to Main Content

I have PHP Version 7.0.21 and working Magento 2 installed memory_limit= 2000M.

However i get Readiness Check error:
Your current PHP memory limit is 128M. Magento 2 requires it to be set to 756M or more. I have already changed limit to 2000M

And when i want to use SSH to do anything i get:
Magento supports PHP 5.6, 7.0.2, and 7.0.6 or later. See here

Any idea how is this possible?

2

Answers


    1. Have you changed the memory limit value in your php.ini file, and did you restart apache/nginx then?
    2. If you did so, make sure you edited the ini file that php actually uses. You can locate the file by inserting <?php phpinfo(); exit(); ?> on top of your index.php and reading the output
    Login or Signup to reply.
  1. please set your memory_limit=4000 in php.ini and then restart
    apache and mysql services

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