Setup Wizard installation stops at about 70%
During installation using the Setup Wizard, the process stops at about 70% (with or without sample data). No errors display on the screen.
One common issue is the PHP setting for max_execution_time
.
Solution:
If you encounter this error, we recommend you increase the value in php.ini
to 18000 (30 minutes). You can use a larger or smaller value if it helps.
- Locate your
php.ini
using aphpinfo.php
file. - As a user with
root
privileges, openphp.ini
in a text editor. - Locate the
max_execution_time
setting. - Change its value to
18000
. - Save your changes to
php.ini
and exit the text editor. -
Restart your web server.
Examples for Apache follow:
- CentOS:
service httpd restart
- Ubuntu:
service apache2 restart
- CentOS:
Find us on