Hi there.
I have installed Magento 2.3 on remote server, went to install extension and got error message saying i need to increase php memory limit- how do i do this?
kind regrads
Hi @luke_mersh,
Add the following line in index.php of the root folder.
ini_set("memory_limit","-1");
OR
You try once using inline memory with commands:
php -d memory_limit=-1 bin/magento
I hope it will help you!
Hello @luke_mersh
You can increase it via .htaccess. please add below code in your .htaccess file
php_value memory_limit 1024M
Problem solved?? please Accept as Solution & give Kudos
Thank you
Anant P