Re: [PHP-DEV] What is the difference between MySql and Microsoft SQL?

2004-08-04 Thread Sterling Hughes
one thing is the same about both of them - neither of them is relevant to this list. Please stop posting to this list, it is not the appropriate place for any of your questions. -sterling On Wed, 4 Aug 2004 23:00:21 -0400, nsangineto <[EMAIL PROTECTED]> wrote: > What is the difference between My

[PHP-DEV] What is the difference between MySql and Microsoft SQL?

2004-08-04 Thread nsangineto
What is the difference between MySql and Microsoft SQL? -- Best regards, Nicholas Sangineto www.scctechnologies.com Ergonomic Web Site Designer - Security IT www.finalbookofdaniel.com Daniel Prophet www.godsgateways.com Web Database and Gateways about the Spirituality and Mt-Shasta. www.twt

RE: [PHP-DEV] Where can I apply for a PHP contract?

2004-08-04 Thread Steph
> On Wed, 4 Aug 2004, nsangineto wrote: > > Where can I apply for a PHP and also Java contract? > > What's a PHP contract? Sssh! They'll all want one! -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: skystar008

2004-08-04 Thread aimal zhou
I'm a php fans and love php very much own an account is my wish when I begin study php and begin support open source I'm an leader of my company an advanced programmer in c program I want to do what I best for php and for open source union! -- PHP Internals - PHP Runtime Development Mailing

Re: [PHP-DEV] Where can I apply for a PHP contract?

2004-08-04 Thread Ken Tossell
On Wed, 4 Aug 2004, nsangineto wrote: > Where can I apply for a PHP and also Java contract? What's a PHP contract? -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Where can I apply for a PHP contract?

2004-08-04 Thread nsangineto
Hello All! Where can I apply for a PHP and also Java contract? I would like to make good money with PHP development. -- Best regards, Nicholas Sangineto www.scctechnologies.com Ergonomic Web Site Designer - Security IT

Re: [PHP-DEV] Variable Variables and Superglobals

2004-08-04 Thread Andi Gutmans
Right. Variable variables don't work with super-globals and I think it is documented in this way. This is on purpose as we decided to only support them this way both for clarity reasons and for performance. There are no plans to change this. Andi At 01:35 AM 8/5/2004 +0200, A.Rico wrote: Usin

[PHP-DEV] Variable Variables and Superglobals

2004-08-04 Thread A.Rico
Using Variable Variables works fine inside functions for global defined variables if you declare them as global inside the function. Suprinsingly, it does not seem to work with superglobals. Take the following example: // code $var_gl

[PHP-DEV] CVS Account Request: freespace

2004-08-04 Thread George Miroshnikov
tony2001 refered me here to apply for CVS account to become new maintainer of russian translation of Smarty docs. Furthermore, I would like to take part in russian translation of PHP docs. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.ph

[PHP-DEV] CVS Account Request: aztek

2004-08-04 Thread John Downey
To host development for PEAR packages I am the lead developer for. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread David Santinoli
On Wed, Aug 04, 2004 at 11:35:17AM -0400, Ilia Alshanetsky wrote: > On August 4, 2004 11:16 am, Dave wrote: > > I think his point was that the hash is calculated as the file is > > being uploaded, which saves having to read the whole file a second > > time after uploading is finished. For big files

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread David Santinoli
On Wed, Aug 04, 2004 at 05:06:45PM +0200, Derick Rethans wrote: > > I like this idea, and the patch looks (from a glance OK). Without > applying it I have a question though: > > Does it handle cleaning up the digest structures correctly if the > fileupload is aborted in some way? Do you refer to

[PHP-DEV] Re: Hebrew Support in PHP Manual

2004-08-04 Thread Mehdi Achour
Hi, You should discuss this on [EMAIL PROTECTED], not on internals. See you there :) Mehdi Achour [EMAIL PROTECTED] wrote: Hello all, I don't think that the first message you got about Hebrew support, but I need help about it. The problem with Hebrew is that this language required right to left

[PHP-DEV] Hebrew Support in PHP Manual

2004-08-04 Thread hpman
Hello all, I don't think that the first message you got about Hebrew support, but I need help about it. The problem with Hebrew is that this language required right to left. (as you all know by now...) The php manual doesn't has rtl support, or I don't know how to use it. How can I help in a

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread Ilia Alshanetsky
On August 4, 2004 11:16 am, Dave wrote: > I think his point was that the hash is calculated as the file is being > uploaded, which saves having to read the whole file a second time after > uploading is finished. For big files, and repetitious uploading, this > could probably save on the CPU cycles

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread Derrell . Lipman
David Santinoli <[EMAIL PROTECTED]> writes: > Hi, > I'm submitting a patch to perform "on the fly" MD5/SHA1 digest > calculation of a file uploaded via the HTTP POST method. Being > not uncommon for applications to require some digest of a freshly > uploaded file, doing the math directly in the

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread Dave
Ilia Alshanetsky wrote: -1 it seems somewhat redundant given that this signature can be easily generated via a single function call, md5_file() or sha1_file(). Ilia I think his point was that the hash is calculated as the file is being uploaded, which saves having to read the whole file a second

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread Ilia Alshanetsky
-1 it seems somewhat redundant given that this signature can be easily generated via a single function call, md5_file() or sha1_file(). Ilia On August 4, 2004 10:56 am, David Santinoli wrote: > Hi, > I'm submitting a patch to perform "on the fly" MD5/SHA1 digest > calculation of a file uploade

Re: [PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread Derick Rethans
On Wed, 4 Aug 2004, David Santinoli wrote: > I'm submitting a patch to perform "on the fly" MD5/SHA1 digest > calculation of a file uploaded via the HTTP POST method. Being > not uncommon for applications to require some digest of a freshly > uploaded file, doing the math directly in the buffer

[PHP-DEV] [PATCH] Passthrough MD5/SHA1 calculation of uploaded files

2004-08-04 Thread David Santinoli
Hi, I'm submitting a patch to perform "on the fly" MD5/SHA1 digest calculation of a file uploaded via the HTTP POST method. Being not uncommon for applications to require some digest of a freshly uploaded file, doing the math directly in the buffer where the file is being read can save some tim

[PHP-DEV] CVS Account Request: shenkong

2004-08-04 Thread Yixin Chen
I wanna a CVS account to translate manual to chinese and write the FreeImage extension with wenlong together -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] GOTO operator

2004-08-04 Thread tinys xuefer
thanks it's my mistake, i didn't want to reply this thread but reply to my own one From: Derick Rethans <[EMAIL PROTECTED]> To: Marcus Boerger <[EMAIL PROTECTED]> CC: tinys xuefer <[EMAIL PROTECTED]>, [EMAIL PROTECTED] Subject: Re: [PHP-DEV] GOTO operator Date: Wed, 4 Aug 2004 12:51:56 +0200 (CEST)

Re: [PHP-DEV] Document call_time_pass_reference

2004-08-04 Thread l0t3k
"Jakub Vrana" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >>This is what I need to know :-). In php.ini-recommended there is only >>[Code cleanliness] reason. in other (compiled) programming languages, a function prototype specifies the "contract" between the function and its call

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Nuno Lopes
Great idea, Wez! It is working now. Nuno - Original Message - > A filter != wrapper, so copying the code won't work. > Filters are preferred over wrappers for compression/decompression in any case. > > I didn't say we weren't going to fix the bug, just that it might not > be fixable; n

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Nuno Lopes
> > This code is in PHP 5.1. We have plents of time to fix it. > > If the PECL code works, why not copy it? I need this to allow anyone to > > compile livedocs with notes (without needing the token) > > The point of the token is that people can not get the notes easily. So I > wonder how you're ha

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Derick Rethans
On Wed, 4 Aug 2004, Nuno Lopes wrote: > This code is in PHP 5.1. We have plents of time to fix it. > If the PECL code works, why not copy it? I need this to allow anyone to > compile livedocs with notes (without needing the token) The point of the token is that people can not get the notes easily

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Wez Furlong
A filter != wrapper, so copying the code won't work. Filters are preferred over wrappers for compression/decompression in any case. I didn't say we weren't going to fix the bug, just that it might not be fixable; need to check into it. You don't *need* it, since you can always do this: $name = t

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Nuno Lopes
This code is in PHP 5.1. We have plents of time to fix it. If the PECL code works, why not copy it? I need this to allow anyone to compile livedocs with notes (without needing the token) Nuno - Original Message - > Most likely a bug in the bzip2 wrapper. > It might not be fixable, and i

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Wez Furlong
Most likely a bug in the bzip2 wrapper. It might not be fixable, and it might be better to use Sara's bzip2 filter from pecl instead. --Wez. On Wed, 4 Aug 2004 12:04:31 +0100, Nuno Lopes <[EMAIL PROTECTED]> wrote: > Hello, > > I know this isn't as exciting as the GOTO discussion, but I need some

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Nuno Lopes
> On Wed, 4 Aug 2004, Nuno Lopes wrote: > > > This gives an error: > > Warning: fopen() 1137 bytes of buffered data lost during stream conversion! > > in /cvs/livedocs/test_bz.php on line 3 > > > > And outputs nothing more. I'm using PHP 5.1. > > > > Whats is wrong here? > > File a bug for this? >

Re: [PHP-DEV] compressed streams

2004-08-04 Thread Derick Rethans
On Wed, 4 Aug 2004, Nuno Lopes wrote: > This gives an error: > Warning: fopen() 1137 bytes of buffered data lost during stream conversion! > in /cvs/livedocs/test_bz.php on line 3 > > And outputs nothing more. I'm using PHP 5.1. > > Whats is wrong here? File a bug for this? regards, Derick --

[PHP-DEV] compressed streams

2004-08-04 Thread Nuno Lopes
Hello, I know this isn't as exciting as the GOTO discussion, but I need some help. I don't know if this just my fault, or if it's a PHP problem. Consider this: http://php.net/backend/notes/all.bz2', 'r'); while (!feof($fp)) { echo fgets($fp, 4096); } fclose($fp); ?> This gives an error: Wa

RE: [PHP-DEV] [PATCH] fix symbol namespace pollution from bundled libgd

2004-08-04 Thread Steph
> On Fri, 23 Jul 2004, Joe Orton wrote: > > > Building the bundled libgd library into PHP causes symbol namespace > > pollution; if any other Apache modules link a different version of libgd > > into the Apache process they may instead pick up symbols from the PHP > > libgd, and segfault randomly.

[PHP-DEV] CVS Account Request: goetsch

2004-08-04 Thread Gerrit Götsch
Hi guys, I need a cvs account because I want to take over the pear package "Search_Mnogosearch" from Bertrand Mansion. He is informed and confirmed about this (see his message below). Regards Gerrit Bertrand Mansion wrote: > > I will follow its development from the distance if you don't

Re: [PHP-DEV] GOTO operator

2004-08-04 Thread Derick Rethans
On Wed, 4 Aug 2004, Marcus Boerger wrote: > Hello tinys, > > that's the perfect place to mail such things But make sure to use a good subject... (and don't piggy back on other threads with a new topic) please Derick -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

Re: [PHP-DEV] GOTO operator

2004-08-04 Thread Marcus Boerger
Hello tinys, that's the perfect place to mail such things regards marcus Wednesday, August 4, 2004, 12:07:46 PM, you wrote: > i'm current trying: > MAKE_STD_ZVAL(return_value); > *return_value = **zstr; > /*ZVAL_ADDREF(*zstr);*/ > if (PZVAL_IS_REF(return_value))

Re: [PHP-DEV] GOTO operator

2004-08-04 Thread tinys xuefer
i'm current trying: MAKE_STD_ZVAL(return_value); *return_value = **zstr; /*ZVAL_ADDREF(*zstr);*/ if (PZVAL_IS_REF(return_value)) { SEPARATE_ZVAL(&return_value); } return; but i doubt if it's the right way btw. is it right place to ask the questio

Re: [PHP-DEV] Document call_time_pass_reference

2004-08-04 Thread Jakub Vrana
Derick Rethans wrote: > Erm, no. This is wrong :) allow_call_time_pass_reference just disables > the warning for now. You should just not pass parameters as a reference > but instead specify them as "reference parameter" in the function > declaration. I know this. > Why this is better (except fro

Re: [PHP-DEV] Document call_time_pass_reference

2004-08-04 Thread Derick Rethans
On Wed, 4 Aug 2004, Jakub Vrana wrote: > Hello! > > I want to document, why call_time_pass_reference was deprecated by > establishing allow_call_time_pass_reference. I assume code cleanliness > or performance reasons but I want to document official reason. Erm, no. This is wrong :) allow_call_tim

[PHP-DEV] Document call_time_pass_reference

2004-08-04 Thread Jakub Vrana
Hello! I want to document, why call_time_pass_reference was deprecated by establishing allow_call_time_pass_reference. I assume code cleanliness or performance reasons but I want to document official reason. Jakub Vrana -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visi

[PHP-DEV] Questions regarding "Bailed out without a bailout address"

2004-08-04 Thread Björn Wiberg
Hi! I was pointed towards this list from the php-install list regarding a specific error type that I've encountered when running the built-in tests with debugging configured into PHP 5. The error messages look like this: /usr/local/src/php5-200408020630/main/main.c(1694) : Bailed out without a