[PHP-DEV] Re: [PHP-CVS] cvs: php4 / CODING_STANDARDS

2002-09-08 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Sun, 8 Sep 2002, Yasuo Ohgaki wrote: yohgaki Sun Sep 8 18:38:57 2002 EDT Modified files: /php4 CODING_STANDARDS Log: It seems we're better to mention about missing functions. PHP_FUNCTION - ZEND_FUNCTION erm

[PHP-DEV] Re: [PHP-CVS] cvs: php4 / CODING_STANDARDS

2002-09-08 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Sun, 8 Sep 2002, Yasuo Ohgaki wrote: yohgaki Sun Sep 8 18:38:57 2002 EDT Modified files: /php4 CODING_STANDARDS Log: It seems we're better to mention about missing functions. PHP_FUNCTION - ZEND_FUNCTION erm

[PHP-DEV] Re: [PHP-CVS] cvs: php4 / CODING_STANDARDS

2002-09-08 Thread Yasuo Ohgaki
Oops. I thought both SMTP and NNTP is failed, but only STMP was failing. Sorry for duplicated messages. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: #19286 [NEW]: header() Control Char Injection

2002-09-07 Thread Yasuo Ohgaki
This obvious security risk is mentioned in bugtraq today. IMHO, this is users' fault. They must check values before using it. In this specfic case, user should use simple regex before feeding str to header(). Any opinion to meke this to won't fix? -- Yasuo Ohgaki [EMAIL PROTECTED] wrote

[PHP-DEV] Re: #19286 [NEW]: header() Control Char Injection

2002-09-07 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: This obvious security risk is mentioned in bugtraq today. IMHO, this is users' fault. They must check values before using it. In this specfic case, user should use simple regex before feeding str to header(). Any opinion to meke this to won't fix? One thing we could

Re: [PHP-DEV] Re: #19286 [NEW]: header() Control Char Injection

2002-09-07 Thread Yasuo Ohgaki
I'll make it won't fix. -- Yasuo Ohgaki Melvyn Sopacua wrote: On Sun, 8 Sep 2002, Yasuo Ohgaki wrote: YO Date: Sun, 08 Sep 2002 11:01:44 +0900 YO From: Yasuo Ohgaki [EMAIL PROTECTED] YO To: [EMAIL PROTECTED] YO Subject: [PHP-DEV] Re: #19286 [NEW]: header() Control Char Injection YO YO

Re: [PHP-DEV] mbstring

2002-09-03 Thread Yasuo Ohgaki
Jim Winstead wrote: Yasuo Ohgaki [EMAIL PROTECTED] wrote: Marcus B?rger wrote: We already had some discussion on some IF statements in ini files already. I guess we might call to another mail thread here and hope we find a volunteer. I will not invent any work here since that would be totally

Re: [PHP-DEV] mbstring

2002-09-03 Thread Yasuo Ohgaki
will not be changed. The API is there since php3 days. This is another reason why mbstring is considered stable. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: mbstring

2002-09-03 Thread Yasuo Ohgaki
that allocates more memory than it is needed. We might have to do something about this or just return length inculdes garbages or make it act like current strlen() Opinions? -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: mbstring

2002-09-02 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Mon, 2 Sep 2002, Yasuo Ohgaki wrote: [EMAIL PROTECTED] wrote: No, not really. It was noted by more than one person that it breaks some simple things in PHP, affecting the bahavior of scripts that are already out there. Until it is totally stable (which you

[PHP-DEV] Re: mbstring

2002-09-01 Thread Yasuo Ohgaki
James Cox wrote: Phil Copeland redhat pointed me at this bug: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=72752 Check with latest CVS before posting. I fixed this bug weeks ago. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

[PHP-DEV] Re: mbstring

2002-09-01 Thread Yasuo Ohgaki
multibyte strings, it's not a core feature. And read discussion why we have it as a default. If you don't like it, remove it by yourself. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] mbstring

2002-09-01 Thread Yasuo Ohgaki
correctly unless mbstring is loaded (or built in)? It's not a good idea. What we need is smart ini parser and module loader that understand module dependecy and proper loading order. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / NEWS

2002-09-01 Thread Yasuo Ohgaki
and discussed. This is mentioned here sevral times at least... Except simple bugfix patch, if there is maintainer and/or author is known, patch should be sent to maintainer and/or author. IMHO. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

Re: [PHP-DEV] Segfault in ob_*() callback

2002-09-01 Thread Yasuo Ohgaki
, etc As these function accesses internal data structure outside of engine's control, thus it may crash PHP. I added warning to array functions, but I might forget to mentioned this in ob functions page. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

Re: [PHP-DEV] mbstring

2002-09-01 Thread Yasuo Ohgaki
We should have generic code for this. IMHO. -- Yasuo Ohgaki Brian France wrote: I know this is ugly, but what about making the extensions handle it themselves? Your example of session_pgsql: In the extension init code: ext_enabled = 1; if ( dlsym( NULL, psql_module_entry

Re: [PHP-DEV] mbstring

2002-09-01 Thread Yasuo Ohgaki
Forgot to mention this. This will not solve module loading order issues. Not only checks if modules needed in there, but also we should be able to load module in order. To achive this, we need to change module loading code which is written in the engine. -- Yasuo Ohgaki Yasuo Ohgaki wrote

Re: [PHP-DEV] mbstring

2002-09-01 Thread Yasuo Ohgaki
better to provide solution for it, if you strongly insist. If you find problem mbsting, let us know. Problem should be easy to fix, since the code is _very_ stable. New streamable filter will not break any thing, also. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] mbstring

2002-09-01 Thread Yasuo Ohgaki
in ini files already. I guess we might call to another mail thread here and hope we find a volunteer. I will not invent any work here since that would be totally useless. I think having a IF in php.ini is good idea. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard info.c

2002-08-28 Thread Yasuo Ohgaki
Marcus Börger wrote: Not that mod_apache delivering txt format info pages would be unusable but a simple phpinfo(0|1) would be better. I would like to see phpinfo(true|false) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard info.c

2002-08-28 Thread Yasuo Ohgaki
phpinfo(). IMO, using html_errors flag to change phpinfo() behavior is not nice, though. phpinfo() is not a error :) I prefer less php.ini settings whenever possible/without good reason. Therefore, I vote +1 for phpinfo(true|false). -- Yasuo Ohgaki -- PHP Development Mailing List http

Re: [PHP-DEV] tests tweaks

2002-08-20 Thread Yasuo Ohgaki
... -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] trans-sid warning?

2002-08-19 Thread Yasuo Ohgaki
handler) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] trans-sid warning?

2002-08-19 Thread Yasuo Ohgaki
worry, too. I guess msession is already doing this. -- Yasuo Ohgaki -Rasmus On Mon, 19 Aug 2002, Yasuo Ohgaki wrote: Rasmus Lerdorf wrote: Ok, then that is a bug that needs to be fixed before 4.3. This is one of the current session module behavior that I worry. We need at least strlen

Re: [PHP-DEV] Re: [PHP-DOC] Re: #3793 [Ana-Opn]: session.gc_maxlifetime

2002-08-19 Thread Yasuo Ohgaki
Rasmus Lerdorf wrote: On Mon, 19 Aug 2002, Yasuo Ohgaki wrote: Zeev Suraski wrote: I don't think that's the way to do it at all. In theory, it's no problem to track whether changes were made to the session data, and perform the write at the end of the request, only if we tracked a change

Re: [PHP-DEV] trans-sid warning?

2002-08-19 Thread Yasuo Ohgaki
active session. I don't see any reason to allow visitors to specify their own custom SID. What is the benefit to that? -Rasmus I don't do that, but some users are using custom session id to share values among users... IMHO, bad practice, though... -- Yasuo Ohgaki On Mon, 19 Aug 2002

Re: [PHP-DEV] Re: [PHP-DOC] Re: #3793 [Ana-Opn]: session.gc_maxlifetime

2002-08-18 Thread Yasuo Ohgaki
. -- Yasuo Ohgaki Zeev At 04:52 18/08/2002, Yasuo Ohgaki wrote: Rasmus Lerdorf wrote: Well, I wouldn't call that easy. To do it in the session handler you would need to add a bunch of code to the write handler. It would need to read the current session data, then compare

Re: [PHP-DEV] Re: #18401 [Opn-Ana]: shuffle() broken (fwd)

2002-08-17 Thread Yasuo Ohgaki
Damn. This is a text book type of problem... Thanks for reminding :) -- Yasuo Ohgaki Tim Converse wrote: --- Yasuo Ohgaki [EMAIL PROTECTED] wrote: Tim Converse wrote: --- Yasuo Ohgaki [EMAIL PROTECTED] wrote: Dan Kalowsky wrote: Anyone able to confirm or deny the validity

Re: [PHP-DEV] Re: [PHP-DOC] Re: #3793 [Ana-Opn]: session.gc_maxlifetime

2002-08-17 Thread Yasuo Ohgaki
James E. Flemer wrote: Would it be difficult to just add a dirty flag somewhere, It's easy. Write your own session save handler does this if needed. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-DOC] Re: #3793 [Ana-Opn]: session.gc_maxlifetime

2002-08-17 Thread Yasuo Ohgaki
of it and compare. If sum differs, save the session data else just leave it. (2 to 3 addtional lines) I'm not sure, but I guess it could be faster than actually saving it always, especially, when multiple web servers share database, etc. I think James is willing to give it a try :) -- Yasuo Ohgaki The idea

Re: [PHP-DEV] Re: #18401 [Opn-Ana]: shuffle() broken (fwd)

2002-08-16 Thread Yasuo Ohgaki
Tim Converse wrote: --- Yasuo Ohgaki [EMAIL PROTECTED] wrote: Dan Kalowsky wrote: Anyone able to confirm or deny the validity of this patch? -- Forwarded message -- [2002-07-18 01:03:51] [EMAIL PROTECTED] The shuffle() function in the CVS is (still) broken. It does

[PHP-DEV] Re: #18401 [Opn-Ana]: shuffle() broken (fwd)

2002-08-15 Thread Yasuo Ohgaki
elements have more chance than end elements. All elements should have equal chance to be shuffled. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: cvs: php4 /sapi/apache mod_php4.c

2002-08-15 Thread Yasuo Ohgaki
suppposed to unset protection? -- Yasuo Ohgaki Index: php4/sapi/apache/mod_php4.c diff -u php4/sapi/apache/mod_php4.c:1.135 php4/sapi/apache/mod_php4.c:1.136 --- php4/sapi/apache/mod_php4.c:1.135 Wed Aug 14 13:15:49 2002 +++ php4/sapi/apache/mod_php4.c Thu Aug 15 19:59:47 2002

Re: [PHP-DEV] Parent _LINE_ Request

2002-08-15 Thread Yasuo Ohgaki
() in ZE2. It can be ported to ZE1, but he changed basic data struture in engine and I thoguth it does not worth the effort. (QA, debug, etc don't worth the benefits) Just wait ZE2 or use xdebug/apd/dbg or whatever tools you like. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] Re: trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
Hi, I guess you missed some points :) Melvyn Sopacua wrote: At 08:18 14-8-2002, Yasuo Ohgaki wrote: Rasmus Lerdorf wrote: As much as I think trans-sid sucks from a performance perspective, what's with this comment in php.ini-dist? ; trans sid support is disabled by default. ; Use

Re: [PHP-DEV] Re: trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
believe there are many articles around that recommends session cookie over normal cookie. Reading these will help to understand how URL based session management could be less secure. Please read articles related for more details. -- Yasuo Ohgaki -- PHP Development Mailing List http

Re: [PHP-DEV] Re: trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
cookie's. Please advise people to consider risks :) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
. (Assuming users know issues/risks with session management with cookie :) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
Melvyn Sopacua wrote: At 12:04 14-8-2002, Yasuo Ohgaki wrote: Aren't we discussing what method of passing session ID is less secure than others? Yes, but I fail to see what it has to do with security. For instance - I use sessions to store some output that takes a lot of time

Re: [PHP-DEV] Re: trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
Melvyn Sopacua wrote: We seem to go around in circles :-) At 13:08 14-8-2002, you wrote: Melvyn Sopacua wrote: At 12:04 14-8-2002, Yasuo Ohgaki wrote: Aren't we discussing what method of passing session ID is less secure than others? Yes, but I fail to see what it has to do

[PHP-DEV] Re: Bug #10374 [Opn-Bgs]: Depreciated features or not

2002-08-14 Thread Yasuo Ohgaki
not many people are interested last time I asked here. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] trans-sid warning?

2002-08-14 Thread Yasuo Ohgaki
. It's fixed also. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: trans-sid warning?

2002-08-13 Thread Yasuo Ohgaki
with the same session ID always. etc -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Comments (Was: [PHP-DEV] coding standard addition proposal)

2002-08-11 Thread Yasuo Ohgaki
size by comments. In other words: Code Implementation --- [0] Document your code. I think much more comment in source is preferred, too. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Comments (Was: [PHP-DEV] coding standard additionproposal)

2002-08-11 Thread Yasuo Ohgaki
Dan Kalowsky wrote: On Mon, 12 Aug 2002, Yasuo Ohgaki wrote: I'm 0 for this. Since looking up log(annotate) is very easy. If you are using Emacs, Ctrl-x v g other editor users may have harder time, though. Not an editor issue, but more... as we start bundling (sic) more code with PHP

[PHP-DEV] Inconsistent Behavior

2002-08-08 Thread Yasuo Ohgaki
. This would be a reasonable behavior for loosely typed language to me. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mbstring mbfilter.c mbfilter.h mbregex.cmbstring.c mbstring.h /main rfc1867.c

2002-08-03 Thread Yasuo Ohgaki
Marcus, Don't forget to create patch against development version :) cvs.php.net is _NOT_ for development new encoding/feature. http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/php-i18n/ -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

[PHP-DEV] New mbstring

2002-08-03 Thread Yasuo Ohgaki
Marcus Börger wrote: At 10:38 03.08.2002, Yasuo Ohgaki wrote: Marcus, Don't forget to create patch against development version :) cvs.php.net is _NOT_ for development new encoding/feature. http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/php-i18n/ -- Yasuo Ohgaki O.k. when i am

[PHP-DEV] Re: cvs: php4 /ext/mbstring mbfilter.c mbfilter.h mbregex.c mbstring.cmbstring.h /main rfc1867.c

2002-08-02 Thread Yasuo Ohgaki
and the new code looks a lot differ... -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: mbstring and html encode/const structs

2002-07-31 Thread Yasuo Ohgaki
web site -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS server problem

2002-07-28 Thread Yasuo Ohgaki
Someone have done something wrong to CVS server. I cannot access cvs at all... Is it for maintenace or what else? -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: #18417 [Opn-Bgs]: pg_fetch_array says Unable to jump to row0 on PostgreSQL result index

2002-07-28 Thread Yasuo Ohgaki
know. PS: You cannot get PGSQL_ASSOC result without 2nd param when you use pg_fetch_array() -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] 4.3 release call to arms

2002-07-27 Thread Yasuo Ohgaki
it would be useful longer term than it seems. Just my .02 -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] 4.3 release call to arms

2002-07-27 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: I'm +1 for Stig's opinion. Declaring 4.2.3 a no-no was both Stig's and mine suggestion. Then no 4.2.3 and we will have 4.3.0 branch on Sunday. (Bad news for some users, good news for us ;) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard incomplete_class.c php_incomplete_class.htype.c

2002-07-24 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Wed, 24 Jul 2002, Yasuo Ohgaki wrote: yohgaki Wed Jul 24 05:55:11 2002 EDT Modified files: /php4/ext/standardincomplete_class.c php_incomplete_class.h type.c Log: is_object() returns FALSE if object is a incomplete

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard incomplete_class.cphp_incomplete_class.h type.c

2002-07-24 Thread Yasuo Ohgaki
Zeev Suraski wrote: At 14:20 24/07/2002, Yasuo Ohgaki wrote: I don't think breaking compatibility is not needed now. However, I'm not against to raise fatal error in PHP5. PHP5 breaks scripts in many ways. Why don't we save it for PHP5? Without paying attention to the specific issue

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard incomplete_class.c

2002-07-24 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: this works or not, though. (If it doesn't, I'll stringly disagree with the BC) I'll strongly disagree, not stringly ;) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Access to incomplete object should not be a fatal error

2002-07-23 Thread Yasuo Ohgaki
in This breaks my session data manager and makes the manager unusable. I'm listing incomplete object properties for administrative purpose. Any comments? -- Yasuo Ohgaki --- incomplete_class.c.~1.13.~ Wed Dec 12 00:30:32 2001 +++ incomplete_class.c Tue Jul 23 19:23:33 2002 -49,7 +49,7

Re: [PHP-DEV] Access to incomplete object should not be a fatal

2002-07-23 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Tue, 23 Jul 2002, Yasuo Ohgaki wrote: It seems accessing incoplete object became fatal error. Fatal error: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition auth of the object you

Re: [PHP-DEV] Access to incomplete object should not be a fatal

2002-07-23 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: Uhm... of course this should give you an E_ERROR, it's simply not possible to call a method of an object that's only a half baken one. This should stay an E_ERROR. I agree. It should raise E_ERROR for method calls. Here is newer patch. Any comments. -- Yasuo

[PHP-DEV] PHP 4.2.2 Download URL

2002-07-22 Thread Yasuo Ohgaki
While http://www.php.net/distributions/php-4.2.1.tar.bz2 exists, but http://www.php.net/distributions/php-4.2.2.tar.bz2 does not exist. Could anyone make bz2 archive available? -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

[PHP-DEV] Re: PHP 4.2.2 Download URL

2002-07-22 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: While http://www.php.net/distributions/php-4.2.1.tar.bz2 exists, but http://www.php.net/distributions/php-4.2.2.tar.bz2 does not exist. Could anyone make bz2 archive available? us3.php.net mirror seems have bz2 archive. I guess there were too many connections

[PHP-DEV] Re: Passing special characters in a URL

2002-07-21 Thread Yasuo Ohgaki
Ricky wrote: Hi, I am having problems passing variables in a url specifically when there is an sign. Any suggestions? Rick Wrong list. Try [EMAIL PROTECTED] -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] mbstring

2002-07-17 Thread Yasuo Ohgaki
automatic encoding transalation code does not work well... Rui has plan to extend the translation code, so I would say we are better to wait a bit. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: open_basedir and safe_mode_exec_dir

2002-07-16 Thread Yasuo Ohgaki
be safe_mode_open_dasedir in first place... I added note to php.ini-* -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: open_basedir and safe_mode_exec_dir

2002-07-16 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Christian Stocker wrote: another little thingie: the description to open_basedir in the distributed php.ini is between all the safe_mode config, therfore maybe a lot of people don't know, that one can use this whithout safe_mode enabled. I agree. The directive name

[PHP-DEV] Re: open_basedir and safe_mode_exec_dir

2002-07-16 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Yasuo Ohgaki wrote: Christian Stocker wrote: another little thingie: the description to open_basedir in the distributed php.ini is between all the safe_mode config, therfore maybe a lot of people don't know, that one can use this whithout safe_mode enabled. I

[PHP-DEV] Re: open_basedir and safe_mode_exec_dir

2002-07-16 Thread Yasuo Ohgaki
Is there reason why these functions don't check safe_mode and open_basedir? I don't have much time to test, so I didn't committed this patch... Oops. Wrong patch sent. Newer patch attached. -- Yasuo Ohgaki ? file.c.patch Index: file.c

Re: [PHP-DEV] Re: cvs: php4 /ext/mbstring config.m4

2002-07-15 Thread Yasuo Ohgaki
Robinson, Mike wrote: Edin Kadribasic writes: Sent: Monday, July 15, 2002 12:05 PM To: [EMAIL PROTECTED]; Jani Taskinen; Yasuo Ohgaki Subject: Re: [PHP-DEV] Re: cvs: php4 /ext/mbstring config.m4 I asked to php-dev and nobody objects enabling mbstirng by default

[PHP-DEV] Re: ob_implict_flush()

2002-07-15 Thread Yasuo Ohgaki
in php-dev or php-cvs) Someone needs to wirte code to flush contents in nested output buffers. PS: Don't ask can we go back to old behavior?, since not only it did not work with nested output buffer, but also it broke memory and PHP misbehaves badly including executing scripts multiple times. -- Yasuo

[PHP-DEV] Re: cvs: php4 /ext/mbstring config.m4

2002-07-13 Thread Yasuo Ohgaki
? -- Yasuo Ohgaki Index: php4/ext/mbstring/config.m4 diff -u php4/ext/mbstring/config.m4:1.17 php4/ext/mbstring/config.m4:1.18 --- php4/ext/mbstring/config.m4:1.17 Sat Jul 13 20:11:44 2002 +++ php4/ext/mbstring/config.m4 Sat Jul 13 20:12:13 2002 -1,12 +1,12 dnl -dnl $Id

Re: [PHP-DEV] Re: cvs: php4(ZendEngine2) /win32 php4dllts.dsp

2002-07-10 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Wed, 10 Jul 2002, Yasuo Ohgaki wrote: Hmm. This tag is only for some win32 files. The name isn't sound good to me. This was brought up before, and it's only needed for some files due to incompabilities with the ZE1 stuff. Derick I must have missed

[PHP-DEV] Re: cvs: php4(ZendEngine2) /win32 php4dllts.dsp

2002-07-09 Thread Yasuo Ohgaki
changes to it? Whoever created the branch should annouce it if we are supposed to merge changes to the branch _before_ creating branch. IMHO. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: cvs: php4(ZendEngine2) /win32 php4dllts.dsp

2002-07-09 Thread Yasuo Ohgaki
Hmm. This tag is only for some win32 files. The name isn't sound good to me. -- Yasuo Ohgaki Yasuo Ohgaki wrote: Harald Radi wrote: phantoTue Jul 9 16:28:36 2002 EDT Modified files: (Branch: ZendEngine2) /php4/win32php4dllts.dsp New branch Do we

Re: [PHP-DEV] [PATCH] ext/sysvsem semctl 4th argument

2002-07-09 Thread Yasuo Ohgaki
it accepts 3 or 4 args. I'm not sure which one is right. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: searching across all open sessions

2002-06-28 Thread Yasuo Ohgaki
This is list not for developing application with PHP, but develop PHP itself. Ask these question to [EMAIL PROTECTED] Anyway, you should use db and custom session save handler for that. -- Yasuo Ohgaki Dave wrote: Is there any way (built in function or otherwise) to search for a value across

[PHP-DEV] Re: Net/SMTP.php - Net/Socket.php

2002-06-28 Thread Yasuo Ohgaki
This list is not the right list for this questoin. Try [EMAIL PROTECTED] at first. -- Yasuo Ohgaki Bart Matthaei wrote: Hi all, i'm new to this list. I subscribed because I have problem with SMTP.php. This problem/bug may have already been covered. I use FreeBSD 4.6-p1, and I checked

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-26 Thread Yasuo Ohgaki
I'm -1 for features that silently fails. User can check ini_set return value if it is successful or not. So I'm 0 for ini_set(zlib.output_compresion,Off); -- Yasuo Ohgaki Jaime Bozza wrote: sigh Unfortunately, in some cases, this won't work for me. The image scripts aren't always

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-26 Thread Yasuo Ohgaki
Stefan Roehrich wrote: On 2002-06-26 20:19:34, Yasuo Ohgaki wrote: I'm -1 for features that silently fails. User can check ini_set return value if it is successful or not. So I'm 0 for ini_set(zlib.output_compresion,Off); I don't understand your first two sentences, what do you mean

[PHP-DEV] Re: cvs: php4(PHP_4_2_0) /ext/standard math.c

2002-06-24 Thread Yasuo Ohgaki
large in %s() call, + get_active_function_name(TSRMLS_C)); Isn't E_WARNING is better to be E_NOTICE? -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: cvs: php4(PHP_4_2_0) /ext/standard math.c

2002-06-24 Thread Yasuo Ohgaki
not raise warning that may depends of user inputs. IMO. It seems it's rare to have error with this function (user should check input before supply value to the function, probably) It's not important, though. Just checking error raising policy. -- Yasuo Ohgaki -- PHP Development Mailing List

[PHP-DEV] Re: Switching zlib.output_compression, bug #16109

2002-06-24 Thread Yasuo Ohgaki
, thus it's confusing. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Switching zlib.output_compression, bug #16109

2002-06-24 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: Stefan Roehrich wrote: Hello! There has been a bug report (#16109) about a bug in Netscape 4.79, which doesn't display images if Content-Encoding: gzip is used. After thinking about a browser detection config flag for zlib.output compression, at LinuxTag we discussed

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-24 Thread Yasuo Ohgaki
. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Why new modules are under php4 source tree?

2002-06-23 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Sun, 23 Jun 2002, Yasuo Ohgaki wrote: I just realized mime_magic module is under php4/ext It should be pear/pecl/mime_magic since it's new module. As PECL doesn't work for windows users yet, it's NOT a good idea to put modules there. Once it is ready, we

Re: [PHP-DEV] Why new modules are under php4 source tree?

2002-06-23 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Sun, 23 Jun 2002, Yasuo Ohgaki wrote: I just realized mime_magic module is under php4/ext It should be pear/pecl/mime_magic since it's new module. As PECL doesn't work for windows users yet, it's NOT a good idea to put modules there. Once it is ready, we

[PHP-DEV] Re: possible bug in output buffering

2002-06-22 Thread Yasuo Ohgaki
compressin buffer (e.g. zlib.oupout_compression=on) However, it does not protect callback functions. It's programmer's responsibility _not_ to delete ob_gzhandler. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Why new modules are under php4 source tree?

2002-06-22 Thread Yasuo Ohgaki
? -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Suggestion about native DB support.

2002-06-21 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Fri, 21 Jun 2002, Yasuo Ohgaki wrote: Garland Foster wrote: I have a strong feeling that it would be a very good idea to ship PHP (*nix and Win) with some native, BUNDLED support for some DBM-files format. It can be very nice to have a native set of DBM-like

Re: [PHP-DEV] Re: Suggestion about native DB support.

2002-06-21 Thread Yasuo Ohgaki
configuration. It will benefits us to promote more PHP usage and make advanced script avairable for sure. It makes easier to write requiement for PHP application. For example, Java users can write You need J2SE to use this application. Any opinion from evangelists? -- Yasuo Ohgaki -- PHP Development

Re: [PHP-DEV] Re: Suggestion about native DB support.

2002-06-21 Thread Yasuo Ohgaki
Hartmut Holzgraefe wrote: Yasuo Ohgaki wrote: I think gettext module is also a good one to be enabled by default or recommend users strongly. well, as everything depending on setlocale() or putenv(LANG=...) is *not* threadsafe this might be a not-so-good idea right now ... Note

Re: [PHP-DEV] Re: cvs: php4 /ext/mbstring mbstring.c

2002-06-20 Thread Yasuo Ohgaki
internal modules, such as session module also. -- Yasuo Ohgaki Thanks, Brian At 8:27 PM +0200 6/20/02, Marcus Börger wrote: You will break ext/exif when removing mbstrings current integration At 04:17 20.06.2002, you wrote: I am testing a patch that allows mbstring to be built

[PHP-DEV] Re: $HTTP_*_VARS deprecation status request

2002-06-20 Thread Yasuo Ohgaki
be? We are better to have loadmap for these issues. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Suggestion about native DB support.

2002-06-20 Thread Yasuo Ohgaki
in the long run. Since we cannot bundle everything, how about have a logo program for a standard php installations? If users confirm standard requirements, give permission to use PHP standard logo, for example. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

[PHP-DEV] Re: Bug #14491 Updated: Parser warning that should be parse error

2002-06-18 Thread Yasuo Ohgaki
for these kind of errors. Or do we have policy that make execution continue much as possible? It's fair policy for scripting language, but this policy makes difficult to write robust scripts especially for newbies. We may want to change the behavior for ZE2. Let's make clear where we're heading. -- Yasuo

[PHP-DEV] Re: cvs: php4 /ext/session php_session.h session.c

2002-06-12 Thread Yasuo Ohgaki
for merge this patch to release branch. -- Yasuo Ohgaki Index: php4/ext/session/php_session.h diff -u php4/ext/session/php_session.h:1.79 php4/ext/session/php_session.h:1.80 --- php4/ext/session/php_session.h:1.79 Sun May 5 12:39:49 2002 +++ php4/ext/session/php_session.hWed

Re: [PHP-DEV] Re: cvs: php4 /ext/session php_session.h session.c

2002-06-12 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Wed, 12 Jun 2002, Yasuo Ohgaki wrote: Sascha Schumann wrote: sas Wed Jun 12 04:18:38 2002 EDT Modified files: /php4/ext/sessionphp_session.h session.c Log: This option enables administrators to make their users

Re: [PHP-DEV] Re: cvs: php4 /ext/session php_session.h session.c

2002-06-12 Thread Yasuo Ohgaki
brain, after all. I just thought it's good one for merging. I'm not strong +1, anyway. It's also good for 4.3.0. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] php.dev.zend?

2002-06-11 Thread Yasuo Ohgaki
Is it possible to move Zend Engine 2 list to php.net lists and make it available to news.php.net? This should have been done when Zend/TSRM source is moved to cvs.php.net, IMHO :) -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] What kind of option ASP/Java has for this?

2002-06-07 Thread Yasuo Ohgaki
Melvyn Sopacua wrote: At 02:43 8-6-2002, Yasuo Ohgaki shared with all of us: I'm about to start coding new HTML Form Creation Validation module for PHP. I've designed most featrue needed. Before I start, I would like to know if ASP/Java has similar feature and what they do. I think

<    1   2   3   4   5   6   7   8   9   10   >