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.
- Wrong version of PHP
- 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.

Here is the screenshot of the 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

– ratul keot Dec 04 '17 at 04:41Warning: ini_get() expects exactly 1 parameter, 2 given in C:\wamp64\www\project\setup\src\Magento\Setup\Model\PhpRe adinessCheck.php on line 192PhpReadinessCheck.php& over there on line number 192 put this thing$currentMemoryLimit = ini_get('memory_limit');– Abhishek Tripathi Dec 04 '17 at 04:54$currentMemoryLimit = ini_get('memory_limit', '2048M');to$currentMemoryLimit = ini_get('memory_limit');but still not working. I am having the same issue. And also I have completed the previous steps successfully. – ratul keot Dec 04 '17 at 08:43info.phpon your server & see there which version it is showing there run this command in your cmd & see whether it is showing any errorphp bin/magento setup:di:compile -vvv– Abhishek Tripathi Dec 04 '17 at 10:11php bin/magento setup:di:compile -vvvnever completes – ratul keot Dec 05 '17 at 08:14php bin/magento setup:upgrade&php bin/magento setup:static-content:deploy– Abhishek Tripathi Dec 05 '17 at 08:20setup:di:compilecommand as I directed on above. it will run till 7 messages if all are set then you are ready to go – Abhishek Tripathi Dec 05 '17 at 09:18