maximum execution time of 60 seconds exceeded on $img = file_get_contents($download_image);
Hi guys I tried to upload data from csv and download the images of the stock and upload it to my local. Every time I upload bulk data i have an error maximum execution time of 60 seconds exceeded on $img = file_get_contents($download_image);
I tried to edit the php.ini to max number but the same error was pop.
max_execution_time = 3600
It sounds like you are running into a timeout issue. You can try increasing the timeout limit in your php.ini file by setting the max_execution_time to a higher value. You can also try setting the set_time_limit to a higher value in your code.