#32734 [NEW]: Support for #line pragma, as in C and Perl

2005-04-17 Thread php at koterov dot ru
From: php at koterov dot ru
Operating system: all
PHP version:  5.0.4
PHP Bug Type: Feature/Change Request
Bug description:  Support for #line pragma, as in C and Perl

Description:

C, C++ and Perl support the folowing feature:

// start of file
#line 20 test.c
something
#line 30 test.c
other
// end of file

If error is generated into code something, it is reported as error in
test.c on line 20 - NOT on line 3! For code other - in test.c on line
30. The same Perl code example:

### start of file
#line 20 test.c
warn something;
#line 30 test.c
warn other;
### end of file

Result is:

something at test.c line 20.
other at test.c line 30.

Unfortunately PHP does not support this useful feature, and because of
that any template engines with pre-compilation (e.g. Smarty) make the life
not so pleasant as it could be.

Do you plan to add #line feature in future versions of PHP? Programmers
need it very much!


-- 
Edit bug report at http://bugs.php.net/?id=32734edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32734r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32734r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32734r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32734r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32734r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32734r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32734r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32734r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32734r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32734r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32734r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32734r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32734r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32734r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32734r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32734r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32734r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32734r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32734r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32734r=mysqlcfg


#32735 [NEW]: gd.c error

2005-04-17 Thread kiryu at angelicwing dot net
From: kiryu at angelicwing dot net
Operating system: FreeBSD4.8
PHP version:  5CVS-2005-04-17 (dev)
PHP Bug Type: Compile Failure
Bug description:  gd.c error

Description:

./configure
--enable-mbstring
--enable-mbregex
--with-pgsql=/usr/local/pgsql
--with-mysql=/usr/local
--with-apxs2=/usr/local/apache2/bin/apxs
--enable-memory-limit
--enable-safe-mode
--with-zlib
--with-xmlrpc
--enable-cli
--with-gd
--enable-exif
--enable-gd-jis-conv
--enable-gd-jis-conv--with-gettext
--with-xml=/usr/local
--enable-ftp
--with-dom
--with-freetype-dir=/usr/local
--with-jpeg-dir=/usr/local
--enable-sockets
--with-libcrypt=/usr/lib
--enable-soap
--enable-sqlite-utf8
--enable-spl
--with-xsl
--with-mysqli



# make
/bin/sh /usr/local/src/php5-200504170630/libtool --silent
--preserve-dup-deps --mode=compile gcc
-I/usr/local/src/php5-200504170630/ext/gd/libgd -DHAVE_LIBPNG
-DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DJISX0208 -Iext/gd/
-I/usr/local/src/php5-200504170630/ext/gd/ -DPHP_ATOM_INC
-I/usr/local/src/php5-200504170630/include
-I/usr/local/src/php5-200504170630/main -I/usr/local/src/php5-200504170630
-I/usr/local/include/libxml2 -I/usr/local/include
-I/usr/local/include/freetype2
-I/usr/local/src/php5-200504170630/ext/mbstring/oniguruma
-I/usr/local/src/php5-200504170630/ext/mbstring/libmbfl
-I/usr/local/src/php5-200504170630/ext/mbstring/libmbfl/mbfl
-I/usr/local/include/mysql -I/usr/local/pgsql/include
-I/usr/local/src/php5-200504170630/TSRM
-I/usr/local/src/php5-200504170630/Zend-g -O2  -prefer-non-pic -c
/usr/local/src/php5-200504170630/ext/gd/gd.c -o ext/gd/gd.lo
/usr/local/src/php5-200504170630/ext/gd/gd.c: In function
`zif_imageconvolution':
/usr/local/src/php5-200504170630/ext/gd/gd.c:4215: syntax error before
`float'
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: `matrix' undeclared
(first use in this function)
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: (Each undeclared
identifier is reported only once
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: for each function it
appears in.)
*** Error code 1


-- 
Edit bug report at http://bugs.php.net/?id=32735edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32735r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32735r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32735r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32735r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32735r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32735r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32735r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32735r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32735r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32735r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32735r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32735r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32735r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32735r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32735r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32735r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32735r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32735r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32735r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32735r=mysqlcfg


#32735 [Opn]: gd.c error

2005-04-17 Thread kiryu at angelicwing dot net
 ID:   32735
 User updated by:  kiryu at angelicwing dot net
 Reported By:  kiryu at angelicwing dot net
 Status:   Open
 Bug Type: Compile Failure
 Operating System: FreeBSD4.8
-PHP Version:  5CVS-2005-04-17 (dev)
+PHP Version:  PHP5.1.0-dev(snaps php5-200504170630)
 New Comment:

Sorry. The version number was corrected.


Previous Comments:


[2005-04-17 09:51:36] kiryu at angelicwing dot net

Description:

./configure
--enable-mbstring
--enable-mbregex
--with-pgsql=/usr/local/pgsql
--with-mysql=/usr/local
--with-apxs2=/usr/local/apache2/bin/apxs
--enable-memory-limit
--enable-safe-mode
--with-zlib
--with-xmlrpc
--enable-cli
--with-gd
--enable-exif
--enable-gd-jis-conv
--enable-gd-jis-conv--with-gettext
--with-xml=/usr/local
--enable-ftp
--with-dom
--with-freetype-dir=/usr/local
--with-jpeg-dir=/usr/local
--enable-sockets
--with-libcrypt=/usr/lib
--enable-soap
--enable-sqlite-utf8
--enable-spl
--with-xsl
--with-mysqli



# make
/bin/sh /usr/local/src/php5-200504170630/libtool --silent
--preserve-dup-deps --mode=compile gcc
-I/usr/local/src/php5-200504170630/ext/gd/libgd -DHAVE_LIBPNG
-DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DJISX0208 -Iext/gd/
-I/usr/local/src/php5-200504170630/ext/gd/ -DPHP_ATOM_INC
-I/usr/local/src/php5-200504170630/include
-I/usr/local/src/php5-200504170630/main
-I/usr/local/src/php5-200504170630 -I/usr/local/include/libxml2
-I/usr/local/include -I/usr/local/include/freetype2
-I/usr/local/src/php5-200504170630/ext/mbstring/oniguruma
-I/usr/local/src/php5-200504170630/ext/mbstring/libmbfl
-I/usr/local/src/php5-200504170630/ext/mbstring/libmbfl/mbfl
-I/usr/local/include/mysql -I/usr/local/pgsql/include
-I/usr/local/src/php5-200504170630/TSRM
-I/usr/local/src/php5-200504170630/Zend-g -O2  -prefer-non-pic -c
/usr/local/src/php5-200504170630/ext/gd/gd.c -o ext/gd/gd.lo
/usr/local/src/php5-200504170630/ext/gd/gd.c: In function
`zif_imageconvolution':
/usr/local/src/php5-200504170630/ext/gd/gd.c:4215: syntax error before
`float'
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: `matrix' undeclared
(first use in this function)
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: (Each undeclared
identifier is reported only once
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: for each function it
appears in.)
*** Error code 1






-- 
Edit this bug report at http://bugs.php.net/?id=32735edit=1


#32735 [Opn-Csd]: gd.c error

2005-04-17 Thread derick
 ID:   32735
 Updated by:   [EMAIL PROTECTED]
 Reported By:  kiryu at angelicwing dot net
-Status:   Open
+Status:   Closed
 Bug Type: Compile Failure
 Operating System: FreeBSD4.8
 PHP Version:  PHP5.1.0-dev(snaps php5-200504170630)
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:


[2005-04-17 11:53:32] kiryu at angelicwing dot net

Sorry. The version number was corrected.



[2005-04-17 09:51:36] kiryu at angelicwing dot net

Description:

./configure
--enable-mbstring
--enable-mbregex
--with-pgsql=/usr/local/pgsql
--with-mysql=/usr/local
--with-apxs2=/usr/local/apache2/bin/apxs
--enable-memory-limit
--enable-safe-mode
--with-zlib
--with-xmlrpc
--enable-cli
--with-gd
--enable-exif
--enable-gd-jis-conv
--enable-gd-jis-conv--with-gettext
--with-xml=/usr/local
--enable-ftp
--with-dom
--with-freetype-dir=/usr/local
--with-jpeg-dir=/usr/local
--enable-sockets
--with-libcrypt=/usr/lib
--enable-soap
--enable-sqlite-utf8
--enable-spl
--with-xsl
--with-mysqli



# make
/bin/sh /usr/local/src/php5-200504170630/libtool --silent
--preserve-dup-deps --mode=compile gcc
-I/usr/local/src/php5-200504170630/ext/gd/libgd -DHAVE_LIBPNG
-DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DJISX0208 -Iext/gd/
-I/usr/local/src/php5-200504170630/ext/gd/ -DPHP_ATOM_INC
-I/usr/local/src/php5-200504170630/include
-I/usr/local/src/php5-200504170630/main
-I/usr/local/src/php5-200504170630 -I/usr/local/include/libxml2
-I/usr/local/include -I/usr/local/include/freetype2
-I/usr/local/src/php5-200504170630/ext/mbstring/oniguruma
-I/usr/local/src/php5-200504170630/ext/mbstring/libmbfl
-I/usr/local/src/php5-200504170630/ext/mbstring/libmbfl/mbfl
-I/usr/local/include/mysql -I/usr/local/pgsql/include
-I/usr/local/src/php5-200504170630/TSRM
-I/usr/local/src/php5-200504170630/Zend-g -O2  -prefer-non-pic -c
/usr/local/src/php5-200504170630/ext/gd/gd.c -o ext/gd/gd.lo
/usr/local/src/php5-200504170630/ext/gd/gd.c: In function
`zif_imageconvolution':
/usr/local/src/php5-200504170630/ext/gd/gd.c:4215: syntax error before
`float'
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: `matrix' undeclared
(first use in this function)
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: (Each undeclared
identifier is reported only once
/usr/local/src/php5-200504170630/ext/gd/gd.c:4228: for each function it
appears in.)
*** Error code 1






-- 
Edit this bug report at http://bugs.php.net/?id=32735edit=1


#32736 [NEW]: Select table.field returns wrong result index

2005-04-17 Thread bart at mediawave dot nl
From: bart at mediawave dot nl
Operating system: WinXP
PHP version:  5.0.4
PHP Bug Type: SQLite related
Bug description:  Select table.field returns wrong result index

Description:

With the SQLite functions:

The problem occurs when selecting fields in a tablename.fieldname manner.
Example:

SELECT test.myfield, test.otherfield FROM test

The result array will have ['tablename.fieldname'] as index. This should
be just ['fieldname'] as index.

Reproduce code:
---
?php

$dbfile = 'db/test2db.db';

if (!file_exists($dbfile)) {
$setup = 
CREATE TABLE test (myfield varchar(50), otherfield varchar(50));
INSERT INTO test (myfield, otherfield) VALUES ('value1', 
'value1');
INSERT INTO test (myfield, otherfield) VALUES ('value2', 
'value2');
;
}

$connectionId = sqlite_open($dbfile, 0666, $sqliteerror);

if ($setup) 
sqlite_exec($connectionId, $setup);

$sql = 'SELECT test.myfield, test.otherfield FROM test';

$resultId = sqlite_query($connectionId, $sql);

while ($result = sqlite_fetch_array($resultId, SQLITE_ASSOC))
print_r($result);

?

Expected result:

Array
(
[myfield] = value1
[otherfield] = value1
)
Array
(
[myfield] = value2
[otherfield] = value2
)

Actual result:
--
Array
(
[test.myfield] = value1
[test.otherfield] = value1
)
Array
(
[test.myfield] = value2
[test.otherfield] = value2
)

-- 
Edit bug report at http://bugs.php.net/?id=32736edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32736r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32736r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32736r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32736r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32736r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32736r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32736r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32736r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32736r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32736r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32736r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32736r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32736r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32736r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32736r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32736r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32736r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32736r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32736r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32736r=mysqlcfg


#32736 [Opn-Bgs]: Select table.field returns wrong result index

2005-04-17 Thread derick
 ID:   32736
 Updated by:   [EMAIL PROTECTED]
 Reported By:  bart at mediawave dot nl
-Status:   Open
+Status:   Bogus
 Bug Type: SQLite related
 Operating System: WinXP
 PHP Version:  5.0.4
 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Sorry, but this is how SQLite works.


Previous Comments:


[2005-04-17 12:23:04] bart at mediawave dot nl

Description:

With the SQLite functions:

The problem occurs when selecting fields in a tablename.fieldname
manner. Example:

SELECT test.myfield, test.otherfield FROM test

The result array will have ['tablename.fieldname'] as index. This
should be just ['fieldname'] as index.

Reproduce code:
---
?php

$dbfile = 'db/test2db.db';

if (!file_exists($dbfile)) {
$setup = 
CREATE TABLE test (myfield varchar(50), otherfield varchar(50));
INSERT INTO test (myfield, otherfield) VALUES ('value1', 
'value1');
INSERT INTO test (myfield, otherfield) VALUES ('value2', 
'value2');
;
}

$connectionId = sqlite_open($dbfile, 0666, $sqliteerror);

if ($setup) 
sqlite_exec($connectionId, $setup);

$sql = 'SELECT test.myfield, test.otherfield FROM test';

$resultId = sqlite_query($connectionId, $sql);

while ($result = sqlite_fetch_array($resultId, SQLITE_ASSOC))
print_r($result);

?

Expected result:

Array
(
[myfield] = value1
[otherfield] = value1
)
Array
(
[myfield] = value2
[otherfield] = value2
)

Actual result:
--
Array
(
[test.myfield] = value1
[test.otherfield] = value1
)
Array
(
[test.myfield] = value2
[test.otherfield] = value2
)





-- 
Edit this bug report at http://bugs.php.net/?id=32736edit=1


#32737 [NEW]: Encoding Problem in mysqli functions

2005-04-17 Thread vahedi at gmail dot com
From: vahedi at gmail dot com
Operating system: windows(xp,2000) - linux
PHP version:  5.0.3
PHP Bug Type: *Database Functions
Bug description:  Encoding Problem in mysqli functions

Description:

hi,
my setting (winxp+sp2 , apache2 , mysql 4.1.10 , php 5.0.3).

i have a mysql database with 3 tables that contain information with
UNICODE(UTF-8) encoding.
i didnot have any problem with my application when i used from mysql
functions in php.
but after php version 5, when i used from mysqli functions, i see
undefined charactes on my web page.

of course, when i add a new record to my database with mysqli and see that
record with it, i havenot any problem.

do i must enter all of old data into my db with mysqli functions?

please help me, that how i see correctly my old data with new functions?

thank you



-- 
Edit bug report at http://bugs.php.net/?id=32737edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32737r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32737r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32737r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32737r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32737r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32737r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32737r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32737r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32737r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32737r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32737r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32737r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32737r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32737r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32737r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32737r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32737r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32737r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32737r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32737r=mysqlcfg


#32737 [Opn-Bgs]: Encoding Problem in mysqli functions

2005-04-17 Thread sniper
 ID:   32737
 Updated by:   [EMAIL PROTECTED]
 Reported By:  vahedi at gmail dot com
-Status:   Open
+Status:   Bogus
-Bug Type: *Database Functions
+Bug Type: MySQLi related
 Operating System: windows(xp,2000) - linux
 PHP Version:  5.0.3
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




Previous Comments:


[2005-04-17 13:38:17] vahedi at gmail dot com

Description:

hi,
my setting (winxp+sp2 , apache2 , mysql 4.1.10 , php 5.0.3).

i have a mysql database with 3 tables that contain information with
UNICODE(UTF-8) encoding.
i didnot have any problem with my application when i used from mysql
functions in php.
but after php version 5, when i used from mysqli functions, i see
undefined charactes on my web page.

of course, when i add a new record to my database with mysqli and see
that record with it, i havenot any problem.

do i must enter all of old data into my db with mysqli functions?

please help me, that how i see correctly my old data with new
functions?

thank you







-- 
Edit this bug report at http://bugs.php.net/?id=32737edit=1


#32733 [Opn-Bgs]: libmysqli.dll not included w/5.0.4 PHP_MySQL.DLL PHP_MySQL.DLL won't load

2005-04-17 Thread sniper
 ID:   32733
 Updated by:   [EMAIL PROTECTED]
 Reported By:  jason at thinkingman dot org
-Status:   Open
+Status:   Bogus
 Bug Type: Dynamic loading
 Operating System: XP (SP2)
 PHP Version:  5.0.4
 New Comment:

There's something wrong with either your installation method or the
mirror you're downloading the package from. There definately IS
php_mysqli.dll in the zip package..



Previous Comments:


[2005-04-17 06:51:56] jason at thinkingman dot org

Typo --

It looks like libmysqli.dll was NOT included in the .ZIP distro --
looks like this was a problem with the 5.0.3 distro as well.



[2005-04-17 06:50:28] jason at thinkingman dot org

Description:

Just upgraded to 5.0.4 (from 5.0.2) -- MySqli  MySql DLL's (Extensions
won't load when IIS starts.  Get error message saying Unable to Load.

PHP.INI is conf'd correctly -- paths are good, OS paths are good -- no
dup DLL's on system.  Reinstalled 5.0.2 everything works fine again.

It looks like libmysqli.dll was included in the .ZIP distro -- looks
like this was a problem with the 5.0.3 distro as well.








-- 
Edit this bug report at http://bugs.php.net/?id=32733edit=1


#32724 [Opn]: sqlite_free_result would be useful for some transaction scenarios

2005-04-17 Thread sniper
 ID:   32724
 Updated by:   [EMAIL PROTECTED]
 Reported By:  victor-php at boivie dot com
 Status:   Open
-Bug Type: SQLite related
+Bug Type: Feature/Change Request
 Operating System: Not important
 PHP Version:  5.0.4
 New Comment:

moving to the right category..



Previous Comments:


[2005-04-16 09:10:20] victor-php at boivie dot com

That actually produces correct results. So setting a resource to null
frees the resource? 

http://se2.php.net/manual/en/language.types.resource.php mentions that
Due to the reference-counting system ... it is automatically detected
when a resource is no longer referred to .. all resources that were in
use for this resource are made free by the garbage collector. For this
reason, it is rarely ever necessary to free the memory manually by
using some free_result function.

So it is actually noted in the manual. However, for symmetry in the PHP
language, I still think it's a good idea to have a sqlite_free_result
that does exactly this, as there is for many other databases (every
other?). It would be more intuitive anyway - what do you think?

Thanks for your help!



[2005-04-16 00:23:56] [EMAIL PROTECTED]

$res = null;

not good enough?



[2005-04-15 21:11:52] victor-php at boivie dot com

Description:

This is a function FEATURE REQUEST and not a real bug. But it's SQLite
related so I put it there instead.

When you start a transaction and want to do a SELECT and then an UPDATE
(for example), the results from the SELECT-query must be finished before
you are allowed to UPDATE (due to the table locking)

This means that you must step through all rows of the resultset (until
the sqlite_fetch_xxx returns false). In some cases, it would be good to
prematurely finish a SELECT-resultset to be able to do an UPDATE without
having to loop through all remaining rows. 

Thus, a sqlite_free_result() function would be useful.

Reproduce code:
---
 $db = sqlite_open(test.db);

 sqlite_exec($db, BEGIN TRANSACTION);
 $res = sqlite_unbuffered_query($db, SELECT * FROM temp);
 $row = sqlite_fetch_array($res);

 sqlite_exec($db, UPDATE temp SET value=10 WHERE id=1);
 sqlite_exec($db, END TRANSACTION);

 sqlite_close($db);


Expected result:

Well, I expect it to fail. 

With a sqlite_free_result($res) after the sqlite_fetch_array-statement
I would expect it to work. 

A workaround is, (after you have retrieved your important results from
the SELECT), to do a 

while (sqlite_fetch_array($res));

... to step through the remaining rows.

Actual result:
--
Well, it fails as I expected.





-- 
Edit this bug report at http://bugs.php.net/?id=32724edit=1


#32718 [Opn-Fbk]: Sessions locks while OCIFetch is running

2005-04-17 Thread sniper
 ID:   32718
 Updated by:   [EMAIL PROTECTED]
 Reported By:  jogodinho at gms dot pt
-Status:   Open
+Status:   Feedback
 Bug Type: OCI8 related
 Operating System: Windows XP Professional
 PHP Version:  5.0.4
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip




Previous Comments:


[2005-04-15 14:16:02] [EMAIL PROTECTED]

FYI: The PHP 4.3.11 is really the latest stable version, PHP 5.0.x is
something less stable..




[2005-04-15 14:00:00] jogodinho at gms dot pt

Description:

Recently i have submit a upgrade from version PHP4.2.3 to PHP5.0.4
(last stable version available) and now i have some problems of
scability that they didn't happen before.

I establish a connection with a data base with following code:



$conn=OCILogon(user, pass, bd);

---

And when i submit a query (that it delays 28 seconds approximately, to
return 76000 registers) with the function OCIParse, other sessions that
they intend to establish connections apparently locks, waiting that
query finishes and sometimes i get the following warning:

---

Warning:  ocifetch() [a
href='function.ocifetch'function.ocifetch/a]: OCIFetch: ORA-01001:
invalid cursor in ... on line 253


Reproduce code:
---
$conn=OCILogon(user, pass, bd);

$query = select ...;

$stmt = OCIParse($conn, $query);

OCIExecute($stmt, OCI_DEFAULT);

while(OCI_Fetch($stmt))
{
 OCIResult($stmt, 1);
(...)
}





Expected result:

Obtain query results

Actual result:
--
While the query is running, others sessions locks and sometimes i get
the warning: 
---

Warning:  ocifetch() [a
href='function.ocifetch'function.ocifetch/a]: OCIFetch: ORA-01001:
invalid cursor in ... on line 253






-- 
Edit this bug report at http://bugs.php.net/?id=32718edit=1


#32730 [Opn-Csd]: ext/crack.c fails to compile with cracklib-2.8.3

2005-04-17 Thread sniper
 ID:   32730
 Updated by:   [EMAIL PROTECTED]
 Reported By:  dummy666 at mail dot ru
-Status:   Open
+Status:   Closed
 Bug Type: Compile Failure
 Operating System: linux, cracklib-2.8.3
 PHP Version:  4.3.11
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:


[2005-04-16 21:18:30] dummy666 at mail dot ru

--without-crack configure option doesn't work as expected. neither does
--with-crack=no



[2005-04-16 21:04:05] dummy666 at mail dot ru

Description:

packer.h of cracklib-2.8.3 defines STRINGSIZE inside #ifdef
IN_CRACKLIB block making this macro invisible for others






-- 
Edit this bug report at http://bugs.php.net/?id=32730edit=1


#30819 [Fbk-Csd]: Patch to properly support LDAP SASL binds

2005-04-17 Thread sniper
 ID:   30819
 Updated by:   [EMAIL PROTECTED]
 Reported By:  quanah at stanford dot edu
-Status:   Feedback
+Status:   Closed
 Bug Type: LDAP related
 Operating System: *
 PHP Version:  5CVS-2005-02-21
 New Comment:

My patch is now committed to CVS.



Previous Comments:


[2005-04-11 01:52:27] [EMAIL PROTECTED]

Please try this modified patch:
 
  http://www.php.net/~jani/patches/bug30819.patch

I added some convenience constants and made all the 
parameters optional (except for the 1st one).

I tried it with your script here but it didn't work for me.




[2004-11-18 00:50:52] dhawes at vt dot edu

I attempted to get a similar patch submitted last May, but discussion
came to a standstill.  Quanah and I have tested this with GSSAPI,
EXTERNAL, and (I believe) DIGEST-MD5.  I would like to see this patch
included in PHP so I can stop requiring users to patch their source.



[2004-11-18 00:16:46] quanah at stanford dot edu

Description:

Hello,

I've written a patch against PHP-5.0.2 that properly impelments LDAP
SASL binds for all mechanisms.  The current code in 5.0.2 does not
support LDAP SASL binds at all, although the function exists.

The patch can be found at:

http://www.stanford.edu/services/directory/clients/examples/ldap-sasl

It follows the PHP development guidelines.

This patch has been tested with multiple SASL authentication
mechanisms.

Regards,
Quanah

Reproduce code:
---
#!/usr/local/bin/php
?php
$ldap = ldap_connect(ldap.stanford.edu);
if($ldap) {
   $r = ldap_bind($ldap);
} else {
  echo Unable to connect!;
}

ldap_set_option($ldap,LDAP_OPT_PROTOCOL_VERSION,3);

if (ldap_sasl_bind($ldap,,,GSSAPI))
{
$dn = cn=people,dc=stanford,dc=edu;
$filter = (|(susearchid=$WEBAUTH_USER)([EMAIL PROTECTED]));
$result = ldap_search($ldap, $dn, $filter);
   
if ($result)
{
   echo Number of entries returned is  .
ldap_count_entries($ldap, $result) . br /;
   print(\n);
   $info = ldap_get_entries($ldap,$result);
   echo Data for  . $info[count] .  items returned:p;
   print(\n);
   
   for($i=0;$i$info[count];$i++) {
   echo dn is:  . $info[$i][dn] . br /;
   print(\n);
   echo first cn entry is:  . $info[$i][cn][0] . br /;
   print(\n);
   echo first email is:  . $info[$i][mail][0] . br / hr
/;
   print(\n);
   }
}
   
ldap_close($ldap);
}
?

Expected result:

I'd expect this to work in PHP

Actual result:
--
Doesn't work at all without my patch.

Works correctly with my patch.






-- 
Edit this bug report at http://bugs.php.net/?id=30819edit=1


#28605 [Asn]: bug21523.phpt test never end

2005-04-17 Thread iliaa
 ID:   28605
 Updated by:   [EMAIL PROTECTED]
 Reported By:  tbp at poly dot polytechnique dot fr
 Status:   Assigned
 Bug Type: Math related
 Operating System: Compaq Tru64 UNIX v5.1
 PHP Version:  4CVS-2005-03-21
-Assigned To:  iliaa
+Assigned To:  helly
 New Comment:

ap_*printf() functions acting up?


Previous Comments:


[2005-04-06 23:49:17] tbp at poly dot polytechnique dot fr

No coredump anymore, but  hangup again.

[EMAIL PROTECTED]:/Admin/SRC/Apache/php4-STABLE-200504061830]# gdb
sapi/cli/php
GNU gdb 6.1
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and
you are
welcome to change it and/or distribute copies of it under certain
conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for
details.
This GDB was configured as alphaev68-dec-osf5.1...
(gdb) run ext/standard/tests/math/bug21523.phpt
Starting program:
/Admin/SRC/Apache/php4-STABLE-200504061830/sapi/cli/php
ext/standard/tests/math/bug21523.phpt
--TEST--
Bug #21523 number_format tries to allocate negative amount of memory
--FILE--
warning: (Internal error: pc 0x12010e444 in read in psymtab, but not in
symtab.)


Program received signal SIGINT, Interrupt.
0x00012010e444 in ap_php_cvt (arg=0, ndigits=78, decpt=0x11fff9ac8,
sign=0x0, eflag=0, buf=0x11fff9ad0 '0' repeats 80 times)
at /Admin/SRC/Apache/php4-STABLE-200504061830/main/snprintf.c:317
317 fj = modf(fi / 10, fi);
(gdb) bt
#0  0x00012010e444 in ap_php_cvt (arg=0, ndigits=78,
decpt=0x11fff9ac8, sign=0x0, eflag=0, buf=0x11fff9ad0 '0' repeats 80
times)
at /Admin/SRC/Apache/php4-STABLE-200504061830/main/snprintf.c:317
warning: (Internal error: pc 0x12010e2e8 in read in psymtab, but not in
symtab.)

#1  0x00012010e2e8 in ap_php_conv_fp (format=102 'f', num=0,
add_dp=NO, precision=2768, is_negative=0x11fff9dc0, buf=0x11fff9bb1 ,
len=0x11fff9ba8)
at /Admin/SRC/Apache/php4-STABLE-200504061830/main/snprintf.c:176
warning: (Internal error: pc 0x1201101bc in read in psymtab, but not in
symtab.)

#2  0x0001201101bc in xbuf_format_converter (xbuf=0x11fff9e38,
fmt=0x14002f3c9 f, ap={__base = 0x11fff9eb8, __offset = 40})
at /Admin/SRC/Apache/php4-STABLE-200504061830/main/spprintf.c:461
warning: (Internal error: pc 0x120110978 in read in psymtab, but not in
symtab.)

#3  0x000120110978 in vspprintf (pbuf=0x11fff9f48,
max_len=4831812308, format=0x14002f3c6 %.*f, ap={__base =
0x11fff9eb8, __offset = 24})
at /Admin/SRC/Apache/php4-STABLE-200504061830/main/spprintf.c:638
warning: (Internal error: pc 0x120110a40 in read in psymtab, but not in
symtab.)

#4  0x000120110a40 in spprintf (pbuf=0x11fff9b1f,
max_len=4831812308, format=0x11fff9ad6 '0' repeats 74 times)
at /Admin/SRC/Apache/php4-STABLE-200504061830/main/spprintf.c:658
warning: (Internal error: pc 0x1200afea8 in read in psymtab, but not in
symtab.)

#5  0x0001200afea8 in _php_math_number_format (d=0, dec=536845880,
dec_point=46 '.', thousand_sep=44 ',')
at
/Admin/SRC/Apache/php4-STABLE-200504061830/ext/standard/math.c:1027
warning: (Internal error: pc 0x1200b02d8 in read in psymtab, but not in
symtab.)

#6  0x0001200b02d8 in zif_number_format (ht=1074697624,
return_value=0x1400e9458, this_ptr=0x11fff9ad6, return_value_used=0)
at
/Admin/SRC/Apache/php4-STABLE-200504061830/ext/standard/math.c:1123
warning: (Internal error: pc 0x12015aaa8 in read in psymtab, but not in
symtab.)

#7  0x00012015aaa8 in execute (op_array=0x2c) at
/Admin/SRC/Apache/php4-STABLE-200504061830/Zend/zend_execute.c:1654
Previous frame inner to this frame (corrupt stack?)
(gdb)



[2005-04-06 16:25:33] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-03-22 18:36:39] [EMAIL PROTECTED]

Ilia, wasn't it you who added that PHP_ROUND_WITH_FUZZ() ? :)



[2005-03-21 22:56:40] tbp at poly dot polytechnique dot fr

[EMAIL PROTECTED]:/Admin/SRC/Apache/php4-STABLE-200503211130]# gdb
sapi/cli/php
This GDB was configured as alphaev68-dec-osf5.1...
(gdb) run ext/standard/tests/math/bug21523.phpt
Starting program:
/Admin/SRC/Apache/php4-STABLE-200503211130/sapi/cli/php
ext/standard/tests/math/bug21523.phpt
--TEST--
Bug #21523 number_format tries to allocate negative amount of memory
--FILE--
warning: (Internal error: pc 0x1200a72b8 in read in psymtab, but not in
symtab.)


Program received signal SIGFPE, Arithmetic exception.
0x0001200a72b8 in _php_math_number_format (d=2000, dec=2768,
dec_point=46 

#32731 [Bgs]: Windows 2003 Sp1 / INVALID ACCESS TO MEMORY LOCATION

2005-04-17 Thread gravityworksllc at hotmail dot com
 ID:   32731
 User updated by:  gravityworksllc at hotmail dot com
 Reported By:  gravityworksllc at hotmail dot com
 Status:   Bogus
 Bug Type: Reproducible crash
 Operating System: windows 2003
 PHP Version:  5.0.4
 New Comment:

I hope this helps everyone else.  The problem I found is with Zend
2.5.7.  Once I commented out the php.ini zend options everything
works.

I apologize for my comment below.  I was wrong and I am sorry.  I am
not going to go over to zend and have a discussion.

Kind regard,
Liquidfrog


Previous Comments:


[2005-04-17 00:49:07] gravityworksllc at hotmail dot com

mark my words.. This is a php bug / problem with windows 2003 SP1. 
Even Microsoft on their site when you look up this problem says talk to
your application designer.  ( Not that they are any help at all anyway )
I can assure you.. 

This is a php bug / somthing with IIS and your DLLS...

Remember that when you see a fix somewhere on this site.  Works fine
for me means nothing.  Why not tell me what you did and help me out
rather then send me somewhere else?


Kind regard,
LiquidFrog



[2005-04-17 00:15:52] [EMAIL PROTECTED]

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.

Works fine for me.




[2005-04-16 23:50:06] gravityworksllc at hotmail dot com

Description:

I am not sure what the deal is.. I think after installing SP1 for
windows 2003 that I was getting

INVALID ACCESS TO MEMORY LOCATION

with php 5.0.3

So what I did was upgrade to 5.0.4 to see if it might be fixed.  Now
all that happens is this

http://www.gravityworks.us

If I change the php file to html it works fine.

http://www.pcgotbugs.com

but you can see if you click on contact us link at the top that you get
the same response as the gravityworks site which is has the extension of
php.

I REALLY REALLY need a fix fast.  Please help me out here.  Site down
means no business.

Expected result:

I expect to see the website.

Actual result:
--
The page cannot be found
The page you are looking for might have been removed, had its name
changed, or is temporarily unavailable.

Please try the following:

* Make sure that the Web site address displayed in the address bar
of your browser is spelled and formatted correctly.
* If you reached this page by clicking a link, contact the Web site
administrator to alert them that the link is incorrectly formatted.
* Click the Back button to try another link.

HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)

Technical Information (for support personnel)

* Go to Microsoft Product Support Services and perform a title
search for the words HTTP and 404.
* Open IIS Help, which is accessible in IIS Manager (inetmgr), and
search for topics titled Web Site Setup, Common Administrative Tasks,
and About Custom Error Messages.






-- 
Edit this bug report at http://bugs.php.net/?id=32731edit=1


#32711 [Bgs-Opn]: CDATA elements are not preserved

2005-04-17 Thread phpspam at talkingspider dot com
 ID:   32711
 User updated by:  phpspam at talkingspider dot com
 Reported By:  phpspam at talkingspider dot com
-Status:   Bogus
+Status:   Open
 Bug Type: DOM XML related
 Operating System: Fedora C2
 PHP Version:  4.3.9
 New Comment:

Can you give me a link to a previous bug report explaining why this
won't be fixed?  (Obviously?)


Previous Comments:


[2005-04-17 04:25:05] [EMAIL PROTECTED]

This has been covered in previous bug reports on why it wont be changed



[2005-04-17 03:23:33] phpspam at talkingspider dot com

No, they are NOT identical. It's called a canonical value. Think back
to your computer science education.  

http://www.w3.org/TR/2001/REC-xml-c14n-20010315

The official spec for DOM does specify that CDATA nodes are labelled as
such in the DOM.  In other words, in the dom,  CDATA nodes are CDATA
nodes and text nodes are text nodes, they are not the same thing.  So,
for example, you should be able to crawl the dom and spot CDATA nodes.


So, either one of two things are still broken: Either your parsing
function is deciding to convert CDATA into text nodes, in which case,
when the DOM is built, it never has CDATA nodes in it, even though they
are present in the input xml.  Or, your output function is deciding to
convert all the CDATA nodes in the DOM into text nodes.  In either
case, that's a bug.  In perl I can choose to preserve CDATA elements
when I output.  In PHP I can't.  

http://www.w3schools.com/dom/dom_cdatasection.asp



[2005-04-16 02:21:16] [EMAIL PROTECTED]

I don't understand. If you're saying that:

root![CDATA[ Hello  Goodbye]/root

is turned into 

rootHello amp; Goodbye/root

Then this is not a bug. These are identical in XML and the processor
can choose either representation.

It's just like root/root vs. root/. You cannot control this and
no XML parser should care when consuming them.



[2005-04-16 01:43:55] [EMAIL PROTECTED]

Try adding sample script which fails first..





[2005-04-16 01:10:56] phpspam at talkingspider dot com

That is not a realistic response.  You already have the latest php 4.x
version installed somewhere, why should I have to install it on my
side?  You could do in 5 minutes what would take me 50.   You also have
access to all of the bugs that were ever fixed, search for this and if
it's not there then it was never fixed.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/32711

-- 
Edit this bug report at http://bugs.php.net/?id=32711edit=1


#32736 [Bgs-Opn]: Select table.field returns wrong result index

2005-04-17 Thread bart at mediawave dot nl
 ID:   32736
 User updated by:  bart at mediawave dot nl
 Reported By:  bart at mediawave dot nl
-Status:   Bogus
+Status:   Open
 Bug Type: SQLite related
 Operating System: WinXP
 PHP Version:  5.0.4
 New Comment:

Can this be changed to a feature / change request? 

I've been looking around on the web. As far as I can see there are no
other SQL system that give results in such a way. This just makes it
unnecessarily difficult to write database independent code.

The only advantage I can think of for such a result is when tables that
have identical fieldnames need to be joined. But SQL (and SQLite)
already has aliases to solve that.

Maybe there should be a new SQLite result type constant for this?


Previous Comments:


[2005-04-17 12:27:51] [EMAIL PROTECTED]

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Sorry, but this is how SQLite works.



[2005-04-17 12:23:04] bart at mediawave dot nl

Description:

With the SQLite functions:

The problem occurs when selecting fields in a tablename.fieldname
manner. Example:

SELECT test.myfield, test.otherfield FROM test

The result array will have ['tablename.fieldname'] as index. This
should be just ['fieldname'] as index.

Reproduce code:
---
?php

$dbfile = 'db/test2db.db';

if (!file_exists($dbfile)) {
$setup = 
CREATE TABLE test (myfield varchar(50), otherfield varchar(50));
INSERT INTO test (myfield, otherfield) VALUES ('value1', 
'value1');
INSERT INTO test (myfield, otherfield) VALUES ('value2', 
'value2');
;
}

$connectionId = sqlite_open($dbfile, 0666, $sqliteerror);

if ($setup) 
sqlite_exec($connectionId, $setup);

$sql = 'SELECT test.myfield, test.otherfield FROM test';

$resultId = sqlite_query($connectionId, $sql);

while ($result = sqlite_fetch_array($resultId, SQLITE_ASSOC))
print_r($result);

?

Expected result:

Array
(
[myfield] = value1
[otherfield] = value1
)
Array
(
[myfield] = value2
[otherfield] = value2
)

Actual result:
--
Array
(
[test.myfield] = value1
[test.otherfield] = value1
)
Array
(
[test.myfield] = value2
[test.otherfield] = value2
)





-- 
Edit this bug report at http://bugs.php.net/?id=32736edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales compares to a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/


Previous Comments:


[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a etc.
http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:00] michael at hotmail dot com

shemales compares to a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

I need shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:07] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a etc.
http://shemales.tula.su/



[2005-04-17 23:26:00] michael at hotmail dot com

shemales compares to a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

This year, shemales the a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:15] michael at hotmail dot com

I need shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:07] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a etc.
http://shemales.tula.su/



[2005-04-17 23:26:00] michael at hotmail dot com

shemales compares to a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:22] michael at hotmail dot com

This year, shemales the a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:15] michael at hotmail dot com

I need shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:07] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a etc.
http://shemales.tula.su/



[2005-04-17 23:26:00] michael at hotmail dot com

shemales compares to a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

The arguments would all have to admit that shemales find a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:29] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:26:22] michael at hotmail dot com

This year, shemales the a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:15] michael at hotmail dot com

I need shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:07] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a etc.
http://shemales.tula.su/



[2005-04-17 23:26:00] michael at hotmail dot com

shemales compares to a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Today, shemales and take a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:37] michael at hotmail dot com

The arguments would all have to admit that shemales find a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:26:29] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:26:22] michael at hotmail dot com

This year, shemales the a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:15] michael at hotmail dot com

I need shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:07] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a etc.
http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Find shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:43] michael at hotmail dot com

Today, shemales and take a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:37] michael at hotmail dot com

The arguments would all have to admit that shemales find a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:26:29] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:26:22] michael at hotmail dot com

This year, shemales the a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:15] michael at hotmail dot com

I need shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Was shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a now. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:51] michael at hotmail dot com

Find shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:43] michael at hotmail dot com

Today, shemales and take a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:37] michael at hotmail dot com

The arguments would all have to admit that shemales find a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:26:29] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:26:22] michael at hotmail dot com

This year, shemales the a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a.
http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:26:58] michael at hotmail dot com

Was shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a now. http://shemales.tula.su/



[2005-04-17 23:26:51] michael at hotmail dot com

Find shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:43] michael at hotmail dot com

Today, shemales and take a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:37] michael at hotmail dot com

The arguments would all have to admit that shemales find a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:26:29] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Anyone can do shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:05] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a.
http://shemales.tula.su/



[2005-04-17 23:26:58] michael at hotmail dot com

Was shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a now. http://shemales.tula.su/



[2005-04-17 23:26:51] michael at hotmail dot com

Find shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:43] michael at hotmail dot com

Today, shemales and take a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:37] michael at hotmail dot com

The arguments would all have to admit that shemales find a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales is of a kind of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:13] michael at hotmail dot com

Anyone can do shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:05] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a.
http://shemales.tula.su/



[2005-04-17 23:26:58] michael at hotmail dot com

Was shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a now. http://shemales.tula.su/



[2005-04-17 23:26:51] michael at hotmail dot com

Find shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:26:43] michael at hotmail dot com

Today, shemales and take a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:20] michael at hotmail dot com

shemales is of a kind of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:13] michael at hotmail dot com

Anyone can do shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:05] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a.
http://shemales.tula.su/



[2005-04-17 23:26:58] michael at hotmail dot com

Was shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a now. http://shemales.tula.su/



[2005-04-17 23:26:51] michael at hotmail dot com

Find shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

And shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:28] michael at hotmail dot com

shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:20] michael at hotmail dot com

shemales is of a kind of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:13] michael at hotmail dot com

Anyone can do shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:05] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a.
http://shemales.tula.su/



[2005-04-17 23:26:58] michael at hotmail dot com

Was shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a now. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:36] michael at hotmail dot com

And shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:27:28] michael at hotmail dot com

shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:20] michael at hotmail dot com

shemales is of a kind of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:13] michael at hotmail dot com

Anyone can do shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:05] michael at hotmail dot com

From now on, let's shemales and find details of a
href=http://shemales.tula.su/; target=_blankshemales/a.
http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Well, shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:47] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:27:36] michael at hotmail dot com

And shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:27:28] michael at hotmail dot com

shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:20] michael at hotmail dot com

shemales is of a kind of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:27:13] michael at hotmail dot com

Anyone can do shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
we asked. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:27:56] michael at hotmail dot com

Well, shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:47] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:27:36] michael at hotmail dot com

And shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:27:28] michael at hotmail dot com

shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:20] michael at hotmail dot com

shemales is of a kind of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

I need shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:03] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
we asked. http://shemales.tula.su/



[2005-04-17 23:27:56] michael at hotmail dot com

Well, shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:47] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:27:36] michael at hotmail dot com

And shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:27:28] michael at hotmail dot com

shemales to you a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

To begin with shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:12] michael at hotmail dot com

I need shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:28:03] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
we asked. http://shemales.tula.su/



[2005-04-17 23:27:56] michael at hotmail dot com

Well, shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:47] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:27:36] michael at hotmail dot com

And shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

We are seriously concerned on  shemales and search for a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:21] michael at hotmail dot com

To begin with shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:28:12] michael at hotmail dot com

I need shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:28:03] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
we asked. http://shemales.tula.su/



[2005-04-17 23:27:56] michael at hotmail dot com

Well, shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:27:47] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:29] michael at hotmail dot com

We are seriously concerned on  shemales and search for a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:28:21] michael at hotmail dot com

To begin with shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:28:12] michael at hotmail dot com

I need shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:28:03] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
we asked. http://shemales.tula.su/



[2005-04-17 23:27:56] michael at hotmail dot com

Well, shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

This year, shemales stands for a href=http://shemales.tula.su/;
target=_blankshemales/a and see yourself. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:38] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:28:29] michael at hotmail dot com

We are seriously concerned on  shemales and search for a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:28:21] michael at hotmail dot com

To begin with shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:28:12] michael at hotmail dot com

I need shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



[2005-04-17 23:28:03] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
we asked. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Was shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:45] michael at hotmail dot com

This year, shemales stands for a href=http://shemales.tula.su/;
target=_blankshemales/a and see yourself. http://shemales.tula.su/



[2005-04-17 23:28:38] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:28:29] michael at hotmail dot com

We are seriously concerned on  shemales and search for a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:28:21] michael at hotmail dot com

To begin with shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:28:12] michael at hotmail dot com

I need shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a to go. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

The shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a to be the most from now.
http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:28:54] michael at hotmail dot com

Was shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:28:45] michael at hotmail dot com

This year, shemales stands for a href=http://shemales.tula.su/;
target=_blankshemales/a and see yourself. http://shemales.tula.su/



[2005-04-17 23:28:38] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:28:29] michael at hotmail dot com

We are seriously concerned on  shemales and search for a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



[2005-04-17 23:28:21] michael at hotmail dot com

To begin with shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:30:18] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:30:10] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:30:01] michael at hotmail dot com

Be sure to read shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:52] michael at hotmail dot com

Take a look at shemales made easy a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:29:44] michael at hotmail dot com

Learn more about shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Did it shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a etc... http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:30:27] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:30:18] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:30:10] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:30:01] michael at hotmail dot com

Be sure to read shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:52] michael at hotmail dot com

Take a look at shemales made easy a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Take a look at shemales made easy a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:44] michael at hotmail dot com

Learn more about shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:35] michael at hotmail dot com

Best offer today is shemales who is a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:27] michael at hotmail dot com

shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:29:19] michael at hotmail dot com

shemales but with none of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:10] michael at hotmail dot com

From now on, let's shemales and a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:19] michael at hotmail dot com

shemales but with none of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:10] michael at hotmail dot com

From now on, let's shemales and a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:02] michael at hotmail dot com

The shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a to be the most from now.
http://shemales.tula.su/



[2005-04-17 23:28:54] michael at hotmail dot com

Was shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:28:45] michael at hotmail dot com

This year, shemales stands for a href=http://shemales.tula.su/;
target=_blankshemales/a and see yourself. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:30:10] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:30:01] michael at hotmail dot com

Be sure to read shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:52] michael at hotmail dot com

Take a look at shemales made easy a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:29:44] michael at hotmail dot com

Learn more about shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:35] michael at hotmail dot com

Best offer today is shemales who is a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Best offer today is shemales who is a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:27] michael at hotmail dot com

shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:29:19] michael at hotmail dot com

shemales but with none of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:10] michael at hotmail dot com

From now on, let's shemales and a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:02] michael at hotmail dot com

The shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a to be the most from now.
http://shemales.tula.su/



[2005-04-17 23:28:54] michael at hotmail dot com

Was shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Learn more about shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:35] michael at hotmail dot com

Best offer today is shemales who is a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:27] michael at hotmail dot com

shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:29:19] michael at hotmail dot com

shemales but with none of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:10] michael at hotmail dot com

From now on, let's shemales and a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:02] michael at hotmail dot com

The shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a to be the most from now.
http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Be sure to read shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:52] michael at hotmail dot com

Take a look at shemales made easy a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:29:44] michael at hotmail dot com

Learn more about shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:35] michael at hotmail dot com

Best offer today is shemales who is a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:27] michael at hotmail dot com

shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:29:19] michael at hotmail dot com

shemales but with none of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

From now on, let's shemales and a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:02] michael at hotmail dot com

The shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a to be the most from now.
http://shemales.tula.su/



[2005-04-17 23:28:54] michael at hotmail dot com

Was shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:28:45] michael at hotmail dot com

This year, shemales stands for a href=http://shemales.tula.su/;
target=_blankshemales/a and see yourself. http://shemales.tula.su/



[2005-04-17 23:28:38] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:28:29] michael at hotmail dot com

We are seriously concerned on  shemales and search for a
href=http://shemales.tula.su/; target=_blankshemales/a!
http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales but with none of a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:29:10] michael at hotmail dot com

From now on, let's shemales and a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:02] michael at hotmail dot com

The shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a to be the most from now.
http://shemales.tula.su/



[2005-04-17 23:28:54] michael at hotmail dot com

Was shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:28:45] michael at hotmail dot com

This year, shemales stands for a href=http://shemales.tula.su/;
target=_blankshemales/a and see yourself. http://shemales.tula.su/



[2005-04-17 23:28:38] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread michael at hotmail dot com
 ID:   31981
 Comment by:   michael at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/


Previous Comments:


[2005-04-17 23:30:01] michael at hotmail dot com

Be sure to read shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:52] michael at hotmail dot com

Take a look at shemales made easy a href=http://shemales.tula.su/;
target=_blankshemales/a and on. http://shemales.tula.su/



[2005-04-17 23:29:44] michael at hotmail dot com

Learn more about shemales  a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:29:35] michael at hotmail dot com

Best offer today is shemales who is a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



[2005-04-17 23:29:27] michael at hotmail dot com

shemales is able to provide a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#28644 [Com]: mod_files.sh generates incorrect directories with hash_bits_per_character != 0

2005-04-17 Thread waltzer at autumnweave dot com
 ID:   28644
 Comment by:   waltzer at autumnweave dot com
 Reported By:  dharana at dharana dot net
 Status:   Open
 Bug Type: Session related
 Operating System: *
 PHP Version:  5CVS-2005-03-06
 New Comment:

In addition to sessions being lost, dependant on settings, information
could be given out regarding the location of sensitive (session)
files.

Here is ext/session/mod_files.sh with a minimum of change to accept a
third parameter (numeric) for hash bits per character (4, 5 or 6). If a
value is not provided, it will function as the original script did.

--- begin script

#! /bin/sh

if test $2 = ; then
echo usage: $0 basedir depth
exit 1
fi

if test $2 = 0; then
exit 0
fi

hash_chars=0 1 2 3 4 5 6 7 8 9 a b c d e f
if test $3 -a $3 -ge 5; then
hash_chars=$hash_chars g h i j k l m n o p q r s \
t u v
if test $3 -eq 6; then
hash_chars=$hash_chars w x y z A B C D E \
F G H I J K L M N \
O P Q R S T U V W \
X Y Z - ,
fi
fi

for i in $hash_chars; do
newpath=$1/$i
mkdir $newpath || exit 1
sh $0 $newpath `expr $2 - 1` $3
done

--- End script


Previous Comments:


[2004-06-05 19:02:21] dharana at dharana dot net

Description:

ext/session/mod_files.sh is a simple script used to generate a dir tree
for storing sessions in files. If you use
session.hash_bits_per_character = 5 or session.hash_bits_per_character
= 6 php will fail to write some sessions.

Expected result:

The script should either:
a) ask the user for the session.hash_bits_per_character as a third
optional argument
b) read it from the php.ini

Actual result:
--
The directories created will cause some sessions to be lost.





-- 
Edit this bug report at http://bugs.php.net/?id=28644edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a we asked. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-17 23:30:36] michael at hotmail dot com

Did it shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a etc... http://shemales.tula.su/



[2005-04-17 23:30:27] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:30:18] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:30:10] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



[2005-04-17 23:30:01] michael at hotmail dot com

Be sure to read shemales find a href=http://shemales.tula.su/;
target=_blankshemales/a. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Well, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a!!! http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:34:48] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a we asked. http://shemales.vladimir.ru/



[2005-04-17 23:30:36] michael at hotmail dot com

Did it shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a etc... http://shemales.tula.su/



[2005-04-17 23:30:27] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:30:18] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



[2005-04-17 23:30:10] michael at hotmail dot com

shemales  a href=http://shemales.tula.su/; target=_blankshemales/a
to go. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

We are seriously concerned on  shemales and find details of a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:34:53] nancy at hotmail dot com

Well, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a!!! http://shemales.vladimir.ru/



[2005-04-18 00:34:48] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a we asked. http://shemales.vladimir.ru/



[2005-04-17 23:30:36] michael at hotmail dot com

Did it shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a etc... http://shemales.tula.su/



[2005-04-17 23:30:27] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



[2005-04-17 23:30:18] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a! http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:34:59] nancy at hotmail dot com

We are seriously concerned on  shemales and find details of a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:34:53] nancy at hotmail dot com

Well, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a!!! http://shemales.vladimir.ru/



[2005-04-18 00:34:48] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a we asked. http://shemales.vladimir.ru/



[2005-04-17 23:30:36] michael at hotmail dot com

Did it shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a etc... http://shemales.tula.su/



[2005-04-17 23:30:27] michael at hotmail dot com

shemales but a href=http://shemales.tula.su/;
target=_blankshemales/a stays. http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:10] nancy at hotmail dot com

Best offer today is shemales get some information on a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:04] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc. http://shemales.vladimir.ru/



[2005-04-18 00:34:59] nancy at hotmail dot com

We are seriously concerned on  shemales and find details of a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:34:53] nancy at hotmail dot com

Well, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a!!! http://shemales.vladimir.ru/



[2005-04-18 00:34:48] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a we asked. http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Best offer today is shemales get some information on a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:04] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc. http://shemales.vladimir.ru/



[2005-04-18 00:34:59] nancy at hotmail dot com

We are seriously concerned on  shemales and find details of a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:34:53] nancy at hotmail dot com

Well, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a!!! http://shemales.vladimir.ru/



[2005-04-18 00:34:48] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a we asked. http://shemales.vladimir.ru/



[2005-04-17 23:30:36] michael at hotmail dot com

Did it shemales cannot a href=http://shemales.tula.su/;
target=_blankshemales/a etc... http://shemales.tula.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Today, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:16] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:10] nancy at hotmail dot com

Best offer today is shemales get some information on a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:04] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc. http://shemales.vladimir.ru/



[2005-04-18 00:34:59] nancy at hotmail dot com

We are seriously concerned on  shemales and find details of a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:34:53] nancy at hotmail dot com

Well, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a!!! http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Well, shemales to you a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:21] nancy at hotmail dot com

Today, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:16] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:10] nancy at hotmail dot com

Best offer today is shemales get some information on a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:04] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc. http://shemales.vladimir.ru/



[2005-04-18 00:34:59] nancy at hotmail dot com

We are seriously concerned on  shemales and find details of a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:26] nancy at hotmail dot com

Well, shemales to you a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:21] nancy at hotmail dot com

Today, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:16] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:10] nancy at hotmail dot com

Best offer today is shemales get some information on a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:04] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc. http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

We appreciate shemales who is a href=http://shemales.vladimir.ru/;
target=_blankshemales/a but it depends...
http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:32] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:26] nancy at hotmail dot com

Well, shemales to you a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:21] nancy at hotmail dot com

Today, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:16] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:10] nancy at hotmail dot com

Best offer today is shemales get some information on a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:37] nancy at hotmail dot com

We appreciate shemales who is a href=http://shemales.vladimir.ru/;
target=_blankshemales/a but it depends...
http://shemales.vladimir.ru/



[2005-04-18 00:35:32] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:26] nancy at hotmail dot com

Well, shemales to you a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:21] nancy at hotmail dot com

Today, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



[2005-04-18 00:35:16] nancy at hotmail dot com

Was shemales is able to provide a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:43] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:37] nancy at hotmail dot com

We appreciate shemales who is a href=http://shemales.vladimir.ru/;
target=_blankshemales/a but it depends...
http://shemales.vladimir.ru/



[2005-04-18 00:35:32] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:26] nancy at hotmail dot com

Well, shemales to you a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:21] nancy at hotmail dot com

Today, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a.
http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

True shemales then a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:49] nancy at hotmail dot com

shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:43] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:37] nancy at hotmail dot com

We appreciate shemales who is a href=http://shemales.vladimir.ru/;
target=_blankshemales/a but it depends...
http://shemales.vladimir.ru/



[2005-04-18 00:35:32] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:35:26] nancy at hotmail dot com

Well, shemales to you a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales and find details of a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:35:55] nancy at hotmail dot com

True shemales then a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



[2005-04-18 00:35:49] nancy at hotmail dot com

shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:43] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:37] nancy at hotmail dot com

We appreciate shemales who is a href=http://shemales.vladimir.ru/;
target=_blankshemales/a but it depends...
http://shemales.vladimir.ru/



[2005-04-18 00:35:32] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a and on. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:36:05] nancy at hotmail dot com

This year, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a to be
the most from now. http://shemales.vladimir.ru/



[2005-04-18 00:36:00] nancy at hotmail dot com

shemales and find details of a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



[2005-04-18 00:35:55] nancy at hotmail dot com

True shemales then a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



[2005-04-18 00:35:49] nancy at hotmail dot com

shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:35:43] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:36:23] nancy at hotmail dot com

Today, shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:36:11] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a and on. http://shemales.vladimir.ru/



[2005-04-18 00:36:05] nancy at hotmail dot com

This year, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a to be
the most from now. http://shemales.vladimir.ru/



[2005-04-18 00:36:00] nancy at hotmail dot com

shemales and find details of a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



[2005-04-18 00:35:55] nancy at hotmail dot com

True shemales then a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Today, shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:36:11] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a and on. http://shemales.vladimir.ru/



[2005-04-18 00:36:05] nancy at hotmail dot com

This year, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a to be
the most from now. http://shemales.vladimir.ru/



[2005-04-18 00:36:00] nancy at hotmail dot com

shemales and find details of a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



[2005-04-18 00:35:55] nancy at hotmail dot com

True shemales then a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



[2005-04-18 00:35:49] nancy at hotmail dot com

shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread nancy at hotmail dot com
 ID:   31981
 Comment by:   nancy at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Anyone can do shemales compares to a
href=http://shemales.vladimir.ru/; target=_blankshemales/a!
http://shemales.vladimir.ru/


Previous Comments:


[2005-04-18 00:36:28] nancy at hotmail dot com

shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a. http://shemales.vladimir.ru/



[2005-04-18 00:36:23] nancy at hotmail dot com

Today, shemales but if a href=http://shemales.vladimir.ru/;
target=_blankshemales/a! http://shemales.vladimir.ru/



[2005-04-18 00:36:11] nancy at hotmail dot com

Today, shemales  a href=http://shemales.vladimir.ru/;
target=_blankshemales/a and on. http://shemales.vladimir.ru/



[2005-04-18 00:36:05] nancy at hotmail dot com

This year, shemales creates the need for a
href=http://shemales.vladimir.ru/; target=_blankshemales/a to be
the most from now. http://shemales.vladimir.ru/



[2005-04-18 00:36:00] nancy at hotmail dot com

shemales and find details of a href=http://shemales.vladimir.ru/;
target=_blankshemales/a etc... http://shemales.vladimir.ru/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#32659 [Fbk-NoF]: PCRE makes apache 1.3.33 crash

2005-04-17 Thread php-bugs
 ID:   32659
 Updated by:   php-bugs@lists.php.net
 Reported By:  appaquet at gmail dot com
-Status:   Feedback
+Status:   No Feedback
 Bug Type: PCRE related
 Operating System: FreeBSD 5.2.1
 PHP Version:  4.3.11
 New Comment:

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to Open.


Previous Comments:


[2005-04-10 20:30:15] [EMAIL PROTECTED]

Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to Open.

Thank you for your interest in PHP.






[2005-04-10 19:08:05] appaquet at gmail dot com

Description:

When I start apache with PHP enabled, it crashes without any error
(only a segfault in the /var/log/messages). I disabled all extensions
one by one to see what was the problem and discovered that PCRE is
making apache crash. Pcre in CLI mode is working fine. It also work
fine if I load it with the dl() command.

I tried to run apache with gdb. It says that apache has exited
normally.






-- 
Edit this bug report at http://bugs.php.net/?id=32659edit=1


#32724 [Opn-WFx]: sqlite_free_result would be useful for some transaction scenarios

2005-04-17 Thread wez
 ID:   32724
 Updated by:   [EMAIL PROTECTED]
 Reported By:  victor-php at boivie dot com
-Status:   Open
+Status:   Wont fix
 Bug Type: Feature/Change Request
 Operating System: Not important
 PHP Version:  5.0.4
 New Comment:

This is actually one of my pet hates in PHP.
I won't be implementing it.


Previous Comments:


[2005-04-17 14:54:14] [EMAIL PROTECTED]

moving to the right category..




[2005-04-16 09:10:20] victor-php at boivie dot com

That actually produces correct results. So setting a resource to null
frees the resource? 

http://se2.php.net/manual/en/language.types.resource.php mentions that
Due to the reference-counting system ... it is automatically detected
when a resource is no longer referred to .. all resources that were in
use for this resource are made free by the garbage collector. For this
reason, it is rarely ever necessary to free the memory manually by
using some free_result function.

So it is actually noted in the manual. However, for symmetry in the PHP
language, I still think it's a good idea to have a sqlite_free_result
that does exactly this, as there is for many other databases (every
other?). It would be more intuitive anyway - what do you think?

Thanks for your help!



[2005-04-16 00:23:56] [EMAIL PROTECTED]

$res = null;

not good enough?



[2005-04-15 21:11:52] victor-php at boivie dot com

Description:

This is a function FEATURE REQUEST and not a real bug. But it's SQLite
related so I put it there instead.

When you start a transaction and want to do a SELECT and then an UPDATE
(for example), the results from the SELECT-query must be finished before
you are allowed to UPDATE (due to the table locking)

This means that you must step through all rows of the resultset (until
the sqlite_fetch_xxx returns false). In some cases, it would be good to
prematurely finish a SELECT-resultset to be able to do an UPDATE without
having to loop through all remaining rows. 

Thus, a sqlite_free_result() function would be useful.

Reproduce code:
---
 $db = sqlite_open(test.db);

 sqlite_exec($db, BEGIN TRANSACTION);
 $res = sqlite_unbuffered_query($db, SELECT * FROM temp);
 $row = sqlite_fetch_array($res);

 sqlite_exec($db, UPDATE temp SET value=10 WHERE id=1);
 sqlite_exec($db, END TRANSACTION);

 sqlite_close($db);


Expected result:

Well, I expect it to fail. 

With a sqlite_free_result($res) after the sqlite_fetch_array-statement
I would expect it to work. 

A workaround is, (after you have retrieved your important results from
the SELECT), to do a 

while (sqlite_fetch_array($res));

... to step through the remaining rows.

Actual result:
--
Well, it fails as I expected.





-- 
Edit this bug report at http://bugs.php.net/?id=32724edit=1


#32738 [NEW]: large array keys causes memory corruption and segfaults

2005-04-17 Thread pvandijk at gmail dot com
From: pvandijk at gmail dot com
Operating system: Linux 2.4.22-1.2115.nptl
PHP version:  4.3.11
PHP Bug Type: Reproducible crash
Bug description:  large array keys causes memory corruption and segfaults

Description:

Hashes with a large number of keys and large key data size seem to cause
memory corruption, which in turn causes php to either segfault or hang
upon exiting (depending on the context of the code).

I've heard mention that arrays are not unlimited in size. This issue seems
to occur at about 65535 elements in my tests, but also depends on the size
of the keys. Presumably this is because i'm indexing my arrays with
Strings, and therefore it's running out of memory faster.

If the memory limit of a hash is reached, should it not be handled more
gracefully than corrupting memory, which results in a segfault?

The code example i've provided seems to reproduce a crash under both linux
and windows, php 4.3.11

Reproduce code:
---
?php
$data = 'hello, i like cheese';
$ar = array();
for($i = 100; $i  300 ; $i++) {
$key = 'abc'.$i;
$ar[$key] = $data;
}

function check($ar) {
global $data;
foreach($ar as $k = $value) {
if($data != $value) {
print 'invalid value: '. $k .' = '. $value .\r\n;
}
}
}
check($ar);
print 'done.'.\r\n;
?

Expected result:

done.

Actual result:
--
done.
Segmentation fault

sorry i cant provide a backtrace or any further info, i dont have access
to these tools on my current dev server.


-- 
Edit bug report at http://bugs.php.net/?id=32738edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32738r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32738r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32738r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32738r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32738r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32738r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32738r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32738r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32738r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32738r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32738r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32738r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32738r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32738r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32738r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32738r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32738r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32738r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32738r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32738r=mysqlcfg


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread walton at hotmail dot com
 ID:   31981
 Comment by:   walton at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

To be informed on asian gang bang but if a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a stays. http://asian-gang-bang.vladimir.su/


Previous Comments:


[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread walton at hotmail dot com
 ID:   31981
 Comment by:   walton at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

I suppose asian gang bang takes focus on a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a! http://asian-gang-bang.vladimir.su/


Previous Comments:


[2005-04-18 03:07:16] walton at hotmail dot com

To be informed on asian gang bang but if a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a stays. http://asian-gang-bang.vladimir.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread walton at hotmail dot com
 ID:   31981
 Comment by:   walton at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

asian gang bang and find details of a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a and see yourself. http://asian-gang-bang.vladimir.su/


Previous Comments:


[2005-04-18 03:07:24] walton at hotmail dot com

I suppose asian gang bang takes focus on a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a! http://asian-gang-bang.vladimir.su/



[2005-04-18 03:07:16] walton at hotmail dot com

To be informed on asian gang bang but if a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a stays. http://asian-gang-bang.vladimir.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread walton at hotmail dot com
 ID:   31981
 Comment by:   walton at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Take a look at asian gang bang the a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a. http://asian-gang-bang.vladimir.su/


Previous Comments:


[2005-04-18 03:07:31] walton at hotmail dot com

asian gang bang and find details of a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a and see yourself. http://asian-gang-bang.vladimir.su/



[2005-04-18 03:07:24] walton at hotmail dot com

I suppose asian gang bang takes focus on a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a! http://asian-gang-bang.vladimir.su/



[2005-04-18 03:07:16] walton at hotmail dot com

To be informed on asian gang bang but if a
href=http://asian-gang-bang.vladimir.su/; target=_blankasian gang
bang/a stays. http://asian-gang-bang.vladimir.su/



[2005-04-15 14:20:55] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip





[2005-02-15 10:58:02] asmi at owear dot ru

Description:

SIGSERV in shutdown_memory_manager after WackoWiki script execution
I cannot find the exact part of code leading to crash.

Reproduce code:
---
http://wackowiki.com/files/wacko.r4.zip

Expected result:

WackoWiki good working for me.

Actual result:
--
(gdb) run -X
Starting program: /usr/local/sbin/httpd -X

Program received signal SIGSEGV, Segmentation fault.
0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0) at
/usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
491 REMOVE_POINTER_FROM_LIST(ptr);
(gdb) p t
$1 = (zend_mem_header *) 0xbfbfad74
(gdb) bt
#0  0x2828df02 in shutdown_memory_manager (silent=0, clean_cache=0)
at /usr/ports/lang/php4/work/php-4.3.10/Zend/zend_alloc.c:491
#1  0x28272ff9 in php_request_shutdown (dummy=0x0) at
/usr/ports/lang/php4/work/php-4.3.10/main/main.c:1003
#2  0x282b78ad in apache_php_module_main (r=0x8125304,
display_source_mode=0)
at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/sapi_apache.c:60
#3  0x282b8468 in send_php (r=0x8125304, display_source_mode=0,
filename=0x0)
at /usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:621
#4  0x282b84c9 in send_parsed_php (r=0x8125304) at
/usr/ports/lang/php4/work/php-4.3.10/sapi/apache/mod_php4.c:636
#5  0x8051fac in ap_invoke_handler (r=0x8125304) at http_config.c:475
#6  0x8061d71 in process_request_internal (r=0x8125304) at
http_request.c:1298
#7  0x8062074 in ap_internal_redirect (new_uri=0x81252cc
/wacko/wakka.php?wakka=SsylkiNaUpravlenieSajjtami, r=0x8122034)
at http_request.c:1435
#8  0x281b5d19 in handler_redirect (r=0x8122034) at mod_rewrite.c:1590
#9  0x8051fac in ap_invoke_handler (r=0x8122034) at http_config.c:475
#10 0x8061d71 in process_request_internal (r=0x8122034) at
http_request.c:1298
#11 0x8061dd0 in ap_process_request (r=0x8122034) at
http_request.c:1314
#12 0x805b19a in child_main (child_num_arg=0) at http_main.c:4786
#13 0x805b30c in make_child (s=0x8084034, slot=0, now=1108460485) at
http_main.c:4901
#14 0x805b429 in startup_children (number_to_start=2) at
http_main.c:4983
#15 0x805b97c in standalone_main (argc=2, argv=0xbfbffb84) at
http_main.c:5315
#16 0x805c063 in main (argc=2, argv=0xbfbffb84) at http_main.c:5657





-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread cameron at hotmail dot com
 ID:   31981
 Comment by:   cameron at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

I need hardcore to me a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a! http://hardcore.vladimir.su/


Previous Comments:


[2005-04-18 04:16:36] cameron at hotmail dot com

Get some information on hardcore compares to a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



[2005-04-18 04:16:28] cameron at hotmail dot com

From now on, let's hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:22] cameron at hotmail dot com

Get some information on hardcore  a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a to be
the most from now. http://hardcore.vladimir.su/



[2005-04-18 04:15:59] cameron at hotmail dot com

From now on, let's hardcore , what is more a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



[2005-04-18 04:15:45] justin at hotmail dot com

This year, adult dating chat  a
href=http://adult-dating-chat.vladimir.su/; target=_blankadult dating
chat/a to be the most from now. http://adult-dating-chat.vladimir.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread cameron at hotmail dot com
 ID:   31981
 Comment by:   cameron at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Learn more about hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/


Previous Comments:


[2005-04-18 04:16:43] cameron at hotmail dot com

I need hardcore to me a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a! http://hardcore.vladimir.su/



[2005-04-18 04:16:36] cameron at hotmail dot com

Get some information on hardcore compares to a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



[2005-04-18 04:16:28] cameron at hotmail dot com

From now on, let's hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:22] cameron at hotmail dot com

Get some information on hardcore  a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a to be
the most from now. http://hardcore.vladimir.su/



[2005-04-18 04:15:59] cameron at hotmail dot com

From now on, let's hardcore , what is more a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread cameron at hotmail dot com
 ID:   31981
 Comment by:   cameron at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

The hardcore then a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a for success. http://hardcore.vladimir.su/


Previous Comments:


[2005-04-18 04:16:51] cameron at hotmail dot com

Learn more about hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:43] cameron at hotmail dot com

I need hardcore to me a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a! http://hardcore.vladimir.su/



[2005-04-18 04:16:36] cameron at hotmail dot com

Get some information on hardcore compares to a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



[2005-04-18 04:16:28] cameron at hotmail dot com

From now on, let's hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:22] cameron at hotmail dot com

Get some information on hardcore  a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a to be
the most from now. http://hardcore.vladimir.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread cameron at hotmail dot com
 ID:   31981
 Comment by:   cameron at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

And hardcore and search for a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a. http://hardcore.vladimir.su/


Previous Comments:


[2005-04-18 04:16:58] cameron at hotmail dot com

The hardcore then a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a for success. http://hardcore.vladimir.su/



[2005-04-18 04:16:51] cameron at hotmail dot com

Learn more about hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:43] cameron at hotmail dot com

I need hardcore to me a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a! http://hardcore.vladimir.su/



[2005-04-18 04:16:36] cameron at hotmail dot com

Get some information on hardcore compares to a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



[2005-04-18 04:16:28] cameron at hotmail dot com

From now on, let's hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#32739 [NEW]: Call to session_start() causes script to prematurely terminate.

2005-04-17 Thread llgames at gmail dot com
From: llgames at gmail dot com
Operating system: Windows XP Professional SP2
PHP version:  5.0.4
PHP Bug Type: Session related
Bug description:  Call to session_start() causes script to prematurely 
terminate.

Description:

When running php 5.0.4 as a CGI module with Apache 2.0.51 a call to
session_start() after a location header will cause the script to
prematurely terminate. An error is not generated on screen or in the
server log files when this occurs. The session data from the first script
is being stored:

var1|s:11:Hello World;

but it is not being retrieved by the second script.

Reproduce code:
---
script1.php

?php
session_start();
$_SESSION['var1'] = 'Hello World';
header('Location: http://127.0.0.1/script2.php');
exit();
?

script2.php

?php
session_start();
print $_SESSION['var1'];
exit();
?

Expected result:

One would expect to see Hello World appear in the browser window.

Actual result:
--
What happens is that the browser is greeted with either a blank page or
the browser simply displays the current page in the state before the
location header was recieved. No errors are being generated. Note that
using the computer's name or actual IP address in the location header has
no effect on the outcome of the two scripts. Manually calling the second
script also has no effect.

-- 
Edit bug report at http://bugs.php.net/?id=32739edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32739r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32739r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32739r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32739r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32739r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32739r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32739r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32739r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32739r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32739r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32739r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32739r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32739r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32739r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32739r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32739r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32739r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32739r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32739r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32739r=mysqlcfg


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread cameron at hotmail dot com
 ID:   31981
 Comment by:   cameron at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

hardcore , what is more a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a. http://hardcore.vladimir.su/


Previous Comments:


[2005-04-18 04:17:05] cameron at hotmail dot com

And hardcore and search for a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a. http://hardcore.vladimir.su/



[2005-04-18 04:16:58] cameron at hotmail dot com

The hardcore then a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a for success. http://hardcore.vladimir.su/



[2005-04-18 04:16:51] cameron at hotmail dot com

Learn more about hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:43] cameron at hotmail dot com

I need hardcore to me a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a! http://hardcore.vladimir.su/



[2005-04-18 04:16:36] cameron at hotmail dot com

Get some information on hardcore compares to a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a!
http://hardcore.vladimir.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#31981 [Com]: Crash in shutdown_memory_manager

2005-04-17 Thread cameron at hotmail dot com
 ID:   31981
 Comment by:   cameron at hotmail dot com
 Reported By:  asmi at owear dot ru
 Status:   Feedback
 Bug Type: Reproducible crash
 Operating System: FreeBSD 4.8-RELEASE-p27
 PHP Version:  4.3.11
 New Comment:

Great deal on hardcore and find details of a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a and see
yourself. http://hardcore.vladimir.su/


Previous Comments:


[2005-04-18 04:17:12] cameron at hotmail dot com

hardcore , what is more a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a. http://hardcore.vladimir.su/



[2005-04-18 04:17:05] cameron at hotmail dot com

And hardcore and search for a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a. http://hardcore.vladimir.su/



[2005-04-18 04:16:58] cameron at hotmail dot com

The hardcore then a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a for success. http://hardcore.vladimir.su/



[2005-04-18 04:16:51] cameron at hotmail dot com

Learn more about hardcore made easy a
href=http://hardcore.vladimir.su/; target=_blankhardcore/a.
http://hardcore.vladimir.su/



[2005-04-18 04:16:43] cameron at hotmail dot com

I need hardcore to me a href=http://hardcore.vladimir.su/;
target=_blankhardcore/a! http://hardcore.vladimir.su/



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/31981

-- 
Edit this bug report at http://bugs.php.net/?id=31981edit=1


#32740 [NEW]: signal 11 on make install-pear-installer, xml_parse

2005-04-17 Thread dev at stalkerbox dot net
From: dev at stalkerbox dot net
Operating system: cygwin/xp
PHP version:  5CVS-2005-04-18 (dev)
PHP Bug Type: Reproducible crash
Bug description:  signal 11 on make install-pear-installer, xml_parse

Description:

see #30490, closed

signal 11 on codemake install-pear-installer/code, in function
xml_parse.  reproducible on fresh cygwin on other hosts.


i still have this problem in php5-200504180030, php5-STABLE-200504180037,
and php-5.0.4; using cygwin on windows xp sp2.

this seems to be a php/xml bug.  should this be in pear bugs anyway?

signal 11 at line 802 of /pear/PEAR/Common.php:
codeif (!xml_parse($xp, $data, 1)) {/code

does NOT crash (but install doesnt work) if you comment out line 786 of
pear/PEAR/Common.php:
codexml_set_element_handler($xp, '_element_start',
'_element_end');/code
however it doesnt crash within the functions _element_start or
_element_end

Actual result:
--
$ make install-pear-installer
Signal 11
make: *** [install-pear-installer] Error 139

-- 
Edit bug report at http://bugs.php.net/?id=32740edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32740r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32740r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32740r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=32740r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=32740r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=32740r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=32740r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=32740r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=32740r=support
Expected behavior:   http://bugs.php.net/fix.php?id=32740r=notwrong
Not enough info: 
http://bugs.php.net/fix.php?id=32740r=notenoughinfo
Submitted twice: 
http://bugs.php.net/fix.php?id=32740r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=32740r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32740r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=32740r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=32740r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=32740r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32740r=float
No Zend Extensions:  http://bugs.php.net/fix.php?id=32740r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32740r=mysqlcfg


#32724 [WFx]: sqlite_free_result would be useful for some transaction scenarios

2005-04-17 Thread victor-php at boivie dot com
 ID:   32724
 User updated by:  victor-php at boivie dot com
 Reported By:  victor-php at boivie dot com
 Status:   Wont fix
 Bug Type: Feature/Change Request
 Operating System: Not important
 PHP Version:  5.0.4
 New Comment:

I respect your opinion, but might I ask you _what_ your pet hate is?
The SQLite extension? The *_free_result-functions? 

If it is just personal and not for the good of the PHP language, I
might consider implementing it myself (sending a patch to the php-dev
group)


Previous Comments:


[2005-04-18 01:11:51] [EMAIL PROTECTED]

This is actually one of my pet hates in PHP.
I won't be implementing it.



[2005-04-17 14:54:14] [EMAIL PROTECTED]

moving to the right category..




[2005-04-16 09:10:20] victor-php at boivie dot com

That actually produces correct results. So setting a resource to null
frees the resource? 

http://se2.php.net/manual/en/language.types.resource.php mentions that
Due to the reference-counting system ... it is automatically detected
when a resource is no longer referred to .. all resources that were in
use for this resource are made free by the garbage collector. For this
reason, it is rarely ever necessary to free the memory manually by
using some free_result function.

So it is actually noted in the manual. However, for symmetry in the PHP
language, I still think it's a good idea to have a sqlite_free_result
that does exactly this, as there is for many other databases (every
other?). It would be more intuitive anyway - what do you think?

Thanks for your help!



[2005-04-16 00:23:56] [EMAIL PROTECTED]

$res = null;

not good enough?



[2005-04-15 21:11:52] victor-php at boivie dot com

Description:

This is a function FEATURE REQUEST and not a real bug. But it's SQLite
related so I put it there instead.

When you start a transaction and want to do a SELECT and then an UPDATE
(for example), the results from the SELECT-query must be finished before
you are allowed to UPDATE (due to the table locking)

This means that you must step through all rows of the resultset (until
the sqlite_fetch_xxx returns false). In some cases, it would be good to
prematurely finish a SELECT-resultset to be able to do an UPDATE without
having to loop through all remaining rows. 

Thus, a sqlite_free_result() function would be useful.

Reproduce code:
---
 $db = sqlite_open(test.db);

 sqlite_exec($db, BEGIN TRANSACTION);
 $res = sqlite_unbuffered_query($db, SELECT * FROM temp);
 $row = sqlite_fetch_array($res);

 sqlite_exec($db, UPDATE temp SET value=10 WHERE id=1);
 sqlite_exec($db, END TRANSACTION);

 sqlite_close($db);


Expected result:

Well, I expect it to fail. 

With a sqlite_free_result($res) after the sqlite_fetch_array-statement
I would expect it to work. 

A workaround is, (after you have retrieved your important results from
the SELECT), to do a 

while (sqlite_fetch_array($res));

... to step through the remaining rows.

Actual result:
--
Well, it fails as I expected.





-- 
Edit this bug report at http://bugs.php.net/?id=32724edit=1