mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-26 15:59:23 +01:00
Add some more time every 100 rows as long as things are still going
This commit is contained in:
parent
f5dc2d6903
commit
4d64856fcd
@ -170,6 +170,12 @@ abstract class importexport_basic_import_csv implements importexport_iface_impor
|
|||||||
|
|
||||||
if($success) $count++;
|
if($success) $count++;
|
||||||
|
|
||||||
|
// Add some more time
|
||||||
|
if($success && $import_csv->get_current_position() > 0 && $import_csv->get_current_position() % 100 == 0)
|
||||||
|
{
|
||||||
|
set_time_limit(10);
|
||||||
|
}
|
||||||
|
|
||||||
// Keep a few records for preview, but process the whole file
|
// Keep a few records for preview, but process the whole file
|
||||||
if($this->dry_run && $import_csv->get_current_position() < $GLOBALS['egw_info']['user']['preferences']['common']['maxmatchs'])
|
if($this->dry_run && $import_csv->get_current_position() < $GLOBALS['egw_info']['user']['preferences']['common']['maxmatchs'])
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user