Magento 2 – Fixing Wrong PHP Version Display

extensionslocalhostmagento2PHP

I am new to Magento.
I have installed Magento 2.1.10 successfully and now I am trying to install extension to it. I got a free extension from the market place and while installing it, I am finding the following error in the readiness check.

  1. Wrong version of PHP
  2. PHP Settings Check *

Your current PHP memory limit is 128M. Magento 2 requires it to be set
to 756M or more.

I have already set my memory_limit to 2G in the ini file.
Wamp Server selected version is 7.0.6

Here is the screenshot of the readiness page

readiness page

Here PHP version is 5.6.25, but my selected version is 7.0.6.
Please help me get ride of these errors. Any help/suggestion us appreciated. Thank you

Best Answer

Go to your Php.ini in your Wampp/Php folder & search for memory_limit set it to 2048M & save the file stop your Wampp server & restart the Wampp Server & try Again.

Be sure that after making your php version to 7.0.10 again restart your server.

For better information run your info.php file into your server & look for the active configurations are matching your requirements or not

Go to Magento Directory opened cmd/terminal there & Run these three commands in cmd/terminal. To run the cron separately.

Php bin/magento cron:run

php update/cron.php

php bin/magento setup:cron:run

Try to run the readiness check again.See for the reference Magento doesn't check php version

If still facing some problem feel free to ask

Thank You!

Related Topic