> Is there a way to force line breaks in the error log? write your own error_log wrapper. I usually do something like this:
function error ($msg) { error_log(sprintf('[%s] %s %s', date('d-m-Y H:i:s'), $msg, "\r\n"), 3, 'D:/path/to/error.log'); } > CGI Timeout > The specified CGI application exceeded the allowed time for processing. > The server has deleted the process. This sounds like IIS trowing away the ISAPI process, instead of a php timeout. My advice is the same as Anders's solution, optimizing the page... Sjon. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php