Hello,
After not using limesurvey for some time I wanted to access the admin-area agein. But after I logged in the following Message appeared (about a thousand times):
| Code: |
Warning: fread() [function.fread]: Length parameter must be greater than 0 in streams.php on line 112
|
I looked into that file and was really suprised to find this:
[code:1]
while ($bytes > 0) {
$chunk = fread($this->_fd, $bytes); // this is line 112
@$data .= $chunk;
$bytes -= strlen($chunk);
}
[/code:1]
It looks like the parameter $bytes can't be 0. So why is it, and why does the warning appear???
I hope someone can help me...
-- Niklas