delelse-
> > Fra: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]]
> > Sendt: 3. februar 2003 13:03
> > Til: Henrik Hornemann; [EMAIL PROTECTED]
> > Emne: RE: [PHP-WIN] two questions: error_log and timeout
> >
> >
> > Q&A 1: Have you checked the fil
> From: Luis Ferro [mailto:[EMAIL PROTECTED]]
>
> Svensson, B.A.T. (HKG) wrote:
>
> >Q&A 1: Have you checked the file in a hex editor/viewer?
> >
> >
> Another solution is to open the file with wordpad instead of notpad...
> (wordpad knows what are unix delimited files, and notepad doesn't)...
> 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 applicati
Svensson, B.A.T. (HKG) wrote:
Q&A 1: Have you checked the file in a hex editor/viewer?
Another solution is to open the file with wordpad instead of notpad...
(wordpad knows what are unix delimited files, and notepad doesn't)...
Cheers,
Luis Ferro
Teladigital.net
---
[This E-mail scanned f
Q&A 1: Have you checked the file in a hex editor/viewer?
Q&A 2: Three solutions
1) speed optimize your queries (check all full table scans etc)
2) increase the time out limitation
3) get faster hardware
In addition you might want to check weather this always happens
for single specific queries.