[PHP-DEV] How do I update Bug Database that I've been posted?

2001-02-21 Thread Yasuo Ohgaki
Hello all, I'm wandering how to I update bug db at www.php.net I've posted 2 bugs recently. I want to update them, add more info, etc. (Or do I supposed to post update here?) Thanks Yasuo Ohgaki _ Get Your Private, Free E

[PHP-DEV] Re: PHP 4.0 Bug #9576 Updated: Parse error with ($i%2) ? echo '':echo''

2001-03-06 Thread Yasuo Ohgaki
a function like "include". (include is a language construct, right?) Then I expect following should not work. ($some_var) ? include('ture.inc') : include('false.inc'); but, it works for some reason. (or include() is a function?) Not a big deal though. Regards, -- Yasuo Ohgaki

Re: [PHP-DEV] PHP 4.0 Bug #9720: Location header + session causes an infinite loop

2001-03-12 Thread Yasuo Ohgaki
posted as a BugID#9365. -- Yasuo Ohgaki - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 3:08 PM Subject: [PHP-DEV] PHP 4.0 Bug #9720: Location header + session causes an infinite loop From: [EMAIL PROTECTED] Operating system

[PHP-DEV] PHP parser behavior.

2001-03-20 Thread Yasuo Ohgaki
t;This is first element of array: $arr['first']"; // I prefer this syntax, but this line cause parse error. Using {} may be the best way to work with assoc arrays in strings, but $arr[first] is a bit easier to read than {$arr['first']}. -- Yasuo Ohgaki -- PHP Development Mailing Lis

[PHP-DEV] Re: Bug #10682 Updated: php -l display the same errors

2001-05-05 Thread Yasuo Ohgaki
* while they are set "On" in php.ini. Thanks for letting me know. -- Yasuo Ohgaki - Original Message - From: "Bug Database" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, May 06, 2001 9:22 AM Subject: Bug #10682 Updated: php -l display the same errors ID: 106

Re: [PHP-DEV] Re: Bug #10682 Updated: php -l display the same errors

2001-05-06 Thread Yasuo Ohgaki
""Yasuo Ohgaki"" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... If I disable one of display_errors and log_errors in php.ini, then it prints 2 errors. If I disable both them in php.ini, it does not display any errors. I thought there

Re: [PHP-DEV] Bug #10751: When ever I submit the japanese sjis charset string $B%=%U%H%&%'%"(B from the client side

2001-05-09 Thread Yasuo Ohgaki
You are not supposed to use SJIS. Try UTF-8 or EUC-JP -- Yasuo Ohgaki [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... From: [EMAIL PROTECTED] Operating system: Red Hat Linux 6.2 PHP version: 4.0.5 PHP Bug Type: Scripting Engine

Re: [PHP-DEV] Security Issues

2001-07-26 Thread Yasuo Ohgaki
$__POST, $__GET, etc soon, though) Users tends to use php.ini-dist, since install manual/instruction says copy php.ini-dist to php.ini. How about provide a php.ini-recommended with appropriate comments in next rerelase? Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe

[PHP-DEV] Detecting multiple execution of the script. (trace log?)

2001-09-02 Thread Yasuo Ohgaki
think it would be useful to find some bugs in PHP itself as well as script bugs created by users. Is it feasible to add trace log option that enables logging function/class method names called? (At least for debug enabled PHP?) -- Yasuo Ohgaki -- PHP Development Mailing List http

[PHP-DEV] Re: Detecting multiple execution of the script. (trace log?)

2001-09-02 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Is it feasible to add trace log option that enables logging function/class method names called? (At least for debug enabled PHP?) I'm lazy to add trace log calls in functins in PHP script. It seems relatively easy to add function call trace log. This is quick and dirty

[PHP-DEV] Re: PHP4.0.7RC1 memory problem

2001-09-04 Thread Yasuo Ohgaki
FYI PHP 4.0.8-dev (updated about 30 min ago) has the same problem. BTW, I don't enable output compression in PHP. No custom output handler. I enabled mbstr-enc-trans, but there should be no acutual translation, since I'm using EUC-JP for both internal/output encoding. Yasuo Ohgaki Yasuo

Re: [PHP-DEV] Re: PHP4.0.7RC1 memory problem

2001-09-05 Thread Yasuo Ohgaki
or you want me to do. Any suggestions are welcome. Thanks Jani, I tied without dmalloc. It seems dmalloc does not relate to this problem. -- Yasuo Ohgaki At 10:05 04-09-01, Yasuo Ohgaki wrote: FYI PHP 4.0.8-dev (updated about 30 min ago) has the same problem. BTW, I don't enable output

Re: [PHP-DEV] Re: PHP4.0.7RC1 memory problem

2001-09-05 Thread Yasuo Ohgaki
executing the same code. If you have suggestion where to set break points or to watch data, I appreciate it. It's pain to run debugger without konwing about source and data structure well. Yasuo Ohgaki _ Do You Yahoo!? Get your free

[PHP-DEV] Re: Bug #13172 Updated: Undefined symbol: gdImageStringFT

2001-09-06 Thread Yasuo Ohgaki
. Yasuo Ohgaki [EMAIL PROTECTED] wrote: ID: 13172 Updated by: sniper Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: GD related Operating System: RedHat 7.1 linux-2.4.9ac7 PHP Version: 4.0CVS-2001-09-06 New Comment: Also this might have some effect: # rm config.cache

Re: [PHP-DEV] Re: PHP4.0.7RC1 memory problem

2001-09-06 Thread Yasuo Ohgaki
. I can see they are called over and over, but stack does not add up. Execution results in segfault instead of reaching memory limit. At least gdb/ddd tells so. Anyway, I think most of users will not be affected by this. If I find anything concrete, I'll post it here again. Yasuo Ohgaki

Re: [PHP-DEV] Re: PHP4.0.7RC1 memory problem

2001-09-06 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: I gave up tring to make reproducible script. For the record, PHP does not execute script properly under very limmited circumstance that I can't find out exactly. Under normal execution, calling function over and over should exhoust memory, since new stack

[PHP-DEV] Re: RC2 (Build failure)

2001-09-06 Thread Yasuo Ohgaki
Zeev Suraski wrote: www.php.net/~zeev/php-4.0.7RC2.tar.gz There are still some CGI build problems reported, but because lots of time passed since RC1, I think it's time for RC2. Zeev Looks like cp1252 related definitions are missing. It's added recently and definitions are in CVS

[PHP-DEV] Re: RC2 (Build failure)

2001-09-06 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Looks like cp1252 related definitions are missing. It's added recently and definitions are in CVS version. I copied mbfilter.h from HEAD branch, it works. Yasuo Ohgaki _ Do You Yahoo!? Get your free

Re: [PHP-DEV] Re: PHP4.0.7RC1 memory problem

2001-09-13 Thread Yasuo Ohgaki
. -- Yasuo Ohgaki _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP-DEV] why does exit() print its argument?

2001-09-29 Thread Yasuo Ohgaki
Markus Fischer wrote: Usualy I am very much against breaking backwards compatibility, but in this case I think it's the best thing to do... Because: - It's already documented that way - It's the 'expected' behaviour (from other languages, and from the docs) As Rasmus said: It would be surprising

[PHP-DEV] ./configure problem (4.0.8-dev)

2001-09-30 Thread Yasuo Ohgaki
... no checking for PQoidValue in -lpq... no checking for PQclientEncoding in -lpq... no checking for pg_encoding_to_char in -lpq... no checking whether to include POSIX-like functions... yes -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL

[PHP-DEV] Re: ./configure problem (4.0.8-dev)

2001-09-30 Thread Yasuo Ohgaki
Ohgaki Yasuo Ohgaki wrote: I would like to try msession so, I deleted and created new configure script with ./buildconf. configure script created fine, but configure script fails to create make file... Configuring Zend checking build system type... i686-pc-linux-gnu checking for ld used by GCC

Re: [PHP-DEV] Re: ./configure problem (4.0.8-dev)

2001-09-30 Thread Yasuo Ohgaki
. Thanks for letting me know. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Re: RC3

2001-10-04 Thread Yasuo Ohgaki
--without-mysql --with-mhash (Sorry, I haven't test other combinations) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Re: RC3

2001-10-04 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Zeev Suraski wrote: Finally, it's out. www.php.net/~zeev/php-4.0.7RC3.tar.gz RC3 seems to have the same problem as 4.0.8-dev. I can't compile with mhash some configure option(s). There is dependecy problem. Problem could be avoided with simple reorder of configure

[PHP-DEV] Re: RC3

2001-10-04 Thread Yasuo Ohgaki
0x0814f489 in ?? () #4 0x08148801 in ?? () #5 0x0813ffb2 in ?? () #6 0x08148bdb in ?? () #7 0x0814f489 in ?? () #8 0x0813fcc2 in ?? () #9 0x08149ab2 in ?? () #10 0x0806862c in ?? () #11 0x08066f23 in ?? () #12 0x403f81be in ?? () (gdb) q -- Yasuo Ohgaki -- PHP Development Mailing List http

[PHP-DEV] Re: RC3

2001-10-05 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Zeev Suraski wrote: Finally, it's out. www.php.net/~zeev/php-4.0.7RC3.tar.gz In addition to previous problem, CGI build seems to print following line again.. X-Powered-By: PHP/4.0.7RC3 Content-type: text/html I saw this line in phpinfo(). % php -i info.html

[PHP-DEV] Re: RC3

2001-10-05 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Yasuo Ohgaki wrote: Zeev Suraski wrote: Finally, it's out. www.php.net/~zeev/php-4.0.7RC3.tar.gz In addition to previous problem, CGI build seems to print following line again.. Minor problems with phpinfo() while running PHP as Apache module. Logo images(PHP

Re: [PHP-DEV] Re: [PHP-QA] Re: RC3

2001-10-05 Thread Yasuo Ohgaki
Ok, it may depends on how PHP is configured. I'll try different configureations later. If you would like to see how it look like, please let me know off list. I'll send image directly. -- Yasuo Ohgaki Phil Driscoll wrote: On Friday 05 October 2001 9:02 am, Hellekin O. Wolf wrote: At 16:31

Re: [PHP-DEV] Re: RC3

2001-10-05 Thread Yasuo Ohgaki
) at ../sysdeps/generic/libc-start.c:129 (gdb) Zeev Suraski wrote: At 09:00 05-10-01, Yasuo Ohgaki wrote: Yasuo Ohgaki wrote: Zeev Suraski wrote: Finally, it's out. www.php.net/~zeev/php-4.0.7RC3.tar.gz In addition to previous problem, CGI build seems to print following line again

[PHP-DEV] Re: 4.1.0RC1 out

2001-10-19 Thread Yasuo Ohgaki
: 86 ( 43%) Tests failed:8 (7.1%) Tests passed: 105 ( 93%) = Skipped 0 extensions. PHP Version: 4.1.0RC1 make: *** [test] error 139 -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DEV] Re: closing ? tag.

2001-10-22 Thread Yasuo Ohgaki
misunderstand what you are suggesting, though. -- Yasuo Ohgaki _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DEV] Re: 4.1.0RC1

2001-10-23 Thread Yasuo Ohgaki
compression is broken. [23-Oct-2001 20:14:19] PHP Fatal error: Allowed memory size of 8388608 bytes exhausted at zlib.c:995 (tried to allocate 2610349 bytes) in /home/yohgaki/public_html/test/phpinfo.php on line 1 Apache 1.3.20/PHP 4.1.0RC CVS/Linux 2.4.4 glibc 2.2.2 -- Yasuo Ohgaki -- PHP

[PHP-DEV] Massive memory leak? (4.1.0RC1)

2001-10-24 Thread Yasuo Ohgaki
, shutting down -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] phpinfo() : Why no PHP Zend image when expose_php=off?

2001-10-24 Thread Yasuo Ohgaki
Okay. I was just curious why phpinfo() behaves differently, since 4.0.6 always shows images. IIRC. I thought mbstr-enc-trans is doing something wrong for the images at first :( -- Yasuo Ohgaki Zeev Suraski wrote: Yes, it's quite intentional. Because there is no way to embed images

Re: [PHP-DEV] phpinfo() : Why no PHP Zend image when expose_php=off?

2001-10-24 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Okay. I was just curious why phpinfo() behaves differently, since 4.0.6 always shows images. IIRC. I thought mbstr-enc-trans is doing something wrong for the images at first :( Oops. I meant mbstring, not mbstr-enc-trans. mbstr-enc-trans is for HTTP input char

Re: [PHP-DEV] Massive memory leak? (4.1.0RC1)

2001-10-24 Thread Yasuo Ohgaki
Jani Taskinen wrote: I can not reproduce this. Could you tell me your zlib version (and OS, glibc, if you are using Linux) -- Yasuo Ohgaki --Jani On Wed, 24 Oct 2001, Yasuo Ohgaki wrote: Stig S. Bakken wrote: The two remaining critical bugs are not a reason to not roll

Re: [PHP-DEV] Massive memory leak? (4.1.0RC1)

2001-10-25 Thread Yasuo Ohgaki
-86. It seems the PC does not have memory problem. -- Yasuo Ohgaki --Jani On Thu, 25 Oct 2001, Yasuo Ohgaki wrote: Jani Taskinen wrote: I can not reproduce this. Could you tell me your zlib version (and OS, glibc, if you are using Linux) -- Yasuo Ohgaki --Jani On Wed, 24 Oct

Re: [PHP-DEV] Massive memory leak? (4.1.0RC1)

2001-10-25 Thread Yasuo Ohgaki
0.9.6b This problem wouldn't be special to my environments. So please test and submit the result. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators

[PHP-DEV] ?php= ? sytanx again

2001-10-25 Thread Yasuo Ohgaki
is obsolete), add ?php= ? syntax for replacement, since PHP4.1.0 is in release process. Patch for adding ?php= ? syntax attached. BTW, I suppose you also would like to rename php.ini-dist to php.ini-compatible (or like) and php.ini-recommended to php.ini-dist. -- Yasuo Ohgaki Index

Re: [PHP-DEV] ?php= ? sytanx again

2001-10-26 Thread Yasuo Ohgaki
, getting rid of ? ? is not good idea. ? start tag may confuse some new PHP users, but it's not a big deal. -- Yasuo Ohgaki __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP Development Mailing List http

Re: [PHP-DEV] ?php= ? sytanx again

2001-10-26 Thread Yasuo Ohgaki
? or % tags just to use OPEN_TAG_WITH_ECHO. I'm one of them enables ASP tag for that... ?= and %= are not portable, too. Having many ?php echo does not look nice, especially if file is written in mostly HTML... Not having ?php= is promoting use of short tags. (At least for me) -- Yasuo Ohgaki

Re: [PHP-DEV] Massive memory leak? (4.1.0RC1)

2001-10-28 Thread Yasuo Ohgaki
2.4.4) It seems system works much better with newer kernel. It doesn't freeze/crash at least. However, problem still exists. Please refer to http://bugs.php.net/bug.php?id=13806 for details. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL

[PHP-DEV] Re: Echo vs in/out

2001-10-28 Thread Yasuo Ohgaki
'; } ? === end === === script2 === ?php for($i=0; $i 5; $i++) { ? abcderfghjklmn ?php } ? === end === There is not much difference, but script1 is just a little faster on my system. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP-DEV] Weirdness

2001-10-29 Thread Yasuo Ohgaki
problem descriptions and backtrace in mail list archive. (the backtrace won't help debugging the problem, though) -- Yasuo Ohgaki On Mon, 29 Oct 2001, Ivo van Heel wrote: I am SURE that this function is called only once. Further more, one of the DB fields is 100, where it should be 8, which

[PHP-DEV] PHP Session: cache limitter addition request

2001-10-29 Thread Yasuo Ohgaki
be avoided without "Expire" header. It would be nice to have private cache limitter without Expire header. Could you apply attached diff (or like) to session.c? The diff file is taken against today's CVS HEAD branch. Thank you. -- Yasuo Ohga

[PHP-DEV] Re: empty(0)

2001-10-30 Thread Yasuo Ohgaki
Sterling Hughes wrote: I don't know if this has been discussed yet, but while we're getting all crazy with breaking compat in 4.1 and/or 5.0, why not go ahead and finally fix empty(0) to return false, like it really should (a string with 0 in it, is *not* imho an empty

[PHP-DEV] Re: empty(0)

2001-10-30 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Sterling Hughes wrote: I don't know if this has been discussed yet, but while we're getting all crazy with breaking compat in 4.1 and/or 5.0, why not go ahead and finally fix empty(0) to return false, like it really should (a string with 0

[PHP-DEV] Re: Weirdness, additional comment

2001-10-30 Thread Yasuo Ohgaki
normally. Now, that can't be normal. That's what I experienced, too. I couldn't locate which line of my code causing this. I think if you move code blocks, PHP stops doing that. Hope you can find what kind of code cause this... -- Yasuo Ohgaki -- PHP Development Mailing List http

[PHP-DEV] php_ini.c.diff

2001-10-30 Thread Yasuo Ohgaki
th mozilla, orig_value cell is rendered as black box.) -- Yasuo Ohgaki Index: php_ini.c === RCS file: /repository/php4/main/php_ini.c,v retrieving revision 1.74 diff -u -r1.74 php_ini.c --- php_ini.c 6 Oct 2001 20:13:38 - 1.74 +++

Re: [PHP-DEV] Re: empty(0)

2001-10-30 Thread Yasuo Ohgaki
Pierre-Alain Joye wrote: On Wed, 31 Oct 2001 08:13:28 +0900 Yasuo Ohgaki [EMAIL PROTECTED] wrote: Yasuo Ohgaki wrote: Sterling Hughes wrote: I don't know if this has been discussed yet, but while we're getting all crazy with breaking compat in 4.1 and/or 5.0, why

Re: [PHP-DEV] php_ini.c.diff

2001-11-01 Thread Yasuo Ohgaki
) for better performance. If anyone is not interested in writing the interface, I might write it. -- Yasuo Ohgaki At 01:40 31/10/2001, Yasuo Ohgaki wrote: This patch fixes small phpinfo() problem. Current phpinfo() does not display values properly, if - value is string AND - value

[PHP-DEV] CVS Account Request: yohgaki

2001-11-01 Thread Yasuo Ohgaki
I'm interested in QA mainly. But I'm also prepared for contributing Japanese Documentation, improving multi-byte encoding support and implementation of asyncronous query interface for pgsql module. phpdoc/ja phpdoc/en/functions (for mbstring pgsql)php4/ext/mbstring php4/ext/pgsql --

[PHP-DEV] [PATCH] pgsql async query functions

2001-11-03 Thread Yasuo Ohgaki
when user have multiple db server) Missing feature is that raise warning or prohibit async query on persistent connection, since it can cause problems. I haven't implemented this, yet. Could anyone apply this patch? Thank you. -- Yasuo Ohgaki Index: pgsql.c

[PHP-DEV] Re: [PATCH] pgsql async query functions

2001-11-03 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: I really need async query functions for pgsql, so I wrote it. All functions are *simple* libpq wrapper. This patch is safe to apply. Async query can be very useful to improve performance, since pg_sendquery() returns immediately, then user can use pg_getresult() to get

Re: [PHP-DEV] Bug #13918 Updated: PHP can't find mysql.sock

2001-11-03 Thread Yasuo Ohgaki
). === Environmnet variables can affect pgsql module behavior. It would be nice if PHP Manual has description about it. -- Yasuo Ohgaki On 3 Nov 2001 [EMAIL PROTECTED] wrote: ID: 13918 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Feature/Change

[PHP-DEV] PGSQL async query functions and other utility functions

2001-11-04 Thread Yasuo Ohgaki
f async functions. I don't want to implement this, but I'm sure there will users use aysnc functions on persistent connection improper manner... libpq is thread safe from pgsql 7.0 as long as different connection is used. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubsc

[PHP-DEV] Re: Proposal for release process (Was: Re: [PHP-DEV] 4.1.0)

2001-11-10 Thread Yasuo Ohgaki
in are bogus. I've submitted few bogus reports also :) This should be good idea. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Re: Memory issue with output compression (was Re: [PHP-DEV] 4.1.0)

2001-11-10 Thread Yasuo Ohgaki
Zeev Suraski wrote: After some more investigation, it *might* be related to a bug that existed in 4.0.7 with multiple levels of internal output buffering, so I may have spoken too soon. I can't really reproduce it, so I asked Yasuo Ohgaki to take a look at it. If it's indeed the issue

Re: [PHP-DEV] Bug #14012 Updated: a struct has problem for sysvshm

2001-11-10 Thread Yasuo Ohgaki
Markus Fischer wrote: Btw, isn't sufficient to just mail CVS problems to the list and only create a new bug when really nothing happens? Else I think we clutter the bug system only with small temporary bug reports ... Ok. I'll do that from next time. -- Yasuo Ohgaki -- PHP Development

Re: [PHP-DEV] Bug #13806 Updated: zlib compression is not

2001-11-11 Thread Yasuo Ohgaki
. (I'm testing with --enable-mbstr-enc-trans) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] Bug #14012: a struct has problem for sysvshm

2001-11-11 Thread Yasuo Ohgaki
/yohgaki/cvs/php/PHP4/ext/sysvshm' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/yohgaki/cvs/php/PHP4/ext' make: *** [all-recursive] Error 1 [yohgaki@dev PHP4]$ Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP-DEV] ?php= ? sytanx again

2001-11-08 Thread Yasuo Ohgaki
tr tdFirst Name/td td%= $FirstName %/td /tr tr tdLast Name/td td%= $LastName %/td /tr tr tdLogin Options/td td%= $LoginOptions %/td /tr /table /body /html -- Yasuo Ohgaki _ Do You Yahoo

[PHP-DEV] Re: PGSQL async query functions and other utility functions

2001-11-08 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: I forgot to send the patch to the maintainer and the author, but I guess they noticed patch in php-dev. http://marc.theaimsgroup.com/?l=php-devm=100483599714646w=2 I would like to hear from Jouni and Zeev how you think about async qeury and how it should be implemented

[PHP-DEV] Re: [PATCH] sablotron scheme/sax handlers fix

2001-11-12 Thread Yasuo Ohgaki
Has anyone take a look at this patch? I don't use xslt and don't know if this fix is valid or not. If this patch fixes problem, it should be applied. IMO. (There are 2 bugs for xslt, #13511 #13750, is this patch fixes these problems?) -- Yasuo Ohgaki Lenar Lõhmus wrote: Hi, Since

[PHP-DEV] Re: Bug #14036: Segfault when using multipart form data

2001-11-12 Thread Yasuo Ohgaki
, though. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Re: Bug #14036: Segfault when using multipart form data

2001-11-12 Thread Yasuo Ohgaki
, though. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] 4.1.0

2001-11-12 Thread Yasuo Ohgaki
writing this message. Thank you Jani :) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Re: PHP 4.1.0RC2 - can we roll?

2001-11-12 Thread Yasuo Ohgaki
Zeev Suraski wrote: I'm going to roll PHP 4.1.0RC2 in an hour if nobody shouts. Zeev Sounds *OK* to me. I'm warried about xlst crash bug patch. http://marc.theaimsgroup.com/?l=php-devm=100531454215810w=2 It's patch for Bug #13872. I don't see it on both 4.2.0 and 4.1.0. -- Yasuo

[PHP-DEV] Re: 4.1.0RC2

2001-11-12 Thread Yasuo Ohgaki
Zeev Suraski wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) Zeev It builds and runs for both cgi and apache SAPI. Linux 2.4.4/glibc 2.2.2 Apahe 1.3.22/modssl 2.8.5/openssl 0.9.5b -- summary -- Session module tests failed due to failure for openning

[PHP-DEV] Re: 4.1.0RC2

2001-11-12 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Zeev Suraski wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) Zeev It builds and runs for both cgi and apache SAPI. Linux 2.4.4/glibc 2.2.2 Apahe 1.3.22/modssl 2.8.5/openssl 0.9.5b -- summary -- Session module tests failed due

[PHP-DEV] Re: 4.1.0RC2

2001-11-12 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Yasuo Ohgaki wrote: It builds and runs for both cgi and apache SAPI. Linux 2.4.4/glibc 2.2.2 Apahe 1.3.22/modssl 2.8.5/openssl 0.9.5b -- summary -- Session module tests failed due to failure for openning /tmp/sess_test for some reason. (/tmp is world writable

[PHP-DEV] Re: 4.1.0RC2

2001-11-12 Thread Yasuo Ohgaki
Zeev Suraski wrote: http://www.php.net/~zeev/php-4.1.0RC2.tar.gz Do your thang :) Zeev FYI. ChangeLog file is missing in the archive :) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP-DEV] Re: Bug #11389 Updated: array_walk causes Apache to crash

2001-11-13 Thread Yasuo Ohgaki
? -- Yasuo Ohgaki [EMAIL PROTECTED] wrote: ID: 11389 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Critical Bug Type: Arrays related Operating System: W98 PHP Version: 4.0.6 New Comment: But this is not the real script!! My real script have a lot of code lines

[PHP-DEV] Re: Respected developers !

2001-11-14 Thread Yasuo Ohgaki
Manuel Lemos wrote: Apply for a CVS account. Somebody should reply to those requests. I got no response also. Although, Zeev suggested to do that. It seems most of requests are ignored. I don't mind it though. :) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net

[PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20 to coredump

2001-11-14 Thread Yasuo Ohgaki
Reproduced on 4.1.0RC2 and 4.2.0 CVS. -- Yasuo Ohgaki [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] Operating system: FreeBSD 4.4-STABLE PHP version: 4.0CVS-2001-11-14 PHP Bug Type: Reproducible crash Bug description: unset($array[]) causes apache 1.3.20

[PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20 to coredump

2001-11-14 Thread Yasuo Ohgaki
Forgot to attach backtrace. (4.1.0RC2 CGI) Yasuo Ohgaki (gdb) run test.php Program received signal SIGSEGV, Segmentation fault. 0x08178582 in execute (op_array=0x82281dc) at ./zend_execute.c:2201 (gdb) bt #0 0x08178582 in execute (op_array=0x82281dc) at ./zend_execute.c:2201 #1 0x0815574e

[PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20 to coredump

2001-11-14 Thread Yasuo Ohgaki
) { + if (ht offset) { switch (offset-type) { case IS_DOUBLE: case IS_RESOURCE: --- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL

Re: [PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20 to coredump

2001-11-15 Thread Yasuo Ohgaki
Derick Rethans wrote: Hello, On Thu, 15 Nov 2001, Yasuo Ohgaki wrote: Suggested fix. This fixes the symtom, not the problem Ok. I thought _get_zval_ptr() may return NULL when array element is not initilized. I leave this problem for real php hackers :) -- Yasuo Ohgaki

Re: [PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20

2001-11-16 Thread Yasuo Ohgaki
Derick Rethans wrote: On Thu, 15 Nov 2001, Yasuo Ohgaki wrote: Hi Derick, May I ask question? I've spent a little more time on this. (When I submit the patch, I spent less than 10 minutes :) When unset($arr[]) is called, get_zval_ptr() returns NULL since znode has IS_UNUSED type

Re: [PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20

2001-11-16 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Derick Rethans wrote: On Thu, 15 Nov 2001, Yasuo Ohgaki wrote: Hi Derick, May I ask question? I've spent a little more time on this. (When I submit the patch, I spent less than 10 minutes :) When unset($arr[]) is called, get_zval_ptr() returns NULL since znode

Re: [PHP-DEV] Re: Bug #14063: unset($array[]) causes apache 1.3.20

2001-11-16 Thread Yasuo Ohgaki
Oops sorry. Never mind. I need some more sleep :) Yasuo Ohgaki wrote: Yasuo Ohgaki wrote: Derick Rethans wrote: On Thu, 15 Nov 2001, Yasuo Ohgaki wrote: Hi Derick, May I ask question? I've spent a little more time on this. (When I submit the patch, I spent less than 10 minutes

[PHP-DEV] [patch] pgsql async query

2001-11-24 Thread Yasuo Ohgaki
limitations in libpq. You may not be able to execute query asyncronously) Comments are welcome. -- Yasuo Ohgaki Index: pgsql.c === RCS file: /repository/php4/ext/pgsql/pgsql.c,v retrieving revision 1.130 diff -u -r1.130 pgsql.c --- pgsql.c

[PHP-DEV] Re: [patch] pgsql async query

2001-11-25 Thread Yasuo Ohgaki
A few changes, - pg_reset() returns boolean value now - added more cleanup for leftover Comments are welcome. PS: If you have problem with attachment, please let me know. -- Yasuo Ohgaki pgsql_async.diff Description: Binary data -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] CVS Account Request: aidanpeiser

2001-11-29 Thread Yasuo Ohgaki
it? -- Yasuo Ohgaki Zak Greant wrote: On November 29, 2001 10:38 am, aidan peiser wrote: Learning PHP Coding in PHP Reading the PHP source Writing web pages with PHP Good Day, Thankfully, you do not need a CVS account for these purposes. Please review the notes at http

Re: [PHP-DEV] Bug #14294 Updated: is_dir() causes stat failed warning

2001-11-30 Thread Yasuo Ohgaki
getting rid of warnings. I think we really need consistency for error messages... at least for standard module functions. -- Yasuo Ohgaki On Fri, Nov 30, 2001 at 08:13:59AM -, [EMAIL PROTECTED] wrote : ID: 14294 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus

Re: [PHP-DEV] Bug #14294 Updated: is_dir() causes stat failed warning

2001-11-30 Thread Yasuo Ohgaki
Sorry for multiple messages. I have to be more careful when there is mail client error... -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail

[PHP-DEV] 4.1.0 CVS RC4 has -02 option with --enable-debug ?

2001-12-01 Thread Yasuo Ohgaki
Is this change is intended? On my system, 4.1.0 have -g -O2 for compile options with --enable-debug. It's slower to compile and less debug info in objects with -O2 option... -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DEV] Re: 4.1.0 CVS RC4 has -02 option with --enable-debug ?

2001-12-01 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Is this change is intended? On my system, 4.1.0 have -g -O2 for compile options with --enable-debug. It's slower to compile and less debug info in objects with -O2 option... BTW, this happens for CGI build. --with-apxs, it build only with -g. HEAD branch does not have

Re: [PHP-DEV] Bug #14226 Updated: multiple ob_end_clean() problem

2001-12-02 Thread Yasuo Ohgaki
too? - Markus It seems CGI version output is ok to me also. (4.2.0-dev 2001/11/15. I thought I've tested with CGI version when I reported this bug. It seems I'm not.) Today's HEAD 4.1.0RC with Aapche SAPI has problem, at least with my config. -- Yasuo Ohgaki On Sun, Dec 02, 2001

Re: [PHP-DEV] Bug #14226 Updated: multiple ob_end_clean() problem

2001-12-02 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Markus Fischer wrote: I tested the CGI version (command line) and the first outptus: $ php -f 14226.php BBB$ $ php -v 4.2.0-dev (with usual enable debug, etc) so this does only apply to apache? can you test

[PHP-DEV] [PATCH] ob_get_level()

2001-12-02 Thread Yasuo Ohgaki
) -- Yasuo Ohgaki Index: output.c === RCS file: /repository/php4/main/output.c,v retrieving revision 1.80 diff -u -r1.80 output.c --- output.c30 Nov 2001 10:48:38 - 1.80 +++ output.c2 Dec 2001 22:20:58 - @@ -585,6

Re: [PHP-DEV] [PATCH] ob_get_level()

2001-12-02 Thread Yasuo Ohgaki
Derick Rethans wrote: Hello, On Mon, 3 Dec 2001, Yasuo Ohgaki wrote: +/* {{{ proto integer ob_get_level(void) + Return the nesting level of the output buffer */ +PHP_FUNCTION(ob_get_level) +{ + Z_LVAL_P(return_value) = OG(ob_nesting_level); + Z_TYPE_P(return_value

Re: [PHP-DEV] [PATCH] ob_get_level()

2001-12-02 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Derick Rethans wrote: Hello, On Mon, 3 Dec 2001, Yasuo Ohgaki wrote: +/* {{{ proto integer ob_get_level(void) + Return the nesting level of the output buffer */ +PHP_FUNCTION(ob_get_level) +{ + Z_LVAL_P(return_value) = OG(ob_nesting_level

[PHP-DEV] Re: Bug #14226 Updated: multiple ob_end_clean() problem

2001-12-02 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: ID: 14226 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Output Control Operating System: Linux 2.4.4/glibc 2.2.2 PHP Version: 4.1.0RC CVS (2001/12/2) New Comment: Ok I think I found what's wrong in PHP

[PHP-DEV] RFC: nested output handler issues

2001-12-03 Thread Yasuo Ohgaki
objects or writes patch, I'll write one. If you have comments, please let me know before I start coding. (I'll wait about a week for feedback at least) Thank you for your comments. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DEV] Re: 4.1.0RC5

2001-12-03 Thread Yasuo Ohgaki
' \ '--enable-sockets' \ '--enable-mbstring' \ '--enable-mbstr-enc-trans' \ '--enable-mbregex' \ '--enable-memory-limit' \ '--enable-wddx' \ '--enable-mailparse' \ '--enable-debug' \ $@ -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DEV] php-patches@lists.php.net?

2001-12-04 Thread Yasuo Ohgaki
How about to have *new* list for sending patch for PHP? PostgreSQL has list for that. It seems the list is working great for them. With the list, it's easier to search who sent which patch. (patches may be treated better than now :) -- Yasuo Ohgaki -- PHP Development Mailing List http

Re: FW: [PHP-DEV] _SERVER HTTP_SERVER_VARS

2001-12-04 Thread Yasuo Ohgaki
Emanuel Dejanu wrote: Hi there, $_* arrays are a copy of the long GLOBAL vars. So $_SERVER is a copy of $HTTP_SERVER_VARS or is a reference? $_SEERVER, etc are reference of $HTTP_*_VARS. I think this should be noted *obvious* place when 4.1.0 is released :) -- Yasuo Ohgaki -- PHP

[PHP-DEV] Re: Bug #14349: UTF8_ENCODE conflicts with Type Juggling

2001-12-05 Thread Yasuo Ohgaki
I cannot reproduce with 4.1.0RC5 and 4.2.0-dev (cgi). I suggest to test against 4.1.0RC5 http://www.php.net/~zeev and 4.2.0-dev http://snaps.php.net Regards, -- Yasuo Ohgaki [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] Operating system: Debian GNU/Linux 2.2 PHP version

  1   2   3   4   5   6   7   8   9   10   >