Re: [PHP-DEV] Question for Zeev, Zak or Georg - mysql_query andpossible integer overflow?

2003-03-25 Thread Wez Furlong
application so that it re-runs itself when the query fails (pcntl_exec(), or one of the other execution functions). --Wez. On Tue, 25 Mar 2003, Matt Flaherty wrote: Hi, I have a question for the authors of the mysql extension. I'm sure you gentlemen are very busy, but I'd appreciate your insight

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-15 Thread Wez Furlong
; default: What have I done? Well, someone's taking fd (declared as an 'int', which ... There is no need for a patronizing tone here; I can read C code. I will commit this fix shortly. Are there any other places in the streams code that are similarly affected? --Wez. -- PHP

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-14 Thread Wez Furlong
Please coordinate with me on streams issues; if some 64bit oses declare descriptors as longs rather than ints, then we could have a bigger job on our hands (similar to the mess with socket types under win32). --Wez. On Fri, 14 Mar 2003, David Hill wrote: CRIPES, people! I posted patches

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-14 Thread Wez Furlong
will endevor to finish my look at the patch and see if Jani will let me commit it. Which part of please coordinate with me on streams issues didn't you get? ;-) If there are long vs int issues in streams, please let me know where they are and I will fix it. Thanks :) --Wez. -- PHP Development Mailing

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-13 Thread Wez Furlong
Make sure that you are using the latest stable snapshot from http://snaps.php.net; a number of 64bit issues have already been addressed. --Wez. On Thu, 13 Mar 2003, Chris Field wrote: We have been attempting to run php on a brand new sun v880, and have had a number of problems. first

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-13 Thread Wez Furlong
Of the PHP_4_3 branch? Could you open a bug report for each of these three issues at bugs.php.net? --Wez. On Thu, 13 Mar 2003, Chris Field wrote: I am working off a checkout from about three days ago... On Thu, 2003-03-13 at 11:21, Wez Furlong wrote: Make sure that you are using

Re: [PHP-DEV] Re: Opening files for write from php modules

2003-03-11 Thread Wez Furlong
server environment. --Wez. On Mon, 10 Mar 2003, Scott Baker wrote: Nevermind... Seems the webserver was on afs filespace, and apache/php didnt like the permissions it had there. Everything works now that I moved it to a jfs filesystem. Scott Baker wrote: I'm trying to write an extention

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Wez Furlong
Perhaps because he prefers to read most sites in his native language? --Wez. On Mon, 10 Mar 2003, Mincu Alexandru wrote: why not set your browser accept language to english? -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Specifying pass-by-ref parameters

2003-03-07 Thread Wez Furlong
Look at the function table in basic_functions.c: { PHP_FE(nameoffunc), NULL } This NULL can be replaced with an array that specifies BYREF_FORCE for the relevant arguments; look for first_and_second__args_force_ref for an exmaple. --Wez. On Fri, 7 Mar 2003, l0t3k

Re: [PHP-DEV] bug in zend_API.c (with patch)

2003-03-07 Thread Wez Furlong
It's not a bug; PHP is a case-IN-sensitive language when it comes to function and class names. Adding strtolower calls will only slow down the whole language. Using lowercase function and class names is the best solution. --Wez. On Fri, 7 Mar 2003, Eric Lambart wrote: On Fri, 2003-03-07

Re: [PHP-DEV] bug in zend_API.c (with patch)

2003-03-07 Thread Wez Furlong
, or in the book ... Consider this thread a warning ;-) --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: main/network.c

2003-03-01 Thread Wez Furlong
Hi marcus, Moriyoshi is going to revert the HAVE_INET_NTOP part; I have to go out now, so I won't be able to address the warnings right away, but will look at them later. --Wez. On Sat, 1 Mar 2003, Marcus [iso-8859-1] Börger wrote: Hi Wez, i cannot compile current network.c. The following

Re: [PHP-DEV] Getting an external param into a userspace streamsfilter...

2003-02-27 Thread Wez Furlong
mixed $this-params; // params passed from prepend/append func Hope this helps; please only use current CVS for PHP 5 for playing around with this stuff; if you run into problems let me (and Sara [EMAIL PROTECTED]) know and we can sort them out. --Wez. On Thu, 27 Feb 2003, David Brown wrote

Re: [PHP-DEV] date() extension

2003-02-27 Thread Wez Furlong
If you don't have time to support your own patch, why should we commit it to CVS!?? There is a reason for that doc being there; please read it. --Wez. On Thu, 27 Feb 2003, Dirkjan Ochtman wrote: Didn't have time, but here's a new patch. Regards, Dirkjan Wez Furlong [EMAIL PROTECTED

Re: [PHP-DEV] date() extension

2003-02-27 Thread Wez Furlong
You don't need any of that stuff to read the guidelines for submitting a patch - why don't you just read it and save everybody some time... --Wez. On Fri, 28 Feb 2003, Dirkjan Ochtman wrote: Please! It's just a date() parameter, about 20 lines of code, mostly taken from another date

Re: [PHP-DEV] Flex never-interactive mode

2003-02-26 Thread Wez Furlong
interactive. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Performance degradation part 2 the module version

2003-02-25 Thread Wez Furlong
flag). I'm sure we can eliminate those seeks. Are there any other areas in the streams code that you can see that could do with a syscall tune-up? --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] extra realpath() found

2003-02-24 Thread Wez Furlong
With my ze-stream patch to PHP 5 (in HEAD now), this can be avoided as all files opened on the behalf of the engine can be managed via a single function, provided that they set the zend file handle to open via a filename. --Wez. On Mon, 24 Feb 2003, Sander Roobol wrote: On Sun, Feb 23, 2003

Re: [PHP-DEV] Performance degradation part 2 the module version

2003-02-23 Thread Wez Furlong
certifying it safe for inclusion in the branch. Have you been testing PHP_4_3 from CVS or the actual 4.3.0 release? You might find the situation slightly better using the latest (I tidied up some seek related issues the other day). --Wez. On Sun, 23 Feb 2003, Rasmus Lerdorf wrote: In 4.3 we have

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-23 Thread Wez Furlong
didn't want to duplicate any effort you have been making. --Wez. On Sun, 16 Feb 2003, Andi Gutmans wrote: At 03:41 PM 2/13/2003 -0500, James E. Flemer wrote: RCS file: /repository/TSRM/tsrm_virtual_cwd.c,v retrieving revision 1.41 diff -u -b -r1.41 tsrm_virtual_cwd.c --- TSRM

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Wez Furlong
% sure if we want this feature, but perhaps it is worth revisiting that patch. --Wez. On Thu, 20 Feb 2003, Ilia A. wrote: On February 20, 2003 02:51 pm, Sara Golemon wrote: Was it decided not to create these? Yes Is it simply a matter of noone having gotten around to it? Yes Am I paying

Re: [PHP-DEV] date() extension

2003-02-17 Thread Wez Furlong
Please read the README.SUBMITTING_PATCH file in the root of the php source and re-submit your patch. --Wez. On Mon, 17 Feb 2003, Dirkjan Ochtman wrote: begin 666 datetime.c -- 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 / run-tests.php /ext/curlinterface.c streams.c /ext/fbsql php_fbsql.c /ext/ftp ftp.c /ext/hyperwavehg_comm.c hw.c /ext/imap php_imap.c /ext/ldap ldap.c /ext/

2003-02-16 Thread Wez Furlong
winsock2.h as one of the first things in php.h, so the large majority of all other .c files probably don't even need to include it explicitly anymore. --Wez. On Sun, 16 Feb 2003, Sebastian Bergmann wrote: Wez Furlong wrote: Log: A add much more useful select(2) implementation than

Re: [PHP-DEV] [PATCH] make the win32 project working again afterdate_sun*()'s

2003-02-16 Thread Wez Furlong
I'll do this now. On Mon, 17 Feb 2003, moshe doron wrote: http://212.199.221.100/moshe/win32project-sunfuncs.patch.txt -- -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-14 Thread Wez Furlong
) to see which ones are making the difference. There is not much that anyone on the list can do to help you here; it's your code, only you have this problem and everyone elses code works just fine. Sorry that we can't help, --Wez. On Fri, 14 Feb 2003, Eric Lambart wrote: At this point, can

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-12 Thread Wez Furlong
non-zend-api code is misbehaving, and valgrind will help you find that problem code. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-11 Thread Wez Furlong
. etc. Using the source is your best option if you don't want (or are not allowed) to show us your source. The zend api docs http://www.php.net/manual/en/zend.php, although not complete, should be good enough for what you need to do. --Wez. On Tue, 11 Feb 2003, Eric Lambart wrote: Hello all, I

Re: [PHP-DEV] proc_open() patch

2003-02-10 Thread Wez Furlong
Hi Shane, Looks good to me. I will test it later this week, but it doesn't look like there will be any problems. --Wez. On Sun, 9 Feb 2003, Shane Caraveo wrote: The attached patch adds 2 optional parameters to proc_open(). The first, cwd, and the second is an array for executing

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard file.c

2003-02-10 Thread Wez Furlong
Hey Ilia, Lets also have either an enum or some real #define'd constants for the values used in the C code. eg: REGISTER_LONG_CONSTANT() and the code that checks for a number should both be using a symbolic constant rather than a hard-coded number. --Wez. On Mon, 10 Feb 2003, Ilia A. wrote

[PHP-DEV] ChangeLog again

2003-02-09 Thread Wez Furlong
ChangeLog ChangeLog ChangeLog ChangeLog :) Anyone want to look into kicking the script and archiving the 2002 entries as a .gz ? --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: php4 . cant compile . ext/standard/var.c

2003-02-07 Thread Wez Furlong
Make sure you have the correct set of working files: For PHP 5: cvs co php5 For PHP 4.3-dev cvs co -r PHP_4_3 php4 Checking out php4 HEAD is not supported. --Wez. On Sat, 8 Feb 2003, Lukas Schroeder wrote: hi wez, i'm currently trying to compile cvs head. there are quite a lot

Re: [PHP-DEV] http streams can't be filtered?

2003-02-06 Thread Wez Furlong
It should not happen, and there is code in the http opener that *should* avoid this, because it has negative implications for including files via http. I will take a look when I have more time... --Wez. On Wed, 5 Feb 2003, Sara Golemon wrote: Wez, After our short discussion in IRC today I

Re: [PHP-DEV] Question on bug list

2003-01-31 Thread Wez Furlong
Hey, Wouldn't it be nice/more useful to generate RDF/RSS on a per-bug basis? Then you could just add the feed url to your favourite RSS client. If you make it do that, then I will take a look and commit, provided that there are no objections to this. --Wez. On Fri, 31 Jan 2003, Sara Golemon

[PHP-DEV] [PATCH] var_dump and friends dislike new style overload objects

2003-01-30 Thread Wez Furlong
names. I did not see a zend api function to do this, and IMO there should be such a thing among the introspection functions in PHP 5. Should I commit this patch? --Wez. Index: ext/standard/var.c === RCS file: /repository/php4/ext

Re: [PHP-DEV] Compiling php4activescript

2003-01-27 Thread Wez Furlong
), and that it would be particularly dangerous to deploy it for client-side scripting. (PHP is just too powerful). However, if you want to help iron out the bugs, go right ahead :) --Wez. On Mon, 27 Jan 2003, joe hansche wrote: I just tried downloading the latest stable source snapshot ( http

Re: [PHP-DEV] php_stream size

2003-01-25 Thread Wez Furlong
that it is not suitable for read/write mode). I hope that has helped! --Wez. On Sat, 25 Jan 2003, l0t3k wrote: wez, what's the most portable way to get the size of a stream ? right now im using stream = php_stream_open_wrapper ( path, mode, options, opened); php_stream_seek ( stream, SEEK_END

Re: [PHP-DEV] PHP 5.0.0-dev with J2sdk1.4.1_01 on Linux

2003-01-23 Thread Wez Furlong
Because it is now a part of the rpc extension, which currently does not build under unix (but will do in the not too distant future). --Wez. On Thu, 23 Jan 2003, Seung Hwan Kang wrote: Is a Java extension removed or intensionally left over from PHP 5.0.0-dev? I have no error messge when I

RE: [PHP-DEV] PHP4 + PHP5

2003-01-14 Thread Wez Furlong
On Tue, 14 Jan 2003, Mike Robinson wrote: I'm assuming PHP5 will use _only_ ZE2 once it's forked? s/will/does/ s/once/now/ -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-QA] Test results [failed] PHP5 (ZE2) on Tru64

2003-01-13 Thread Wez Furlong
-sid thingy. I'm not going to touch that code, as it is hairy enough, however, it should just be a case of changing the declaration for the scanner_output_handler function to be consistent with the other functions that it calls. --Wez. On Mon, 13 Jan 2003, Magnus [ISO-8859-1] Määttãàwrote: Also

Re: [PHP-DEV] mailparse

2003-01-09 Thread Wez Furlong
as they are for a while. At least you can read the docs ATM :) --Wez. On Wed, 8 Jan 2003, Morten Winther wrote: Hello, When you look up mailparse on php.net it doesn't say that this function is moved PEAR. Shouldn't this be corrected? http://www.php.net/manual/en/ref.mailparse.php

Re: [PHP-DEV] Terminal text objects (PHP CDK NCURSES)

2003-01-09 Thread Wez Furlong
This would be a nice thing to include in PECL (see http://pear.php.net). --Wez. On Wed, 8 Jan 2003, Nikolai Vladychevski wrote: Hello, I want to share the code (php-extension) I have included into php-4.2.2 to support CDK widgets (http://gd.tuwien.ac.at/hci/cdk/?file=cdk.tar.gztype=listing

[PHP-DEV] Re: Stream filters, converters and i18n.

2003-01-09 Thread Wez Furlong
(such as iconv, recode, mbstring) to register other codesets (perhaps using a wildcard or some dynamic query mechanism such as that used in the filters API) when they are loaded at runtime. If you do it this way, you get a +100 from me :-) --Wez. -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-07 Thread Wez Furlong
easier; this way you could have a filtered read stream but leave writing unfiltered etc. --Wez. On Wed, 8 Jan 2003, Moriyoshi Koizumi wrote: Hi, On Tue, Jan 07, 2003 at 12:12:15PM -0800, Sara Golemon wrote: Speaking of filter string.base64 I have an issue with its parity. string.base64

Re: [PHP-DEV] stream filter problem

2003-01-04 Thread Wez Furlong
with the user-space filters; I will investiage in more detail later this weekend, if I get time. --Wez. On Sun, 5 Jan 2003 [EMAIL PROTECTED] wrote: Hi, I'm currently working on base64 filter, and then I'm stuck with odd behaviour of stream_filter_write op. When I try to write some larger chunk

[PHP-DEV] Re: Patch for #21330 - socket_select()

2003-01-02 Thread Wez Furlong
#21330 actually sounds completely bogus after having looked at the code... --Wez. PS: add diff -u to your .cvsrc On Thu, 2 Jan 2003 [EMAIL PROTECTED] wrote: This is the patch that fix the issue of socket_select that doesn't wait if value for timeval is 0. Tell me what you think. Regards

Re: [PHP-DEV] Patch for #21330 - socket_select()

2003-01-02 Thread Wez Furlong
It's also broken as it will not allow for a null value to give an infinite wait period. --Wez. On Thu, 2 Jan 2003, Tularis wrote: if (sec != NULL || sec != 0) { convert_to_long_ex(sec); tv.tv_sec = Z_LVAL_P(sec); tv.tv_usec = usec; } else { tv.tv_sec = 0; tv.tv_usec

Re: [PHP-DEV] 4.3.0, RedHat 7.3:Fatal error: Nesting level too deep- recursive dependency? in Unknown on line 0, even with empty file

2003-01-02 Thread Wez Furlong
Make a backtrace and then we will have a clue about what is happening... --Wez. On Thu, 2 Jan 2003, Tobias Schlitt wrote: Hi everyone! Today i compiled 4.3.0 on my Laptop (Redhat 7.3). Compiling works fine. Running Scripts works (until now) fine. Except, that i'm getting the same error

[PHP-DEV] PHP in 2003 (leading to PHP 5)

2003-01-01 Thread Wez Furlong
* goals for PHP 5 to fit into slot no. 4 below? Are there any reasons not to switch to ZE2 right away? --Wez. Roadmap: 1. Switch to ZE2 by default 2. Establish PECL CA authority and binary package/release process (particularly important for win32) 3. Bundle PHP-Soap (and stop the bleeding

[PHP-DEV] CVS mangled (netware/apachecore.imp, netware/bisonflexzend.bat)

2003-01-01 Thread Wez Furlong
% cvs -q up cvs server: nothing known about netware/apachecore.imp cvs server: nothing known about netware/bisonflexzend.bat I can't find any trace of these files in my checkout (or in the CVS files), so I presume that something has been munched on the server side? --Wez. -- PHP Development

[PHP-DEV] ChangeLog

2003-01-01 Thread Wez Furlong
December, and I wonder if some script needs to be kicked to update the log. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: #21139 [Ctl]: zlib.output_compression + windowsfailure

2002-12-23 Thread Wez Furlong
-up on this report ;-) --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: #21139 [Ctl]: zlib.output_compression + windows failure

2002-12-22 Thread Wez Furlong
This needs one of you output guys to resolve it. Andrei mentioned something about making the final release before 1st Jan, so if you can, please get your coding-butts in gear :) --Wez. On 22 Dec 2002 [EMAIL PROTECTED] wrote: ID: 21139 Updated by: [EMAIL PROTECTED

Re: [PHP-DEV] Re: output buffering problem

2002-12-19 Thread Wez Furlong
Please ask these questions on the php-general list. --Wez. On Thu, 19 Dec 2002, electroteque wrote: sorry about the false alarm , if you go here u will see a working example http://galleries.dyndns.org:1023/progress.php i had to add both flush functions together to work , obviosuly flsuh

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-12-19 Thread Wez Furlong
Would this solve the problem? Index: main/main.c === RCS file: /repository/php4/main/main.c,v retrieving revision 1.520 diff -u -r1.520 main.c --- main/main.c 16 Dec 2002 15:43:52 - 1.520 +++ main/main.c 19 Dec 2002 13:06:45

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-12-19 Thread Wez Furlong
Actually, it does seem valid to me; streams based on FILE* are not registered in the persistent list, so does it make sense to have the associated resources registered as persistent resources when they will get cleaned up by the engine at request shutdown? --Wez. On Wed, 18 Dec 2002, Andi

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-12-19 Thread Wez Furlong
On Thu, 19 Dec 2002, Wez Furlong wrote: Actually, it does seem valid to me; streams based on FILE* are not registered in the persistent list, so does it make sense to have the associated resources registered as persistent resources when

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2002-12-19 Thread Wez Furlong
If my vote has enough Karma Power, then I'm +1 for this solution. --Wez. On Thu, 19 Dec 2002, Edin Kadribasic wrote: After having consulted with Andrei, Derick and others on irc here is a proposal for a compromise: On Unix: 1. Both cgi and cli are built as 'php' in their respective sapi

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

2002-12-11 Thread Wez Furlong
[imagine large quantities of quoted text here] On Wed, 11 Dec 2002, Edin Kadribasic wrote: So i am -1 on renaming CLI And +1 on keeing CGI as php-cgi and CLI as php marcus Just for the record: my vote is the same. aolme too/aol [imagine large quantities of quoted text here] -- PHP

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

2002-12-09 Thread Wez Furlong
) without first understanding the issues behind them. It just wastes time, which is better spent developing, bug fixing, documenting - doing just about anything else is more productive. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] 4.3 when?

2002-12-09 Thread Wez Furlong
Because we are still finding and fixing bugs in the RCs. --Wez. On Mon, 9 Dec 2002, Andi Gutmans wrote: Now that still leave my original question about 4.3. Why the hell aren't we rolling it? -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net

Re: [PHP-DEV] 4.3 when?

2002-12-09 Thread Wez Furlong
limit crash --Wez. On Mon, 9 Dec 2002, Andi Gutmans wrote: Any idea how many more bugs are waiting to be addressed? Andi At 12:36 PM 12/9/2002 +, Wez Furlong wrote: Because we are still finding and fixing bugs in the RCs. --Wez. On Mon, 9 Dec 2002, Andi Gutmans wrote: Now

Re: [PHP-DEV] OpenSSL wrappers for PHP 4

2002-12-02 Thread Wez Furlong
, so I would feel a resistance to adding all those new functions, but don't have a problem with it going in if there is sufficient demand. --Wez. The Streams Guy and openssl extension maintainer On Mon, 2 Dec 2002, David Gillies wrote: Hi, I'm new to this list... Over the past few weeks I've

Re: [PHP-DEV] Re: Modules/Extensions not in 4.3

2002-11-29 Thread Wez Furlong
extensions o One doc download for extension developers (the streams and zend API stuff needs a proper home). o One doc system to rule them all (but keep it modular of course). --Wez. On Fri, 29 Nov 2002, Philip Olson wrote: The peardoc format will be phased out for peardoc2 which uses several files

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

2002-11-29 Thread Wez Furlong
to the manpage for parse_url saying to use parse_url_rfc instead, and eventually depricate parse_url (perhaps with PHP 5.0). But which RFC would it follow? There are at least 3 :) Why not just use the Net_URL pear package? --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe

[PHP-DEV] Re: Modules/Extensions not in 4.3

2002-11-29 Thread Wez Furlong
, the developer docs should be written only in english for the reasons you mention above (which are similar to the reasons for not localizing the php error messages). --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 5 - when?

2002-11-27 Thread Wez Furlong
a weekly summary of this list on zend.com (in the developer zone). Hope that helps, --Wez. On 27 Nov 2002, Piotr Sobolewski wrote: Hi, First of all - I hope I post to the right group. I could not find any righter group for my question Can somebody tell me when the version 5 of PHP

Re: [PHP-DEV] Concrete suggestion re: i18n messages

2002-11-26 Thread Wez Furlong
generated by php_error_docref which will display more detailed information in the localized manual. --Wez. On Tue, 26 Nov 2002, Sascha Schumann wrote: A possible implementation would look like this: A new ini setting is added. php.error_lang A new function is provided

Re: [PHP-DEV] [PATCH 4.3.0] Win32 CoInitalize/CoUninitialize CallMove

2002-11-25 Thread Wez Furlong
+1 Makes very much sense (almost too much sense!) to me. --Wez. On Mon, 25 Nov 2002, Michael Sisolak wrote: While stess testing the recent threading fixes under the ISAPI module I was seeing a lot of instability in IIS after the testing finished. While the PHP pages would continue to load

Re: [PHP-DEV] ZE2 and classes

2002-11-19 Thread Wez Furlong
php.net/get_defined_functions and php.net/get_class_methods not good enough for you? ;-) What's the long term aim? --Wez. On Tue, 19 Nov 2002, Marcus [iso-8859-1] Börger wrote: I have experimented with the code below. The main thing is to introduce a function that can return a list of all

Re: [PHP-DEV] Mailparse extension

2002-11-19 Thread Wez Furlong
Hi Mike, I'm ironing out a few nasty bugs; I'm aiming to have it stable either in time for 4.3 or very shortly afterwards. (It's not bundled with the core any longer - it's now in PECL) --Wez. On Tue, 19 Nov 2002, Mike Hall wrote: Is this going to be production stable in 4.3.0? Cheers

Re: [PHP-DEV] getimagesize() broken in HEAD

2002-11-18 Thread Wez Furlong
I just merged some streams fixes back from the branch, so perhaps it was a streams problem after all? --Wez. On Mon, 18 Nov 2002, Marcus [iso-8859-1] Börger wrote: At 11:20 18.11.2002, Derick Rethans wrote: On Mon, 18 Nov 2002, Rasmus Lerdorf wrote: getimagesize() works ok in the 4.3

[PHP-DEV] RE: hebrew patch for jewish calendar

2002-11-18 Thread Wez Furlong
Hey Moshe, Could you resend your revised patch to Tal (and the list)? --Wez. smime.p7s Description: application/pkcs7-signature

Re: [PHP-DEV] XP?

2002-11-17 Thread Wez Furlong
Plus we were using IRC to bounce ideas off each other at the same time :) --Wez. On 11/17/02, Andrei Zmievski [EMAIL PROTECTED] wrote: Who says Xtreme Programming can't work over long distances.. :) iliaa Sat Nov 16 19:07:33 2002 EDT Modified files

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-13 Thread Wez Furlong
) want to push *are* very stable. Let's just disable the non-stable, lazy programmer hacky parts by default and everyone will be happy. (Still no responses to my no-nonsense suggestion) --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Critical? Shutdown issue with nsapi (Bug #20274)

2002-11-12 Thread Wez Furlong
shutdown. Then keep on making http requests for the script until you run out of file handles. Once we have a better picture of the cause of the problem, we can sort it out. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [RFC] php-cli: option to ignore php.ini

2002-11-11 Thread Wez Furlong
What are your opinions for having some option to prevent the loading/parsing of php.ini for the CLI version of PHP? -n No Ini File - skips parsing php.ini on startup At the moment, I'm using -c DOESNOTEXIST to achieve the same result, but this is a bit hacky. --Wez. -- PHP

Re: [PHP-DEV] Freeing memory

2002-11-09 Thread Wez Furlong
Hi Tony, What kind of things are you planning to do? proc_open seems ideal to extend for this purpose, and works on win32. --Wez. On 09/11/02, Tony Leake [EMAIL PROTECTED] wrote: The whole picture is that i want to control a child process completely from within php. A bit like popen

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-08 Thread Wez Furlong
it by default; let's not be short-sighted and disable it primarily out of ignorance (no offence intended). I've yet to see someone comment on my suggestions for a practical solution that would shut up both myself and the people advocating disabling it. --Wez. On 11/07/02, Derick Rethans [EMAIL PROTECTED

Re: [PHP-DEV] CVS account request

2002-11-08 Thread Wez Furlong
the README.SUBMITTING-PATCH file before posting your next patch. Thanks for your efforts! --Wez. Streams Guy and openssl extension maintainer On 11/08/02, Sergey A. Smitienko [EMAIL PROTECTED] wrote: Hello, I want to contribute some functions to openssl and sockets extantions, like SSL

Re: [PHP-DEV] mbstring and 4.3.0

2002-11-07 Thread Wez Furlong
hash and implement the overload in a safe way. --Wez. On Thu, 7 Nov 2002, Marcus Boerger wrote: To make php be easier usable in non US-ASCII (127chars) environments especially those requiring UCS-2, UTF-8 or other any character mapping other than iso-8859-1 or -15 we should more likly try

Re: [PHP-DEV] Please help document headers_sent()

2002-11-06 Thread Wez Furlong
Hi Philip, I think the idea is that you do this: if (headers_sent($file, $line)) { echo headers were sent by $file:$line; } Both $file and $line are optional. --Wez. On 06/11/02, Philip Olson [EMAIL PROTECTED] wrote: Hello- headers_sent() has two new parameters as of PHP 4.3.0

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard ftp_fopen_wrapper.c

2002-11-05 Thread Wez Furlong
tmp_line to in it's declaration. --Wez. On 11/05/02, Marcus B?rger [EMAIL PROTECTED] wrote: helly Tue Nov 5 06:17:45 2002 EDT Modified files: /php4/ext/standardftp_fopen_wrapper.c Log: silence #when i get this code right tmp_line is not initialised

Re: [PHP-DEV] [Sorta OT] Mystery zcontext?

2002-11-05 Thread Wez Furlong
a little bit more info. --Wez. On Tue, 5 Nov 2002, John Coggeshall wrote: I was digging around the ext/standard today and I wanted to do something with the file access stuff, however I'm a bit lost on something... I'd appreciate it if someone could explain this (as it's basically undocumented

Re: [PHP-DEV] ODBTP, a possible solution for MS-SQL and other databases

2002-11-03 Thread Wez Furlong
of this without any help from us. (Most people end up asking at least one question here on php-dev when they write a php extension) Let's put aside our animosity towards MS and remain objective; it seems to me that ODBTP could prove to be a really useful library/ extension. --Wez. On 03/11/02, Robert

Re: [PHP-DEV] Image corruption when retrieving image files from MYSQL database

2002-11-03 Thread Wez Furlong
forum/list to ask this kind of question. This list is for people developing the core of php or writing extensions to it, not for people writing php scripts. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Variable Functions?

2002-10-31 Thread Wez Furlong
Hi Dan, http://php.net/create_function, and see the ZE2 notes on __call/__get/__set handlers. --Wez. On 10/31/02, Dan Hardiker [EMAIL PROTECTED] wrote: Hi All, Just a thought, but while working reciently with a few ECMA scripting languages (eg: ActionScript in Flash MX), I uncovered

Re: [PHP-DEV] hebrew patch for jewish calendar

2002-10-30 Thread Wez Furlong
it actually does? The hebrew text from your original post seems garbled to me (probably another mua issue), and I couldn't make sense of the source either (because I can't read hebrew). --Wez. On 10/30/02, Derick Rethans [EMAIL PROTECTED] wrote: On Wed, 30 Oct 2002, moshe doron wrote: well 2.3

[PHP-DEV] Re: [PHP-CVS] Discuss on php-dev, not on php-cvs please

2002-10-29 Thread Wez Furlong
That would be ideal :) On Tue, 29 Oct 2002, Derick Rethans wrote: On Tue, 29 Oct 2002, Wez Furlong wrote: If you need to comment on a commit, can you please change the To/Cc line from php-cvs to php-dev. I think we can instruct the listmanager to set a Reply-To header instead, would

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard/tests/file userstreams.phpt

2002-10-29 Thread Wez Furlong
On 10/29/02, Marcus B?rger [EMAIL PROTECTED] wrote: -Use // instead of /* ... */ comments Why? #this test fails for me. Very weired... You changed the test. Why not ask me first about it failing? --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard/tests/file userstreams.phpt

2002-10-29 Thread Wez Furlong
elses code: comments and coding styles are often a touchy subject with a lot of developers (I'm normally fine with it, but it seemed pointless in this case, and against our general coding standards.) --Wez. On 10/29/02, Marcus Börger [EMAIL PROTECTED] wrote: I started to work on that issue. My

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard/tests/file userstreams.phpt

2002-10-29 Thread Wez Furlong
it too? (just to be sure) --Wez. -- 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/standard/tests/file userstreams.phpt

2002-10-29 Thread Wez Furlong
OK, so how about a backtrace ? --Wez. On Tue, 29 Oct 2002, Marcus [iso-8859-1] Börger wrote: At 16:36 29.10.2002, Wez Furlong wrote: Also, could you strace it too? (just to be sure) old_mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x407d5000 read(3, ...naq

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard/tests/file userstreams.phpt

2002-10-29 Thread Wez Furlong
, this is an issue with the recent splitting of the opcode handlers; Andi would probably like to see this backtrace. --Wez. On 29/10/02, Marcus Börger [EMAIL PROTECTED] wrote: (gdb) file /usr/src/php4-HEAD/sapi/cli/php Reading symbols from /usr/src/php4-HEAD/sapi/cli/php...done. (gdb) set args ext/standard

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /main streams.c

2002-10-27 Thread Wez Furlong
Hey Ilia, Does this prevent opening of things like block and character special files? If yes, then let's change it to explicitly check for directories instead, as there are bound to be people out there that want to open things like /dev/hda1 (for example). --Wez. On 28/10/02, Ilia Alshanetsky

Re: [PHP-DEV] I hope this is the last email about this :)

2002-10-27 Thread Wez Furlong
On 28/10/02, Zeev Suraski [EMAIL PROTECTED] wrote: Thank you for the detailed explanation, I'm sure everybody understands it now. Let's go for the voting phase. I vote we keep PHP-CLI with implicit_flush on by default. +1 --Wez. -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] algebra code

2002-10-24 Thread Wez Furlong
Get a math text book that explains gaussian elimination, learn it, then ask your question on php-general. This list is for development of php itself, not writing programs with PHP. --Wez. On 10/24/02, Diana Castillo [EMAIL PROTECTED] wrote: does anyone know where I can get the code to solve

[PHP-DEV] Re: [PATCH] Make mb_convert_case() conform to Unicode Spec

2002-10-23 Thread Wez Furlong
Hi Moriyoshi, The code was taken from the ucdata package; I don't really know anything about the internals at this stage. It is probably best to talk to the ucdata guys - I don't have the URL to hand, but I'm sure you can find them using google. --Wez. On Thu, 24 Oct 2002, Moriyoshi Koizumi

Re: [PHP-DEV] Re: [PATCH] Make mb_convert_case() conform to UnicodeSpec

2002-10-23 Thread Wez Furlong
If you know what you're doing, go ahead. But, out of courtesy to the ucdata people who produced the basis of the code, please Cc: them any patches that they might find useful. (ucdata is used by the openldap project). --Wez. On Thu, 24 Oct 2002, Moriyoshi Koizumi wrote: Hi, AFAIK, UCDATA

Re: [PHP-DEV] library calls from within php functions

2002-10-20 Thread Wez Furlong
the size of buf at a later date, and is much more readable. --Wez. On 10/20/02, Tony Leake [EMAIL PROTECTED] wrote: Hi, I am working on an extension that makes use of the pipe, read and write library calls on a linux platform. When I try to put this line read(fd, buf, 1024); inside

Re: [PHP-DEV] library calls from within php functions

2002-10-20 Thread Wez Furlong
this: read(st_pipe_r-fd, buf, sizeof(buf)); if(!st_pipe_r) RETURN_FALSE; read(fd, buf, sizeof(buf)); } Aside from that, I can't see any obvious mistakes. --Wez. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   5   6   7   >