I upload an excel file with 1000 rows, by default I have just 2 min in execution time, with that time I can upload 400 records.
I get this error Maximum execution time of 120 seconds exceeded
How i can modify this period in yii2 framework ?
You need to change that in the php.ini:
max_execution_time = 500
or in your php script:
set_time_limit(500); //