|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-03-17 04:45 UTC] didou at nexen dot net
Description: ------------ Have a look at http://news.php.net/group.php?group=php.pear.doc&i=3010 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Jun 16 12:00:02 2026 UTC |
The solution here is quite simple. The subject of that particular message exceeds the length given to fgets() in php-news-web/group.php. The solution is: -while ($line = fgets($s, 4096)) { +while ($line = fgets($s, 16384)) { (could make it larger than 16384 if necessary). Could someone with php-news-web karma please fix this?