[PHP-DEV] segfault with ze2/php5-cvs

2003-03-21 Thread Sterling Hughes
?php class sheep { var $name; } $start = new sheep; $start-name = Dolly; $new = $start-__clone(); $new-name = Molly; var_dump($start); ? BOOM! -Sterling -- Good judgement comes from experience, and experience comes from bad judgement. - Fred Brooks -- PHP Development Mailing List

Re: [PHP-DEV] segfault with ze2/php5-cvs

2003-03-21 Thread Sterling Hughes
-object'? I get a segfault with that as well, same error. execute_data is corrupted. -Sterling On Fri, Mar 21, 2003 at 02:47:06PM -0500, Sterling Hughes wrote: ?php class sheep { var $name; } $start = new sheep; $start-name = Dolly; $new = $start-__clone(); $new-name

[PHP-DEV] ze2 segfault #2

2003-03-21 Thread Sterling Hughes
) ); } } $p = new Person; if ($p instanceof ISerializable) { $p-wakeup(); } echo Previous Spy: {$p-name}\n; $superspies = array('James Bond', 'Sterling Hughes', 'Austin Powers'); $p-name = $superspies[array_rand($superspies)]; echo New Spy: {$p-name}\n; if ($p

Re: [PHP-DEV] ze2 segfault #2

2003-03-21 Thread Sterling Hughes
Nevermind, I found the bug, and I have a fix that I'm testing right now. -Sterling On Fri, 2003-03-21 at 16:53, Sterling Hughes wrote: When running the following example through pres2 (apache 1.3.27), I get a segfault.. Sample pres2 file. slide titleInterfaces Suck/title blurbThey really

[PHP-DEV] Re: [PHP-CVS] curl multi

2003-03-17 Thread Sterling Hughes
? -Sterling Wico -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- People can have the Model T in any colour -- so long as it's black. - Henry Ford -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Sterling Hughes
. -Sterling Derick -- my other box is your windows PC - Derick Rethans http://derickrethans.nl/ PHP Magazine - PHP Magazine for Professionals

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Sterling Hughes
the forest for the trees. -Sterling - Sascha -- Programming today is a race between software engineers stirring to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. - Unknown -- PHP

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Sterling Hughes
noise, miss important message, skip noise, skip noise. :) -Sterling - Sascha -- Science is like sex: sometimes something useful comes out, but that is not the reason we are doing it. - Richard Feynman -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Sterling Hughes
to be on the list. I'd appreciate not having that requirement myself. You could be on a list of pre-allowed posters. also note, this is only a write requirement, reading is completely free. -Sterling Wes On Wednesday, March 12, 2003, at 01:53 PM, Marcus Börger wrote: A couple thoughts

Re: [PHP-DEV] Doing something with an each opcode as zend_execute() handles it

2003-03-05 Thread Sterling Hughes
-optimal, what do you want to do? -Sterling Thanks, David -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- Reductionists like to take things apart. The rest of us are just trying to get it together. - Larry Wall, Programming

Re: [PHP-DEV] Doing something with an each opcode as zend_execute() handles it

2003-03-05 Thread Sterling Hughes
On Wednesday, March 05, 2003 5:35 PM, Sterling Hughes wrote: Just before zend_execute()/execute() handles each opcode in its big switch() statement, I'd like to be able to call a function and pass it the opcode (or other information from the opline. Is the best approach to reset

Re: [PHP-DEV] Tie'ing variables

2003-03-02 Thread Sterling Hughes
be on by default. Of course its not the expected behavior. The functionality isn't fully integrated/mature yet. :) -Sterling Shane Zeev Suraski wrote: I wanted to do this for some time, but until recently, it wasn't very feasible, because the order of registration could

[PHP-DEV] Tie'ing variables

2003-03-01 Thread Sterling Hughes
. -Sterling -- The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs. - Joseph Weizenbaum -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

Re: [PHP-DEV] Tie'ing variables

2003-03-01 Thread Sterling Hughes
to be clear. I'd be perfectly happy with this just existing on an extension level. -Sterling PS: I'd be for a user level api as well, but I don't have the energy to fight that battle. :) -- Nothing is particularly hard if you divide it into small jobs. - Henry Ford -- PHP Development

Re: [PHP-DEV] Tie'ing variables

2003-03-01 Thread Sterling Hughes
On Sat, 2003-03-01 at 12:11, Derick Rethans wrote: On Sat, 1 Mar 2003, Sterling Hughes wrote: Analyzing PHP's routines a bit, it seems that the slowest part of a generic request is populating the special arrays, $_ENV, $_GET, etc. I was wondering if it might be possible to tie

Re: [PHP-DEV] Mono PHP

2003-02-05 Thread Sterling Hughes
On Wed, 2003-02-05 at 17:26, George Schlossnagle wrote: On Wednesday, February 5, 2003, at 05:22 PM, Stig S. Bakken wrote: On Mon, 3 Feb 2003, Sebastian Bergmann wrote: Sterling Hughes wrote: I'll be adding it into PECL in a little bit Why PECL and not add it to ext/rpc? ext

Re: [PHP-DEV] Mono PHP

2003-02-03 Thread Sterling Hughes
config.h (which wasnt installed into the bulid stuff) (hacked mono's header for the time being) not sure if that's an old version of mono though.. Ahh, should have mentioned that. I hacked php_sockets.h, just change the typedef to a #define. -Sterling Regards Alan Sterling Hughes

Re: [PHP-DEV] OO in PHP5 (was zend_API.c on php-dev)

2003-02-03 Thread Sterling Hughes
work. Needless to say (it was implemented in adt quite awhile ago), I think this is the better way. In any event, I don't see the downside to adding this api: Whomever wants to use it can take advantage of it, those who think its stupid, don't need to use it. -Sterling -- Programming today

[PHP-DEV] Mono PHP

2003-02-02 Thread Sterling Hughes
/php_mono_0_1.tar.gz. Its PHP5 only, as that's what I've switched to for all new development. Hi Ho. ?php $Console = new Mono('System.Console'); $Console-WriteLine('Hello World, PHP is .NET ready!'); ? - Sterling No More Extensions Needed Hughes (*) Mono is much more than library, of course

Re: [PHP-DEV] Practical question

2003-01-25 Thread Sterling Hughes
] -Sterling -- Programming today is a race between software engineers stirring to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning. - Unknown -- PHP Development Mailing List http://www.php.net

[PHP-DEV] PHP and XML mailing list

2003-01-24 Thread Sterling Hughes
on [EMAIL PROTECTED] -Sterling -- Nothing is particularly hard if you divide it into small jobs. - Henry Ford -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] ADT alpha 1

2003-01-21 Thread Sterling Hughes
Hi, ADT alpha 1 is available! ADT is a PHP extension that provides a collection of Abstract Data Types (ADT), including trees, graphs, queues, heaps, sets and stacks. You can find more information about adt, and installing alpha 1, at http://www.php.net/~sterling/adt/. -Sterling

RE: [PHP-DEV] Feature Request: Auto Include a Function

2003-01-13 Thread Sterling Hughes
Hi Brian, thanks for your comments, I'll be working on this, expect an implementation sometime in the near future, and structure your code accordingly! -Sterling On Mon, 2003-01-13 at 17:01, Brian T. Allen wrote: From: Andrew Brampton [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13

[PHP-DEV] php5 object model

2003-01-12 Thread Sterling Hughes
(); ? ADT works fine with Zend Engine version 1, however, when using Zend Engine 2, the code segfaults when registering a new object: zend_hash_apply_with_argument (ht=0x0, apply_func=0x81117a0 zval_update_constant, argument=0x0) at /home/sterling/work/os/php/php5/Zend/zend_hash.c:702 702

[PHP-DEV] [Fwd: 4.3.0 w/ Sablotron version check problem]

2003-01-08 Thread Sterling Hughes
-Forwarded Message- From: Lars Consume [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Luke Murphy [EMAIL PROTECTED] Subject: 4.3.0 w/ Sablotron version check problem Date: 08 Jan 2003 15:23:07 -0500 Dear Mr. Hughes, Since 4.3.0 is a recent release, and because I haven't been able

Re: [PHP-DEV] Designing for PHP4 with PHP5 in mind...

2003-01-06 Thread Sterling Hughes
it would be BC either, but I could be wrong. You're wrong. Of course, I could be too. but you're not. so its ok... :) -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] ZEND_NUM_ARGS()

2003-01-04 Thread Sterling Hughes
... Any comment? Hrmm, while this is a very interesting idea, unfortunately it would be bad for backwards compatibality issues. -Sterling Stupid is as stupid does. - Forrest Gump -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] ZEND_NUM_ARGS()

2003-01-04 Thread Sterling Hughes
Probably but it looks like that filetype(null); for example under windows will return type directory... So it looks an important bug too. Its about as much of a bug as passing filetype(null) isn't a bug. -Sterling Ask a stupid question, get a stupid answer. - Father Benedict

Re: [PHP-DEV] memleak in string.c?

2002-12-26 Thread Sterling Hughes
is allocated at the beginning of the function, but only gets freed at the end, and not if the function terminates early by e.g. RETURN_FALSE. fixed in cvs, thanks. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- PHP

Re: [PHP-DEV] CGI and CLI

2002-12-18 Thread Sterling Hughes
back into one binary and adding some magic which triggers CLI or CGI mode (perhaps to check for some environment variable). /quote Hrmm, how does renaming php-cli break compatibility between PHP _releases_? -Sterling On Wed, 2002-12-18 at 14:59, Andrei Zmievski wrote: What

[PHP-DEV] -+ [01]

2002-12-18 Thread Sterling Hughes
is that Barney disagrees, but that doesn't (like in Apache circles[1]), mean that this is blocked. Right? -Sterling [1] If Barney can give a technical reason for blocking it, and can offer an alternative solution. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

Re: [PHP-DEV] T_PAAMAYIM_NEKUDOTAYIM

2002-12-16 Thread Sterling Hughes
around this to let it accept arrays ? Its neither, its a fact of the language, the following: $classname::method is illegal, you recieved a parse error to that effect. the best thing to do is:: call_user_func(array($className, 'method'), $param1, $param2); -Sterling TIA, Bertrand Mansion

Re: [PHP-DEV] php-cgi vs php-cli naming issue

2002-12-15 Thread Sterling Hughes
mode (perhaps to check for some environment variable). I'm a bit nervous about the checking of an environment variable thing. Is that platform/server independent? Can you name a platform that this wouldn't work on? -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe

Re: [PHP-DEV] php-cgi vs php-cli naming issue

2002-12-12 Thread Sterling Hughes
How about we simply add a configure option to control this? --enable-simple-cli-name would build CGI as php-cgi and CLI as php That way we preserve BC and let those who like CLI named 'php' have that too. you mean instead of :: # mv php-cli php ? -Sterling -- PHP Development Mailing

Re: [PHP-DEV] php.exe - php-cgi.exe

2002-12-11 Thread Sterling Hughes
as a CGI is actually ideal when you're not serving high traffic stuff, like for example the company intranet, or a small extranet. PHP is heavily used for such purposes, and you most likely won't run into a bottleneck from forking php in these cases. -Sterling -- PHP Development Mailing List

Re: [PHP-DEV] php.exe - php-cgi.exe

2002-12-11 Thread Sterling Hughes
Just for the record, there is no fork() on Win32. I have little doubt Sterling meant the Win32 equivalent :). The only reason I felt this worth mentioning is that fork() on Unix is a relatively cheap operation, and an advantage unique to Unix. Some have posted here of service providers

Re: [PHP-DEV] php.exe - php-cgi.exe

2002-12-10 Thread Sterling Hughes
outside the webspace (and cgi becomes less popular as well :), then it would make sense to rechange the name (perhaps for PHPv5), but at this point changing it to php-cgi just seems like solving a problem by creating a bigger one. -Sterling Zeev -- PHP Development Mailing List http

Re: [PHP-DEV] Zend fast cache

2002-12-01 Thread Sterling Hughes
At 07:17 PM 11/30/2002 -0500, Sterling Hughes wrote: hrm. :) My only question is really about sequential accesses. for the purpose of example let's pretend its just for zvals... (pool is our pool array of zval structs) ALLOC_ZVAL() - Do we have a zval available? - yes

Re: [PHP-DEV] [PATCH] Changes to ext_skel for C++

2002-11-30 Thread Sterling Hughes
Is there any reason the ifdef __cplusplus doesn't work? There shouldn't be any need for extra processing or config options. well, i think c++ code might confuse people just starting out writing a C extension... -Sterling J Smith wrote: How about adding something like this to skeleton.c

[PHP-DEV] Zend fast cache

2002-11-30 Thread Sterling Hughes
get a nice performance increase, perhaps even if we initialized in sapi modes a few structures in MINIT, we could reuse those instead of creating and destroying which is currently quite expensive? -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

Re: [PHP-DEV] Zend fast cache

2002-11-30 Thread Sterling Hughes
At 02:59 PM 11/30/2002 -0500, Sterling Hughes wrote: Hey, I was checking the CVS logs, and I read :: revision 1.13 date: 2001/11/26 17:27:59; author: andi; state: Exp; lines: +1 -1 - Turn off fast cache until we make sure it performs well. - The best solution is probably to limit its

Re: [PHP-DEV] call_stack

2002-11-27 Thread Sterling Hughes
be very useful (for example in my case, now :-). debug_backtrace() will be available in PHP 4.3.0 and higher. Derick I thought debug_backtrace() was a ze2 thing. Does that mean 4.3 is going to use ze2? it has been backported... -Sterling -- PHP Development Mailing List http

Re: [PHP-DEV] Bug #20460 (Feature Request)

2002-11-27 Thread Sterling Hughes
(an ini option controlling how long a line should be assumed for fscanf, but I agree there is no really good solution), unless of course it means changing the parameter order to fscanf(). -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] Bug #20460 (Feature Request)

2002-11-27 Thread Sterling Hughes
function will anyway need reimplementation since it's not binary safe. err. it didn't need a reimplementation, i fixed it, it works fine in cvs. -Sterling Moriyoshi Derick -- - Derick Rethans

Re: [PHP-DEV] Bug #20460 (Feature Request)

2002-11-27 Thread Sterling Hughes
as far as using arbitrary buffer sizes. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bug #20460 (Feature Request)

2002-11-27 Thread Sterling Hughes
(dynamically :) Anyhow, I've got fscanf() doing what you wanted in CVS (as well as the release branch), give it a try, and see if it meets your needs. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bug #20308 (Feature Request)

2002-11-27 Thread Sterling Hughes
'; + } + p++; + } why not use strchr() or memchr() for this code? -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bug #20308 (Feature Request)

2002-11-27 Thread Sterling Hughes
is completely valid, and should be parsed anyway. (ie, a special case shouldn't be required if the url parser was rfc compliant). -Sterling I am not so sure that adding special cases for things like mailto: and so on is a good idea. The code works identically to how it worked in 4.2.3

Re: [PHP-DEV] Redirect on Error (not localisation)

2002-11-26 Thread Sterling Hughes
patches, post them on your website, i and other people will be happy to look @ them and discuss them, but *do not* commit them without a reasonable concensus. -Sterling John -Original Message- From: Ivan Ristic [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 2:50 PM

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
not go there. In conclusion to both (imho):: English is fine. Uncatcheable parse errors is also fine. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
Multi-lingual error codes open's up pandora's box, let's not go there. I have to disagree with you here Sterling. Worrying about support for non-english errors in php-general, etc is a bad, bad excuse not to implement them. The benefits of a completely constant-based error system

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
listing the translations of the error codes on the doc page, let's do that, instead of bloating the PHP infrastructure. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
Whereas assuming that PHP users are too stupid to understand english is not at all arrogant? :) Wrong, Sterling. Beginning PHP users might neither have formal education in computer science _nor_ foreign languages. The reason here is not about intellect; it is about requiring

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
to see that in (and I believe a cookie is created when you do that, so you always see the manual in your language). -Sterling marcus -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
is - what language does this different? Perl, Python, Ruby, Java, C++, C all have english only error messages. Anyhow, until someone comes up with a viable implementation, the thought of whether this belongs in the language is pretty much right. :) -Sterling -- PHP Development Mailing List http

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
this :) -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
On Mon, 25 Nov 2002 15:21:06 -0500 Sterling Hughes [EMAIL PROTECTED] wrote: Educate users to speak the base amount of english required, I18N'ing the language is just going to lead to headaches from a user perspective (incorrect translations, slower performance, translations

Re: [PHP-DEV] [PATCH] Redirect on Error

2002-11-25 Thread Sterling Hughes
MySQL also supports error message internationalization - one more RDBMS to annoy Sterling, I guess. MySQL IS NOT A RDBM. Besides that, I've said my piece, anyhow, i think its stupid, I'll wait till I see a patch to disagree fully :) -Sterling George On Monday, November 25, 2002

Re: [PHP-DEV] curl_exec hangs

2002-11-14 Thread Sterling Hughes
it on [EMAIL PROTECTED]! -Sterling -- Sterling Hughes [EMAIL PROTECTED] Did I help you? Consider a gift: http://wishlist.edwardbear.org/ -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-11-09 Thread Sterling Hughes
On Sat, 9 Nov 2002, Sterling Hughes wrote: On Sat, 9 Nov 2002, Sterling Hughes wrote: There is no such release of Curl yet. This makes testing the RCs quite a hassle now so either you revert those changes or get the curl folks to release this 7.10.2

Re: [PHP-DEV] turning strlen() into an opcode

2002-11-08 Thread Sterling Hughes
of elements in an array). Actually, I suppose extending count() to handle strings would be mostly equivalent. ughh, no more syntatic sugar, php is sweet enough how it is :) -Sterling -- Jon Parise ([EMAIL PROTECTED]) :: The PHP Project (http://www.php.net/) -- PHP Development Mailing

Re: [PHP-DEV] Do I need the closing ? tag

2002-11-08 Thread Sterling Hughes
change in future? I definitely think that _you_ should do it. But this is not the proper place for these questions, ask them on [EMAIL PROTECTED] ? Sterling -- Sterling Hughes [EMAIL PROTECTED] Did I help you? Consider a gift: http://wishlist.edwardbear.org/ -- PHP Development Mailing List

[PHP-DEV] Re: #19848 [Ctl-Csd]: Wrong $_REQUEST values ($_FILES appearanceis wacky)

2002-10-27 Thread Sterling Hughes
be modified... For now I'll leave it, if someone feels strongly about it either way, they can change it... -Sterling Regards, Philip On 28 Oct 2002 [EMAIL PROTECTED] wrote: ID: 19848 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status

[PHP-DEV] Work is beginning on cURL and PHP again

2002-10-21 Thread Sterling Hughes
to the extension, but the full revamping should be expected around the time of PHP 5 (PHP 4.3 is too soon for all these changes to be integrated and tested). -Sterling PS: I'll be at the PHP Conference in Frankfurt, and ApacheCon in Las Vegas, if you're coming to either of those, feel free to talk about

Re: [PHP-DEV] Work is beginning on cURL and PHP again

2002-10-21 Thread Sterling Hughes
On Mon, 2002-10-21 at 22:15, Jon Parise wrote: On Mon, Oct 21, 2002 at 10:12:55PM +0200, Sterling Hughes wrote: * Autogenerating much of the interface between cURL and PHP, allowing PHP to support multiple versions of the underlying cURL library By what mechanism do you plan

Re: [PHP-DEV] Work is beginning on cURL and PHP again

2002-10-21 Thread Sterling Hughes
On Mon, 2002-10-21 at 22:46, Shane Caraveo wrote: Sterling Hughes wrote: On Mon, 2002-10-21 at 22:15, Jon Parise wrote: On Mon, Oct 21, 2002 at 10:12:55PM +0200, Sterling Hughes wrote: * Autogenerating much of the interface between cURL and PHP, allowing PHP to support multiple

Re: [PHP-DEV] Work is beginning on cURL and PHP again

2002-10-21 Thread Sterling Hughes
will allow the cURL extension to support multiple versions of the library without a lot of maintanence and stuff :) -Sterling Regards Alan Sterling Hughes wrote: Hi, I'm going to be working on updating the PHP cURL extension in the coming weeks: * adding the multi-interface

[PHP-DEV] Re: Curl Multi Interface Patch

2002-10-20 Thread Sterling Hughes
On Sun, 2002-10-20 at 02:16, Boris Bukowski wrote: ok, i can see the use in that, however, i think it can be more useful if you give the user the option of when to use the select() call - that's the whole point of the cURL multi interface, and while it may be useful in this case, the

[PHP-DEV] Re: Curl Multi Interface Patch

2002-10-19 Thread Sterling Hughes
would this patch be useful, your implementation of curl_multi_exec() kinda defeats the whole purpose, doesn't it? -Sterling thx, Boris ? // creates a multi session $multi = curl_multi_init(); // start of a normal easy session $ch1 = curl_init(http://192.168.4.2/;); $ch2

[PHP-DEV] Re: Curl Multi Interface Patch

2002-10-19 Thread Sterling Hughes
On Sun, 2002-10-20 at 01:23, Boris Bukowski wrote: Am Saturday 19 October 2002 23:59 schrieb Sterling Hughes: On Sat, 2002-10-19 at 15:42, Boris Bukowski wrote: Hi, now I made a Patch that is hopefully ok for you ;^) I introduced the following functions: curl_multi_init

[PHP-DEV] $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-15 Thread Sterling Hughes
is that the second solution should be merged in for PHP 4.3, and that for PHPv5 we should normalize the $_FILE array. Thoughts? Comments? Questions? I'll start working on this tommorow unless i hear otherwise.. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

Re: [PHP-DEV] Re: $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-15 Thread Sterling Hughes
data coming from the request ? :) -Sterling --Jani -- Yasuo Ohgaki Sterling Hughes wrote: Hey, If you haven't taken a look : http://bugs.php.net/bug.php?id=19848 please do so... In thinking about it, to me, there are 2 solutions: 1) Rearranging files to work

Re: [PHP-DEV] Re: $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-15 Thread Sterling Hughes
On Wed, 2002-10-16 at 05:35, Chris Shiflett wrote: Right. I was just wondering if there was a reason why the $_POST array wasn't originally created like Sterling suggested for $_FILES and $_REQUEST in his solution 1: $_FILES['toto']['c']['type'] and $_REQUEST['toto']['c']['type

[PHP-DEV] Re: RFC: ext/xslt

2002-10-07 Thread Sterling Hughes
On Sun, 2002-10-06 at 20:28, Melvyn Sopacua wrote: Sterling, At 22:20 2-10-2002, Sterling Hughes wrote: http://www.bumblebury.com/phptodo/xmsl.html my thoughts on the matter... If you really want to handle XML, XSLT and the like in PHP, the solution is to build a standardized

[PHP-DEV] Re: RFC: ext/xslt

2002-10-02 Thread Sterling Hughes
processors will be integrated via the abstraction, that Sterling has provided? If not - this would raise whether the xslt_ namespace is correct (academic but still) and if so, how would (Sablotron) processor specific functions be integrated? Would these register under: xslt_sablot_

[PHP-DEV] Save the Orphans - No this isn't coming from a friend in Nigeria

2002-09-25 Thread Sterling Hughes
incentive/interest for me to _maintain_ them in my freetime anymore... -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP mem leaks

2002-09-12 Thread Sterling Hughes
is it would be something else, however, it could possibly be due to the libraries that you are compiling with PHP. A good place to ask such questions is on the [EMAIL PROTECTED] mailing list. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] ADT CVS Commits

2002-09-09 Thread Sterling Hughes
Quoting [EMAIL PROTECTED]: On Mon, 9 Sep 2002, Sebastian Bergmann wrote: Could some kind soul with CVSROOT karma change ^adt /home/sterling/loginfo.pl [EMAIL PROTECTED], [EMAIL PROTECTED] $USER %{sVv} to ^adt /home/sterling/loginfo.pl [EMAIL PROTECTED

Re: [PHP-DEV] Re: php4 /ext/standard http_fopen_wrapper.c

2002-09-07 Thread Sterling Hughes
is completely different :) -Sterling Thanks Peter Neuman -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] mbstring

2002-09-02 Thread Sterling Hughes
expect a few kinks, with mbstring it seems that there are less than usual (we also had major problems with MySQL integration by the way...) -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] RE:

2002-09-02 Thread Sterling Hughes
-Original Message- From: Sent: None Subject: Date: Mon, 2 Sep 2002 06:42:15 -0500 (EST) From: Sterling Hughes [EMAIL PROTECTED] To: [EMAIL PROTECTED] In-Reply-To: [EMAIL PROTECTED] References: [EMAIL PROTECTED] X-Priority: 3 Importance: Normal X-MSMail

Re: [PHP-DEV] mbstring

2002-09-01 Thread Sterling Hughes
, you seem to forget that PHP is not only used in England, but other areas where it is _quite_ important, and _quite_ necessary. -Sterling -- james -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Development Mailing List http

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / NEWS php.ini-distphp.ini-recommended /main main.c output.c php_globals.h php_output.h

2002-09-01 Thread Sterling Hughes
amount of discussion takes place on the mentioned IRC channel. That's not the point, before decisions that require developer discussion are made, the discussion should take place on php-dev, as on #php.bugs you only have a small subset of php developers. -Sterling

Re: [PHP-DEV] PHP 4.3 and PHP 5

2002-08-22 Thread Sterling Hughes
that you fetch from CPAN. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Ways to Encourage PHPv5 usage

2002-08-21 Thread Sterling Hughes
% of users want Ah well! -Sterling Ps, some related notes: 1) This message is meant in good humor, don't take it to seriously. I don't think my INBOX can take another flamewar, I'm reading my mail via and unthreaded webmail client (I'm _really_ missing mutt's Thread-Delete feature

Re: [PHP-DEV] PHP 4.3 and PHP 5

2002-08-21 Thread Sterling Hughes
, that makes it easy to bundle/unbundle software with PHP. -Sterling Beyond that, I can't seem to think of anything else: I know that I would be very happy to start using all these new features in production ASAP, and I think that it will take 4.3 and 4.3.1 to stabilize these features

Re: [PHP-DEV] Major Problem

2002-08-17 Thread Sterling Hughes
talking about an HTML feature, which _certainly_ doesn't have a goto. :) Anyhow, this question should be asked and answered on [EMAIL PROTECTED], not [EMAIL PROTECTED] which is a mailing list for developing PHP itself, not developing with PHP. -Sterling -- - Martin

Re: [PHP-DEV] Re: adding tcsetattr to dio extenstion

2002-08-15 Thread Sterling Hughes
can somebody give me karma to add this.. and probably karma for phpdoc/en/reference/dio/functions (or similar) done. -Sterling regards alan regards alan Sterling Hughes wrote: attached is a patch to add tcsetattr() to the dio extension any objections/suggestions

Re: [PHP-DEV] Curl Wrapper now in HEAD

2002-08-13 Thread Sterling Hughes
Hi Sterling, I've just commited my curl based wrapper. It's currently read-only (due to a temporary limitation in curl), and might not work properly for include/require statements (or passing streams to third-party libraries) on systems without fopencookie. Also, due to another bug

Re: [PHP-DEV] Streams: FTP/HTTP wrapper gurus wanted

2002-08-11 Thread Sterling Hughes
! :-) Wez, This seems like an ideal time to me to start working on the bundling of cURL into PHP, no? -Sterling --Wez. -- Wez Furlong The Brain Room Ltd. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Development

Re: [PHP-DEV] Streams: FTP/HTTP wrapper gurus wanted

2002-08-11 Thread Sterling Hughes
Hi Sterling, I'm not sure :-) I'm 50/50 on integrating curl, because I know that it supports more features than the current wrappers, but I'm not sure if it supports a rich enough API to do the things that the streams API supports. So, I need your opinion: Does libcurl allow you

Re: [PHP-DEV] Streams: FTP/HTTP wrapper gurus wanted

2002-08-11 Thread Sterling Hughes
Sterling, Thats all I needed to know; I'll take a closer look at the library and see if I can cook up a curl based stream/wrapper. Is there a minimum version of the library (release preferred, of course) that has this new multi-interface, or should I just use the CVS version for now? Go

Re: [PHP-DEV] [PATCH] ZEND_* instead of PHP_*

2002-08-03 Thread Sterling Hughes
counterparts. This should encourage developers of new extension modules to use the ZEND_ macros in place of the PHP_ ones. This is bogus, usage should be consistent, but neither one is really better... -Sterling dave == PATCH inlined here == diff -ruNbB ../php-4.2.2.ORIG/CODING_STANDARDS

Re: [PHP-DEV] phpthreads - hints anyone...

2002-07-31 Thread Sterling Hughes
focus on an OO solution (like what Perl does), but that's all surrounding elements. Good luck with threading the Zend Engine :P -Sterling regards alan -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-07-29 Thread Sterling Hughes
to be available since sablot 0.95, but better than nothing :) patch added to cvs. -Sterling chregu -- christian stocker | bitflux GmbH | schöneggstrasse 5 | ch-8004 zurich phone +41 1 240 56 70 | mobile +41 76 561 88 60 | fax +41 1 240 56 71 http://www.bitflux.ch | [EMAIL PROTECTED

Re: [PHP-DEV] New FTP extension functionality

2002-07-29 Thread Sterling Hughes
i/o. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: GD library and PHP

2002-07-29 Thread Sterling Hughes
is the developers mailing list. If you would like to work on the gd extension, please feel free to apply for a cvs account at: http://www.php.net/cvs-php.php Thanks, Sterling Hello, I have recently learned that GD library is being integrated into PHP, and apparently you have some relation

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

2002-07-11 Thread Sterling Hughes
(php) programmer, so no worries there :) -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] file_exists() stopped working

2002-07-06 Thread Sterling Hughes
Sterling Hughes wrote: hrmm, ok.. I'll add a patch to filestat.c by tommorow which fixes these problems. Just don't forget it :) just a note that I haven't forgotten it, patch is pending until I get non- pos-hotel-5-euro-for-30-minutes-on-shit-computer internet access

Re: [PHP-DEV] file_exists() stopped working

2002-07-04 Thread Sterling Hughes
file_exists() seems to return always FALSE on Win32 with current HEAD. hrmm, ok.. I'll add a patch to filestat.c by tommorow which fixes these problems. I really wish we were using apr or such. -Sterling -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

  1   2   3   4   5   >