cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2.3.1 with sample data stuck at 0%

SOLVED

Magento 2.3.1 with sample data stuck at 0%

Hello,

 

I have tried to install magento 2.3.1 with sample data but when i go to install option it's stuck at 0% without showing any error.

 

Advanced option shows look like : -

 

Starting Magento installation:
File permissions check...
Required extensions check...
Enabling Maintenance Mode...
Installing deployment configuration...

 

Console log display in loop these 2 URL : -

http://magento.hypeinnovaties.com/setup/index.php/session/prolong

 

I have increased

execution time : 36000

memory limit : 128M

 

On my Localhost it's working fine but on my webmin server it's stuck now.

 

I have installed all extension and check all permission and all are fine but how to resolved this issue please help me.

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento 2.3.1 with sample data stuck at 0%


Use the following commands:

php bin/Magento cache:flush
php bin/magento indexer:reindex

View solution in original post

7 REPLIES 7

Re: Magento 2.3.1 with sample data stuck at 0%

Hi @j_g5,

Add following lines into index.php and try. 

ini_set('memory_limit','-1');
ini_set('max_execution_time', 0);

 

BTW for magento2 you should have memory_limit 4096M.

 

Or you can install sample data after magento installation using terminal commands. 

bin/magento sampledata:deploy

for more info:
https://devdocs.magento.com/guides/v2.3/install-gde/install/sample-data-after-composer.html

I hope it will help you!

Re: Magento 2.3.1 with sample data stuck at 0%

Thanks Vimal For your Response ! ! !

 

I have migrate magento2.3 from local to server after install all extension and module on server and done bridge connection from local to server domain. all site working fine now with default theme.

 

when i go to checkout page after added any product in cart then checkout page display many (More then 100 time in each row) shipping method with $0 price.

 

When i installed it same database and same files on local xampp then all are working fine.

 

Anyone can help me to resolving this issue. I have attached visual reference here please check: https://take.ms/JaYfx

 

All suggestion are welcome !!!

Re: Magento 2.3.1 with sample data stuck at 0%

Is above solution works for you?

For the multiple shipping row, may be there are some issue with quote while import.

Try once cache flush and reindexing.

Try once with different account and different products in browser private window.

Re: Magento 2.3.1 with sample data stuck at 0%

Thanks for reply

 

I'm not try your solution because yesterday i have import all data from local to server.

 

can you please let me know how to re indexing and flush cache because i have used it from admin dashboard but not works for me. may be CLI work but i dont have proper commands.

 

Thanks

Re: Magento 2.3.1 with sample data stuck at 0%


Use the following commands:

php bin/Magento cache:flush
php bin/magento indexer:reindex

Re: Magento 2.3.1 with sample data stuck at 0%

Hello

 

php bin/Magento cache:flush
php bin/magento indexer:reindex

 

When i use those command then i'm facing error on SSH/CLI

"An exception was raised while creating "Request"; no instance returned"

can you let me know why it's showing i have used php 7.2 version

Re: Magento 2.3.1 with sample data stuck at 0%

php -d memory_limit=-1 bin/magento sampledata:deploy
php -d memory_limit=-1 bin/magento setup:upgrade