How to solve below error while installing mageno 2.3.3
( ! ) Fatal error: Allowed memory size of 792723456 bytes exhausted (tried to allocate 8791285815144 bytes) in C:\wamp64\www\Mage2\vendor\paragonie\sodium_compat\lib\namespaced.php on line 46
Hello @Aveeva
Please install it from the command line as below:
php bin/magento setup:install --base-url="http://localhost/mag233sample/" --db-host="localhost" --db-name="mag233sample" --db-user="root" --admin-firstname="admin" --admin-lastname="admin" --admin-email="admin@admin.com" --admin-user="admin" --admin-password="admin123" --language="en_US" --currency="INR" --timezone="America/Chicago" --use-rewrites="1" --backend-frontname="admin"
You can modify the arguments as per your requirements.
Hope it helps.
@Meetanshi Yes, here is my commands,
php bin/magento setup:install --base-url=http://localhost/magento2 --db-host=localhost --db-name="magento2" --db-user="root" --db-password="" --admin-firstname="abc" --admin-lastname="abc" --admin-email=abc@gmail.com --admin-user="magento2" --admin-password="magento2123" --language="en_US" --currency="INR" --timezone="Asia/Kolkata" --use-rewrites="1"
After successful install then i will see this error, How can i solve the error?
Hey @Aveeva
Did you run the below commands after installation?
php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento cache:flush php bin/magento cache:clean
Also, how much is your memory limit?
Hello @Aveeva
Please refer the below URL:
Thanks.