Re: [PHP-DEV] Re: PHP 4.3 charter and release plan

2002-05-04 Thread derick
On 5 May 2002, Stig S. Bakken wrote: > On Fri, 2002-05-03 at 13:25, Christian Stocker wrote: > > > > if noone else really would like to do it, i can take over this part. I > > don't think, there's much new stuff in domxml since 4.2 (yes, there is > > some, but nothing really critical), but testi

Re: [PHP-DEV] Feature Request: Session Module

2002-05-04 Thread Sebastian Bergmann
Steve Meyers wrote: > Do you need a backtrace of it? If so, how do I do that? http://www.php.net/manual/en/faq.installation.php#faq.installation.nodata -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://w

Re: [PHP-DEV] Feature Request: Session Module

2002-05-04 Thread Markus Fischer
Hi, http://bugs.php.net/report.php - Markus On Sat, May 04, 2002 at 06:20:28PM -0600, Steve Meyers wrote : > I just tried ext/shmop, and without even using it, the fact that it is > compiled in to php causes it to segfault on every request. > > Here's my ./configure line > > ./c

Re: [PHP-DEV] PHP 4.3 charter and release plan

2002-05-04 Thread Sebastian Bergmann
Rasmus Lerdorf wrote: > Sascha-help to get it building correctly in the new build system. Same here, Daniel-help that is, for Windows :-) -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebas

Re: [PHP-DEV] Re: PHP 4.3 charter and release plan

2002-05-04 Thread Stig S. Bakken
On Fri, 2002-05-03 at 13:25, Christian Stocker wrote: > In <[EMAIL PROTECTED]>, Stig S. Bakken > wrote: > > > Hi, > > > > I've volunteered to RM (release master, not /bin/rm) PHP 4.3. This > > release will be synchronized with the public release of the PEAR > > (including PECL) infrastructure.

Re: [PHP-DEV] Re: PHP 4.3 charter and release plan

2002-05-04 Thread Stig S. Bakken
On Fri, 2002-05-03 at 12:31, Yasuo Ohgaki wrote: > Stig S. Bakken wrote: > > Here's the list of major changes, and the person I would like to invite > > as responsible for that part of 4.3: > > 6. PostgreSQL changes (Yasuo) > > Core code has not been changed much. > I'm available any time. > > >

[PHP-DEV] Re: Anybody have Sablotron working with a recent PHP?

2002-05-04 Thread dark_panda
I've been using Sablo 0.90 fine with 4.1.2, 4.2.0 and 4.2.1RC1 without any major problems so far. (Although at first I was having problems with encodings, but that's a Sablotron problem, not PHP.) I'm building on linux with gcc/g++ 2.96. J Hush provide the worlds most secure, easy to use onl

[PHP-DEV] Session does not work at all...

2002-05-04 Thread Yasuo Ohgaki
Following script works for older with 4.1.2-dev. It does not work at all with current CVS versions, both 4.3.0-dev and 4.2.1-dev Anyone? '; //ini_set('sessin.save_path','/path/does/not/exist'); session_start(); if (!isset($_SESSION['abc'])) { $_SESSION['abc'] = 1; $_SESSI

Re: [PHP-DEV] Another addition to session-module ... while were on topic

2002-05-04 Thread mlwmohawk
If you use msession, this should all just work. $sid = session_id(); $array_users = msession_get_array('users'); $array_globals = msession_get_array('globals'); $array_my = session_get_array($sid); Msession does not handle classes all that well. It uses discrete variables. -- PHP

RE: [PHP-DEV] Win32 testing and run-tests.php (was: PHP 4 Bug Summary Report)

2002-05-04 Thread James Cox
Yes, i'm working on getting tests working on all platforms... but not today, probably very soon. james > -Original Message- > From: Preston L. Bannister [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 05, 2002 2:14 AM > To: [EMAIL PROTECTED] > Subject: [PHP-DEV] Win32 testing and run-tes

[PHP-DEV] Win32 testing and run-tests.php (was: PHP 4 Bug Summary Report)

2002-05-04 Thread Preston L. Bannister
Is anyone working on getting the run-tests.php and tests/* running on Win32? Who is adding test cases as bugs are closed? Fixed run-tests.php and added a Win32 project to run the tests. During the test run PHP faults (bad pointer/index during mbstring tests). This is a good thing, as it looks

Re: [PHP-DEV] Feature Request: Session Module

2002-05-04 Thread Steve Meyers
I just tried ext/shmop, and without even using it, the fact that it is compiled in to php causes it to segfault on every request. Here's my ./configure line ./configure --with-mysql=/usr --with-pgsql --enable-ftp --with-ldap --with-gmp --disable-pear --enable-shmop --enable-apc --with-apache=

Re: [PHP-DEV] PHP 4.3 charter and release plan

2002-05-04 Thread Rasmus Lerdorf
Stig, I have a bit of work to do still with the bundled ext/gd/libgd so I would add bundled libgd to the list of major changes. May need a bit of Sascha-help to get it building correctly in the new build system. -Rasmus -- PHP Development Mailing List To unsubscribe, vis

Re: [PHP-DEV] PHP 4.3 charter and release plan

2002-05-04 Thread fabwash
Well, since I was the one that talked about interfaces when that discussion started, I will gladly give my vote for it! +1 - Original Message - From: "Stig S. Bakken" <[EMAIL PROTECTED]> To: "Wez Furlong" <[EMAIL PROTECTED]> Cc: "Stig S. Bakken" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[

[PHP-DEV] Still warnings in ext/mbstring

2002-05-04 Thread Sebastian Bergmann
mbregex.c C:\home\php\php4\ext\mbstring\mbfilter_tw.c(99) : warning C4700: Lokale Variable 'c1' wurde ohne Initialisierung verwendet C:\home\php\php4\ext\mbstring\mbregex.c(2207) : warning C4018: '>=' : Konflikt z wischen signed und unsigned C:\home\php\php4\ext\mbstring\mbregex.c(2390) : warning

[PHP-DEV] ZIP functions

2002-05-04 Thread Michael Dransfield
Could anyone provide me with the precompiled dll needed to use zip functions (e.g. http://uk.php.net/manual/en/ref.zip.php ) I have the zziplib.dll file from http://zziplib.sourceforge.net/ but need the php_zzip.dll TYIA Mike -- PHP Development Mailing List To unsubscr

Re: [PHP-DEV] resource problem, advice wanted

2002-05-04 Thread Stig Venaas
On Fri, May 03, 2002 at 03:34:46PM +0300, Zeev Suraski wrote: > If ldap_first_entry() relies on the resource that is passed onto it, then > it should add a reference count to it, using zend_list_addref(). The > resource ldap_first_entry returns should be responsible for this reference, > and i

[PHP-DEV] Re: feature proposal: string types

2002-05-04 Thread vdhome
> > Well, I assumed that the overhead wouldn't be too significant, but I > > admit I didn't do any measurements whatsoever. Is there any existing > > good benchmark, or should I just loop a million times through a few > > random lines of code and measure this? > > Yup :) OK, I did some _very_ sim

[PHP-DEV] Anybody have Sablotron working with a recent PHP?

2002-05-04 Thread Rasmus Lerdorf
A quick test of various versions of Sablotron with HEAD: 0.90 Sablotron error on line 1: unknown encoding '' 0.81 Sablotron error on line 1: unknown encoding '' 0.71 Sablotron error on line 1: unknown encoding '' 0.65 /home/rasmus/php4/ext/xslt/sablot.c:198: undefined reference to `SablotCreat

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

2002-05-04 Thread Yasuo Ohgaki
Arnab Bagchi wrote: > To learn PHP You don't need CVS account for learning/creating module/etc. -- Yasuo Ohgaki -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Feature Request: Session Module

2002-05-04 Thread Yasuo Ohgaki
Markus Fischer wrote: > Hi, > > I think what you want can (and should) be done with shared > memory, ext/shmop . This way you exchange values as you want > (it's not tied to sessions in anyway, btw). > Markus' method works nicely for single server It is recommended way. Try ses

[PHP-DEV] CVS Account Request: arnab

2002-05-04 Thread Arnab Bagchi
To learn PHP -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Feature Request: Session Module

2002-05-04 Thread Markus Fischer
Hi, I think what you want can (and should) be done with shared memory, ext/shmop . This way you exchange values as you want (it's not tied to sessions in anyway, btw). - Markus On Sat, May 04, 2002 at 11:08:52AM +0200, Michael Virnstein wrote : > Hi! > > What really would

[PHP-DEV] Re: Feature Request: Session Module

2002-05-04 Thread Michael Virnstein
In this way i could have the normal private session variables, like it is now and additionally have different sets of variables and share them among different sessions. Regards Michael "Michael Virnstein" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > H

[PHP-DEV] Feature Request: Session Module

2002-05-04 Thread Michael Virnstein
Hi! What really would be useful for the session module, is a grouping mechanism for sessions, so i can set up variable scopes and share variables among different session: every session has private variables. that's the way it works now. i can register a variable to a session and there's no way to

Re[2]: [PHP-DEV] PHP 4.3 charter and release plan

2002-05-04 Thread Andrew Sitnikov
Hello Stig, SSB> Huh, are you saying PHP _is_ locale-dependant? Yes. Example: 1.php 2.php gap /home/local/sitnikov> GET http://si.infonet.ee/1.php float(1) Locale ru_RU.CP1251 has decimal delimiter ','; I understand why it occurs (thanks to Stanislav Malyshev), but this is not correct beha