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 ? setlocale(LC_ALL,'ru_RU.CP1251'); include('2.php'); ? 2.php ? $var = 1.3; var_dump($var); ? gap /home/local/sitnikov GET http://si.infonet.ee/1.php float(1) Locale ru_RU.CP1251 has decimal delimiter

[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

[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]... Hi!

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 be

[PHP-DEV] CVS Account Request: arnab

2002-05-04 Thread Arnab Bagchi
To learn PHP -- PHP Development Mailing List http://www.php.net/ 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

[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 http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[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

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 its

[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 http://www.php.net/ To

[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

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]; [EMAIL

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 http://www.php.net/ To unsubscribe,

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

[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] 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

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

[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? ?php session_name('files'); session_module_name('files'); echo 'Save handler '. session_module_name(). 'br';

[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