cancel
Showing results for 
Search instead for 
Did you mean: 

Intallation stucked at 64% on step Module 'Magento_DownloadableSampleData':

Intallation stucked at 64% on step Module 'Magento_DownloadableSampleData':

Hello, im installing magento 2.3.2 with sample data and it get frezzed on 64%. im using php 7.2 and max_execution_time = 18000Captura.PNG

 

 

 

any solution?

4 REPLIES 4

Re: Intallation stucked at 64% on step Module 'Magento_DownloadableSampleData':

Hi @victor_salgado,

This issue came due to memory limit issue.

You can increase memory limit and max execution time on the server.

Set memory_limit = 4096M

Or you can bypass memory limit by "-1"

For workaround you can add following lines in the index.php of the Magento root folder.

ini_set("memory_limit",-1);
ini_set("max_execution_time",-1);

I hope it will help you!

Re: Intallation stucked at 64% on step Module 'Magento_DownloadableSampleData':

It does not work for me. it still on 64%

Re: Intallation stucked at 64% on step Module 'Magento_DownloadableSampleData':

Have you set memory limit on the server?

Some time server not allowed to bypass using index.php.

You can set on server once and restart the server.

https://devdocs.magento.com/guides/v2.3/install-gde/trouble/php/tshoot_70pct.html


Option 2:
You can install Magento without sample data, then you can install sample data using command line.

bin/magento sampledata:deploy

https://devdocs.magento.com/guides/v2.3/install-gde/install/cli/install-cli-sample-data.html

I hope it will help you!

Re: Intallation stucked at 64% on step Module 'Magento_DownloadableSampleData':

@victor_salgado, did it work for you?