[PHP-DEV] extension 4.0.6 - 4.2.2

2002-07-29 Thread Robin Ericsson
Hi, I'm began converting a module I wrote for 4.0.6, and I use this code: if ((zend_hash_find(EG(symbol_table), HTTP_SERVER_VARS, sizeof(HTTP_SERVER_VARS), (void **) data) != FAILURE) Z_TYPE_PP(data) == IS_ARRAY) In 4.2.x, I just change this to _SERVER, or is there another fancier way of

RE: [PHP-DEV] RE: [PHP-QA] Re: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Sebastian Nohn
Hi, Aren't most of your problems related to using a 64-bit platform? Where were you during QA on 4.2? My sort() stuff works just fine here. On another place in that group where I had very little to do with PHP and if I had to do with it, it was Windows or Linux on x86... Regards,

Re: [PHP-DEV] extension 4.0.6 - 4.2.2

2002-07-29 Thread Rasmus Lerdorf
HTTP_SERVER_VARS are still around On 29 Jul 2002, Robin Ericsson wrote: Hi, I'm began converting a module I wrote for 4.0.6, and I use this code: if ((zend_hash_find(EG(symbol_table), HTTP_SERVER_VARS, sizeof(HTTP_SERVER_VARS), (void **) data) != FAILURE) Z_TYPE_PP(data) == IS_ARRAY)

[PHP-DEV] [PATCH] DB/ibase.php in Windows

2002-07-29 Thread Nelson Rothermel
Line 82 of the file has: ($dsninfo['hostspec'] . ':/' . $dsninfo['database']) : This does not work in Windows/IIS. Changing that to ($dsninfo['hostspec'] . ':' . $dsninfo['database']) : works. I cannot verify that this will also work in Linux

[PHP-DEV] Re: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Thomas Seifert
On Sun, 28 Jul 2002 19:59:31 +0200 [EMAIL PROTECTED] (Sebastian Nohn) wrote: Hi, we released 4.2.2 less than a week ago. If we release any new package within 2weeks to a month, i feel it'll just infuriate system admins more. People don't want to be installing new packages every week

Re: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Dan Kalowsky
Nobody needs 4.3 with 1000 new features, everybody needs a PHP Version that has at least as few bugs as 4.0.4pl1. At least a 4.0.2pl1 fixing the so far closed bugs would be great. I have _SERIOUS_ problems with theses bugs for example: I would disagree with this statement. PHP 4-CVS

[PHP-DEV] Patch for xslt - Showing Sablotron Version number in phpinfo()

2002-07-29 Thread Christian Stocker
Hi The Subject says it all. It's quite useful to have the Sablotron version number in phpinfo, therefore I added this. It's available at http://trash.chregu.tv/sablot-version.diff Would be great, if someone with enough karma could add it. Unfortunately the version number seems only to be

[PHP-DEV] [PATCH] ext_skel: specify location of skeleton directory

2002-07-29 Thread David Viner
here's a patch that modifies ext_skel to accept a full path to the skeleton directory. This allows you to run the ext_skel script from any directory. dave -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Sebastian Nohn
-Original Message- From: Dan Kalowsky [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 5:13 PM To: Sebastian Nohn Cc: PHP Quality Assurance Team Mailing List; PHP Developers Mailing List; Melvyn Sopacua Subject: Re: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ? Nobody needs 4.3

RE: [PHP-DEV] [PATCH] ext_skel: specify location of skeleton directory

2002-07-29 Thread David Viner
inlining the patch... dave --- ext/ext_skelTue Jan 8 09:51:08 2002 +++ ext/ext_skelMon Jul 29 09:27:40 2002 @@ -7,12 +7,13 @@ usage() { echo $0 --extname=module [--proto=file] [--stubs=file] [--xml[=file]] -echo[--full-xml] [--no-help] +echo

RE: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Dan Kalowsky
On Mon, 29 Jul 2002, Sebastian Nohn wrote: I don't _need_ a 4.2.3. I need a bug-free PHP version. 4.3.0 will bring a lot of new features, so everything will start from the beginning again. New features = new bugs. As I stated earlier, you are welcome to help ensure that this won't be the

[PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Sebastian Nohn
-Original Message- From: Xavier Spriet [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 7:09 PM To: Sebastian Nohn Subject: RE: [PHP-QA] RE: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ? I think focus should be put to making sure the important bugs you are referring to are fixed in

RE: [PHP-DEV] PHP 4.2.3RC1 ?

2002-07-29 Thread Sebastian Nohn
-Original Message- From: Dan Kalowsky [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 7:38 PM To: Sebastian Nohn Cc: PHP Quality Assurance Team Mailing List; PHP Developers Mailing List Subject: RE: [PHP-DEV] RE: [PHP-QA] PHP 4.2.3RC1 ? On Mon, 29 Jul 2002, Sebastian Nohn

[PHP-DEV] current cvs build errors

2002-07-29 Thread Dan Kalowsky
On MacOSX 10.1.5 /usr/bin/ld: Undefined symbols: _zif_sha1 _zif_sha1_file make: *** [php] Error 1 bork bork bork! --- Dan KalowskyA little less conversation, http://www.deadmime.org/~danka little more action.

[PHP-DEV] php_strip_tags and bug 7472

2002-07-29 Thread Brad LaFountain
Is any developer familiar with php_strip_tags? I was looking into but 7472 and php_strip_tags seems like its keeping track of 's and changing the state according to 's. From what I can tell the state machine shouldn't need to worry about 's, but I might be missing something obvious tho.

Re: [PHP-DEV] current cvs build errors

2002-07-29 Thread Edin Kadribasic
On MacOSX 10.1.5 /usr/bin/ld: Undefined symbols: _zif_sha1 _zif_sha1_file make: *** [php] Error 1 bork bork bork! Remembered to run ./buildconf? Edin -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-QA] PHP 4.2.3RC1 ?

2002-07-29 Thread Melvyn Sopacua
At 17:12 29-7-2002, Thomas Seifert wrote: On Sun, 28 Jul 2002 19:59:31 +0200 [EMAIL PROTECTED] (Sebastian Nohn) wrote: We were running 4.0.4pl1 for more than one year, then we needed some new features and installed 4.1.2, 4.2.0, 4.2.1. No! We did'nt want to install 4.2.0 or 4.2.1 bescause

[PHP-DEV] Re: [PHP-QA] RE: [PHP-DEV] PHP 4.2.3RC1 ?

2002-07-29 Thread Melvyn Sopacua
At 19:52 29-7-2002, Sebastian Nohn wrote: --- cut here --- i would see this working, given it's what we do already. but more specifically, following the apache method of posting patch files when something gets fixed, so people can search the directory and find patches that will fix their

Re: [PHP-DEV] Patch for xslt - Showing Sablotron Version number in phpinfo()

2002-07-29 Thread Sterling Hughes
Hi The Subject says it all. It's quite useful to have the Sablotron version number in phpinfo, therefore I added this. It's available at http://trash.chregu.tv/sablot-version.diff Would be great, if someone with enough karma could add it. Unfortunately the version number seems only to

Re: [PHP-DEV] New FTP extension functionality

2002-07-29 Thread Sterling Hughes
Hi, yesterday I did several commits to the FTP extension. Due to the fact that I do not know how I can document the stuff myself and right now am lacking the time here is a brief instruction: The work looks quite cool, however this is really not asynchronous i/o, but rather non-blocking

[PHP-DEV] Re: GD library and PHP

2002-07-29 Thread Sterling Hughes
Dmitry, Sorry, for the length of my reply, and now the fact that I'm just refferring you to another source. I'm actually not responsible for the gd library (at least since I last checked :). Your help would definitely be appreciated, I've forwarded this request to [EMAIL PROTECTED] which is

[PHP-DEV] CVS Account Request: info@awhcp.com

2002-07-29 Thread Joshua Abbott
CVS will be used to hold the AWHCP [Advanced Web Hosting Control Panel] source code (which is coded in primarily PHP -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Mac 8.6 Web Server with PHP

2002-07-29 Thread J Abbott
anyone know of a mac 8.6 compatible web server with PHP capibility? -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Mac 8.6 Web Server with PHP

2002-07-29 Thread Dan Kalowsky
On Thu, 30 Aug 1956, J Abbott wrote: anyone know of a mac 8.6 compatible web server with PHP capibility? No. As far as I am aware, PHP has never been ported to MacOS earlier than OS X.Nor do I think there is a plan to. --- Dan

[PHP-DEV] filed passing by reference using call_user_func()

2002-07-29 Thread KUBO Atsuhiro
Hi, all. I found problem of call_user_func() with passing by reference. In test code, I expect that $test1 and $test2 and $test3 are overwritten by MyFunction. However, $test2 is not overwritten. Is this right behavior? following test code: ?php $test1 = 'NG'; MyFunction($test2); $test2 =

Re: [PHP-DEV] filed passing by reference using call_user_func()

2002-07-29 Thread KUBO Atsuhiro
Sorry, my environment is as follows. OS: Solaris 8 (SPARC) PHP Version: 4.2.2 -- KUBO Atsuhiro e-mail: [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Mac 8.6 Web Server with PHP

2002-07-29 Thread Adam Maccabee Trachtenberg
On Thu, 30 Aug 1956, J Abbott wrote: anyone know of a mac 8.6 compatible web server with PHP capibility? http://www.tenon.com/products/webten/ It costs $495, however. I don't know of any free versions of PHP for MacOS X. -adam -- adam maccabee trachtenberg [EMAIL PROTECTED] -- PHP

[PHP-DEV] CVS Account Request: tensimy

2002-07-29 Thread Park Young Tae
^^; -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Mac 8.6 Web Server with PHP

2002-07-29 Thread Bob Lockie
On Thu, 30 Aug 1956 13:38:41 -0600, J Abbott wrote: anyone know of a mac 8.6 compatible web server with PHP capibility? http://www.prenhall.com/~palmer/ http://www.tenon.com/products/ http://scholar.lib.vt.edu/reports/Servers-web.html PS! Set your clock? -- PHP Development Mailing List