#41350 [Com]: Error in my_thread_global_end()

2007-12-23 Thread cappytoi at yahoo dot com
 ID:   41350
 Comment by:   cappytoi at yahoo dot com
 Reported By:  graham at directhostinguk dot com
 Status:   No Feedback
 Bug Type: MySQL related
 Operating System: Windows 2003
 PHP Version:  5.2.3
 New Comment:

Replacing the php5.2.1/libmysql.dll is fixed my problem with ISS 6 with
ISAPI on Win2003.

http://www.it-etc.com/wp-content/uploads/2007/10/php_520_libmysqldll_win32.zip


Previous Comments:


[2007-12-21 02:46:09] ekarudito at gmail dot com

i have error too...
using apache 2.2.4
php 5.2.1 (windows XP)
mysql 5.0.37

i have this error when using stored procedure.. in php script
and show this error in error log in apache..

and i think's maybe.. caused by bind_result function.. (using mysqli)

because when i comment this function, mozzila can work normally 
although it show few of warning 



[2007-12-17 10:44:22] scratch65535 at att dot net

I'm in the throes of converting from PHP 4 and MySQL 4 to PHP 5.2.5 and
MySQL 5.0.45 on my W2K dev machine.  So I'm moving to
latest-and-greatest code on both sides, and was quite surprised, also
dismayed, to see this my_thread bug.



[2007-12-10 16:21:53] m dot bariola at prodigiweb dot it

Hi,

I experienced this problem too and still am. however I might give some
info that might move the focus to a different point. Reading the
comments, I see that some people are experiencing it with or without
mySQL, or on imap, solving with older lib version, etc.

I have two winXP systems both running the same XAMPP version (1.6.4). I
have no problems on my home PC, so I repeated the configuration on the
work PC. easy as repeating the XAMPP installation with same paths as
home, then copying the apache conf folder from home, and modifying the
Path variable so that it will look for executables in c:\xampp\php
also.

basically, exactly the same as home, but the work PC does not work,
while the home installation has no such problems.

hope this helps in finding the real cause of the problem.



[2007-12-07 13:47:32] jean-yves dot deleze at crealp dot vs dot ch

I recently installed PHP 5.2.5 on Windows and the error was still there
(MySQL version 5.0.45). The only way to remove the error was to use old
versions of php_mysql(i).dll or libmysql.dll (= 5.0.27).

Today I downloaded MySQL 5.0.51 Win32 sources, I compiled the
libmysql.dll library and replaced the one shiped with PHP 5.2.5. This
solved the problem.



[2007-12-05 12:53:41] ulmer at energieagentur dot nrw dot de

The version of the mysql extension at
http://dev.mysql.com/downloads/connector/php/ is 5.0.27 right now which
seems to be quite old. The Changelog date is 2006-11-17, so it is more
than a year old!

Installing this version is NOT a solution for me.



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/41350

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


#43414 [Opn]: Surprising array bug found with special word lang

2007-11-27 Thread cappytoi at yahoo dot com
 ID:   43414
 User updated by:  cappytoi at yahoo dot com
 Reported By:  cappytoi at yahoo dot com
 Status:   Open
 Bug Type: Arrays related
 Operating System: Windows Xp
 PHP Version:  5.2.5
 New Comment:

sorry for bothering, it is all about firefox. thanks anyway.


Previous Comments:


[2007-11-27 14:08:01] cappytoi at yahoo dot com

It only shows in firefox, in internet explorer it gives me the result,
but i couldn't understand why when I do not use implode(); it works
normally. The results are same, doesn't it mean that browser execute the
same code?



[2007-11-27 14:00:40] cappytoi at yahoo dot com

I am using apache 2.59, and my Windows Locale is Turkish. But I think
it is not about locale. Because when I test it with the enviroment on
Centos apache 2.59 with php5.2.4 it gives me the same result and the
locale is en_US.

It may be caused by apache sapi. But the problem function is
implode(). It works normally when I parse the results with foreach



[2007-11-27 13:05:12] [EMAIL PROTECTED]

I tried with CLI:
# src/build/php_5_2/sapi/cli/php t.php
lang[]=turkcelang[]=englishlang[]=german

And no problems there. In what browser does it give you that? Have you
got some weird locale set on your machine or what?



[2007-11-26 17:28:20] cappytoi at yahoo dot com

also found that using times instead of lang causes a similar
result.



[2007-11-26 17:12:05] cappytoi at yahoo dot com

Description:

Hi,

I have found the following problem. I try to produce a query string and
I found that using lang as a key makes problem with implode.

Reproduce code:
---
?php
$all = array(
'turkce',
'english',
'german'
);

$t = array();
foreach ($all as $al) {
$t[] = 'lang[]='.$al;
}

echo implode('',$t);
?

Expected result:

lang[]=turkcelang[]=englishlang[]=german

Actual result:
--
lang[]=turkce#9001;[]=english#9001;[]=german





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


#43414 [Opn]: Surprising array bug found with special word lang

2007-11-27 Thread cappytoi at yahoo dot com
 ID:   43414
 User updated by:  cappytoi at yahoo dot com
 Reported By:  cappytoi at yahoo dot com
 Status:   Open
 Bug Type: Arrays related
 Operating System: Windows Xp
 PHP Version:  5.2.5
 New Comment:

It only shows in firefox, in internet explorer it gives me the result,
but i couldn't understand why when I do not use implode(); it works
normally. The results are same, doesn't it mean that browser execute the
same code?


Previous Comments:


[2007-11-27 14:00:40] cappytoi at yahoo dot com

I am using apache 2.59, and my Windows Locale is Turkish. But I think
it is not about locale. Because when I test it with the enviroment on
Centos apache 2.59 with php5.2.4 it gives me the same result and the
locale is en_US.

It may be caused by apache sapi. But the problem function is
implode(). It works normally when I parse the results with foreach



[2007-11-27 13:05:12] [EMAIL PROTECTED]

I tried with CLI:
# src/build/php_5_2/sapi/cli/php t.php
lang[]=turkcelang[]=englishlang[]=german

And no problems there. In what browser does it give you that? Have you
got some weird locale set on your machine or what?



[2007-11-26 17:28:20] cappytoi at yahoo dot com

also found that using times instead of lang causes a similar
result.



[2007-11-26 17:12:05] cappytoi at yahoo dot com

Description:

Hi,

I have found the following problem. I try to produce a query string and
I found that using lang as a key makes problem with implode.

Reproduce code:
---
?php
$all = array(
'turkce',
'english',
'german'
);

$t = array();
foreach ($all as $al) {
$t[] = 'lang[]='.$al;
}

echo implode('',$t);
?

Expected result:

lang[]=turkcelang[]=englishlang[]=german

Actual result:
--
lang[]=turkce#9001;[]=english#9001;[]=german





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


#43414 [Fbk-Opn]: Surprising array bug found with special word lang

2007-11-27 Thread cappytoi at yahoo dot com
 ID:   43414
 User updated by:  cappytoi at yahoo dot com
 Reported By:  cappytoi at yahoo dot com
-Status:   Feedback
+Status:   Open
 Bug Type: Arrays related
 Operating System: Windows Xp
 PHP Version:  5.2.5
 New Comment:

I am using apache 2.59, and my Windows Locale is Turkish. But I think
it is not about locale. Because when I test it with the enviroment on
Centos apache 2.59 with php5.2.4 it gives me the same result and the
locale is en_US.

It may be caused by apache sapi. But the problem function is
implode(). It works normally when I parse the results with foreach


Previous Comments:


[2007-11-27 13:05:12] [EMAIL PROTECTED]

I tried with CLI:
# src/build/php_5_2/sapi/cli/php t.php
lang[]=turkcelang[]=englishlang[]=german

And no problems there. In what browser does it give you that? Have you
got some weird locale set on your machine or what?



[2007-11-26 17:28:20] cappytoi at yahoo dot com

also found that using times instead of lang causes a similar
result.



[2007-11-26 17:12:05] cappytoi at yahoo dot com

Description:

Hi,

I have found the following problem. I try to produce a query string and
I found that using lang as a key makes problem with implode.

Reproduce code:
---
?php
$all = array(
'turkce',
'english',
'german'
);

$t = array();
foreach ($all as $al) {
$t[] = 'lang[]='.$al;
}

echo implode('',$t);
?

Expected result:

lang[]=turkcelang[]=englishlang[]=german

Actual result:
--
lang[]=turkce#9001;[]=english#9001;[]=german





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


#43414 [NEW]: Surprising array bug found with special word lang

2007-11-26 Thread cappytoi at yahoo dot com
From: cappytoi at yahoo dot com
Operating system: Windows Xp
PHP version:  5.2.5
PHP Bug Type: Arrays related
Bug description:  Surprising array bug found with special word lang

Description:

Hi,

I have found the following problem. I try to produce a query string and I
found that using lang as a key makes problem with implode.

Reproduce code:
---
?php
$all = array(
'turkce',
'english',
'german'
);

$t = array();
foreach ($all as $al) {
$t[] = 'lang[]='.$al;
}

echo implode('',$t);
?

Expected result:

lang[]=turkcelang[]=englishlang[]=german

Actual result:
--
lang[]=turkce#9001;[]=english#9001;[]=german

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


#43414 [Opn]: Surprising array bug found with special word lang

2007-11-26 Thread cappytoi at yahoo dot com
 ID:   43414
 User updated by:  cappytoi at yahoo dot com
 Reported By:  cappytoi at yahoo dot com
 Status:   Open
 Bug Type: Arrays related
 Operating System: Windows Xp
 PHP Version:  5.2.5
 New Comment:

also found that using times instead of lang causes a similar
result.


Previous Comments:


[2007-11-26 17:12:05] cappytoi at yahoo dot com

Description:

Hi,

I have found the following problem. I try to produce a query string and
I found that using lang as a key makes problem with implode.

Reproduce code:
---
?php
$all = array(
'turkce',
'english',
'german'
);

$t = array();
foreach ($all as $al) {
$t[] = 'lang[]='.$al;
}

echo implode('',$t);
?

Expected result:

lang[]=turkcelang[]=englishlang[]=german

Actual result:
--
lang[]=turkce#9001;[]=english#9001;[]=german





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