Hello @mayur0418
The "maximum execution time exceeded" error typically means that the script you’re running is taking longer than the allowed time to execute.
In your PHP script, you can increase the execution time by adding the following line at the top:
php
set_time_limit(120); // Increases the limit to 120 seconds
Alternatively, you can update the php.ini file:
ini
max_execution_time = 120
Thanks & Regards