Home » Uncategorized » Server time out when php script takes too long to execute.

Server time out when php script takes too long to execute.

Most of the time, if the php script is process intensive on client end, by default, the APACHE server times out the script. If the script is timing out on server, one needs to add a small line on the top of the script.

<?php
set_time_limit(0);
?>


Leave a comment