Hello,
I have a php script than sometimes in a day takes long time to echo my content
$starttime =
echo $content
$endtime =
$total = $endtime - $starttime
Is $total is greater than 30 seconds then i receive an email, my client is blocking my content because delays,
Do you have any idea what could be the problem ?
My script does at most 3 queries, then use a template to build my response, i get the content in a variable and then echo.
Thanks for your help