Hello.
I have a php script to import the data into the database. And I would like to import if possible 10000 lines. Except that I'm blocked by the timout because max_execution_time=300 in php.ini
So I did some research and among the solutions I tried the following:
1- <IfModule mod_php7.c> php_value max_execution_time 0 </IfModule> in .htaccess (pulic folder)
2- ini_set('max_execution_time', 0); in my controller (I use Laravel)
3- https://learn.microsoft.com/en-us/azure/app-service/configure-language-php?pivots=platform-windows#customize-phpini-settings
4- I combined all these solutions
None of these ideas work.
Please, does anyone have an idea of what to do?
Thank in advance