Installation gets Stuck at importing the database for englis

Install and configure FormaLMS and DoceboCE
User avatar
canelli
FormaLms Guru
Posts: 496
Joined: Thu Nov 08, 2012 12:21 pm
Version: forma.lms 2.0
Contact:

Re: Installation gets Stuck at importing the database for en

Post by canelli »

Is there away to increase max execution timeout without edit php.ini
edit file install\import_db.php with a txt editor like notepad.

add after line 3 the line

Code: Select all

set_time_limit(0);
Before:

Code: Select all

include('bootstrap.php');

After:

Code: Select all

include('bootstrap.php');
set_time_limit(0);

The execution time limit can be set in a php file only if PHP is not in safe mode ( safe_mode = off ).
Otherwise can be changed only in the php.ini
Cercate nel forum le riposte prima di chiedere. Check the forum before posting
---------------
Claudio Anelli
Joint Technologies - Sistemi avanzati per l'information technology

http://www.joint-tech.com
---------------
khoadd101
Newbie
Posts: 4
Joined: Fri May 22, 2015 11:15 pm

Re: Installation gets Stuck at importing the database for en

Post by khoadd101 »

Hi anellic,

Thanks for your solution, my problem was solved. Great!
Post Reply