Activity log for bug #257892

Date Who What changed Old value New value Message
2008-08-14 12:56:32 Pawel Smolinski bug added bug
2008-08-14 12:56:32 Pawel Smolinski bug added attachment 'php.ini' (php.ini for php-cli)
2008-08-14 12:57:32 Pawel Smolinski description Binary package hint: php5-cli I've written small script for generate sql query: -------- echo "INSERT INTO prices (category_from_id, category_to_id, fee) VALUES "; for($i = 1; $i <= 18; $i++){ for($j = 1; $j <= 18; $j++){ $fee = rand(1, 100); echo "($i, $j, $fee), "; } } echo "\n"; -------- and when output exceeds 4kB, it generates invalid error: -------- (18, 5, 83), (18, 6, 71), (1(18, 8, 48), -------- (1(18... instead (18, 7, 12), (18... I've output buffering turned off (as can see in attached php.ini file) My system (Kubunty) version details: $ lsb_release -rd Description: Ubuntu 8.04.1 Release: 8.04 $ php --version PHP 5.2.4-2ubuntu5.3 with Suhosin-Patch 0.9.6.2 (cli) (built: Jul 23 2008 06:44:49) Copyright (c) 1997-2007 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies Binary package hint: php5-cli I've written small script for generate sql query: -------- echo "INSERT INTO prices (category_from_id, category_to_id, fee) VALUES "; for($i = 1; $i <= 18; $i++){ for($j = 1; $j <= 18; $j++){ $fee = rand(1, 100); echo "($i, $j, $fee), "; } } echo "\n"; -------- and when output exceeds 4kB, it generates invalid output (lost few characters): -------- (18, 5, 83), (18, 6, 71), (1(18, 8, 48), -------- (1(18... instead (18, 7, 12), (18... I've output buffering turned off (as can see in attached php.ini file) My system (Kubunty) version details: $ lsb_release -rd Description: Ubuntu 8.04.1 Release: 8.04 $ php --version PHP 5.2.4-2ubuntu5.3 with Suhosin-Patch 0.9.6.2 (cli) (built: Jul 23 2008 06:44:49) Copyright (c) 1997-2007 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
2008-08-14 12:58:54 Pawel Smolinski description Binary package hint: php5-cli I've written small script for generate sql query: -------- echo "INSERT INTO prices (category_from_id, category_to_id, fee) VALUES "; for($i = 1; $i <= 18; $i++){ for($j = 1; $j <= 18; $j++){ $fee = rand(1, 100); echo "($i, $j, $fee), "; } } echo "\n"; -------- and when output exceeds 4kB, it generates invalid output (lost few characters): -------- (18, 5, 83), (18, 6, 71), (1(18, 8, 48), -------- (1(18... instead (18, 7, 12), (18... I've output buffering turned off (as can see in attached php.ini file) My system (Kubunty) version details: $ lsb_release -rd Description: Ubuntu 8.04.1 Release: 8.04 $ php --version PHP 5.2.4-2ubuntu5.3 with Suhosin-Patch 0.9.6.2 (cli) (built: Jul 23 2008 06:44:49) Copyright (c) 1997-2007 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies Binary package hint: php5-cli I've written small script for generate sql query: -------- echo "INSERT INTO prices (category_from_id, category_to_id, fee) VALUES "; for($i = 1; $i <= 18; $i++){ for($j = 1; $j <= 18; $j++){ $fee = rand(1, 100); echo "($i, $j, $fee), "; } } echo "\n"; -------- and when output exceeds 4kB, it generates invalid output (lost few characters): -------- (18, 5, 83), (18, 6, 71), (1(18, 8, 48), -------- (1(18... instead (18, 7, 12), (18... I've output buffering turned off (as can see in attached php.ini file). On native php 5.2.6 everything works OK (checked on another machine) My system (Kubunt) version details: $ lsb_release -rd Description: Ubuntu 8.04.1 Release: 8.04 $ php --version PHP 5.2.4-2ubuntu5.3 with Suhosin-Patch 0.9.6.2 (cli) (built: Jul 23 2008 06:44:49) Copyright (c) 1997-2007 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
2008-11-19 09:37:39 Russell Smith php5: status New Incomplete
2008-11-19 09:37:39 Russell Smith php5: statusexplanation
2009-10-14 17:01:44 Chuck Short php5 (Ubuntu): status Incomplete Fix Released