invoice releted.
-
when I upload a logo in the invoice on the admin side it is a successful add but when I download an invoice I get this error.
-
-
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:
phpset_time_limit(120); // Increases the limit to 120 seconds
Alternatively, you can update the php.ini file:
inimax_execution_time = 120
Thanks & Regards