cancel
Showing results for 
Search instead for 
Did you mean: 

Flash Install error

SOLVED

Flash Install error

I have same issue as same as 

 

https://community.magento.com/t5/Installing-Magento-2-x/Installing-Magento-2-Installation-Problem-in-Magento/td-p/42036

 

 i already tried 

 

Locate the max_execution_time setting.
Change its value to 18000.
tried stop httpd and start httpd..

 

still the same, it stopped at 

Installing... 66%

 
====
 
Module 'Magento_ConfigurableSampleData':
Installing data... 
 
====
already wait for 20 mins.....
 
any idea to fix it ?
1 ACCEPTED SOLUTION

Accepted Solutions

Re: Flash Install error

Hi @chris_chiu

 

Looks like you have only increase max_execution_time , but you actually need to increase memory_limit as well !

 

Generally this kind of issue occurs when max_input_time  and memory_limit is not set properly, below is the configuration which is needed !

 

In your php.ini file increase values of below parameters.

 

  • max_execution_time = 18000
  • max_input_time = 1800
  • memory_limit = 1024M

Note : Make sure you increase max_input_time value to at least 1800 and it will works !! 

if issue solved,Click Kudos & Accept as Solution

View solution in original post

2 REPLIES 2

Re: Flash Install error

Please follow this blog from Magento forums,

https://community.magento.com/t5/Installing-Magento-2-x/Magento-2-installation-stuck-at-66/td-p/2825...

Might be helpful for you.

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Flash Install error

Hi @chris_chiu

 

Looks like you have only increase max_execution_time , but you actually need to increase memory_limit as well !

 

Generally this kind of issue occurs when max_input_time  and memory_limit is not set properly, below is the configuration which is needed !

 

In your php.ini file increase values of below parameters.

 

  • max_execution_time = 18000
  • max_input_time = 1800
  • memory_limit = 1024M

Note : Make sure you increase max_input_time value to at least 1800 and it will works !! 

if issue solved,Click Kudos & Accept as Solution