Page 2 of 2

Re: Installation gets Stuck at importing the database for en

Posted: Mon May 25, 2015 1:38 pm
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

Re: Installation gets Stuck at importing the database for en

Posted: Fri May 29, 2015 5:40 am
by khoadd101
Hi anellic,

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