Posted by axlq on 01/31/08 23:52
In article <bad6f896-4f0f-4b84-a779-bf1c082bcfd9@e6g2000prf.googlegroups.com>,
Mikhail Kovalev <mikhail_kovalev@mail.ru> wrote:
>And, a funny thing I think it always halts at the same line, which
>looks like this:
>
> $string_2 = file_get_contents($string_1);
Try
echo $string1."\n";
That might explain what's happening. You may be trying to access a
locked file, and get a time-out while waiting for release.
-A
[Back to original message]
|