VS: [PHP-DEV] GIF support

2002-11-25 Thread Carsten Gehling
Fra: Markus Fischer [mailto:[EMAIL PROTECTED]] Sendt: 20. november 2002 14:11 Emne: Re: [PHP-DEV] GIF support A project exists already: http://pear.php.net/package-info.php?pacid=76 Is there a Win32 binary available? - Carsten -- PHP Development Mailing List http://www.php.net/

Re: VS: [PHP-DEV] GIF support

2002-11-25 Thread Christian Stocker
On Mon, 2002-11-25 at 10:33, Carsten Gehling wrote: Fra: Markus Fischer [mailto:[EMAIL PROTECTED]] Sendt: 20. november 2002 14:11 Emne: Re: [PHP-DEV] GIF support A project exists already: http://pear.php.net/package-info.php?pacid=76 Is there a Win32 binary available?

[PHP-DEV] Am I drunken?

2002-11-25 Thread Stefan Esser
Hi, is it only me, or is every php-dev mail sent out twice nowadays? I get every mail at least 2 times. Stefan Esser -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Am I drunken?

2002-11-25 Thread Derick Rethans
You are drunken :) You are drunken :) I get just one. I get just one. Derick Derick On Mon, 25 Nov 2002, Stefan Esser wrote: Hi, is it only me, or is every php-dev mail sent out twice nowadays? I get every mail at least 2 times. Stefan Esser -- PHP Development Mailing List

[PHP-DEV] Build of bundled GD broken on Win32

2002-11-25 Thread Sebastian Bergmann
gd.obj: error LNK2001: Unresolved external symbol: _gdImageCreateFromGd2Part gd.obj: error LNK2001: Unresolved external symbol: _gdImageCreateFromGd2PartCtx gd.obj: error LNK2001: Unresolved external symbol: _gdImageGd2 -- Sebastian Bergmann http://sebastian-bergmann.de/

Re: [PHP-DEV] Java extension fixes

2002-11-25 Thread Dan Kalowsky
Comments on the patch. Don't redefine DL_ERROR, this should already be defined by the ZEND engine, but just check to make sure ;) All of your build problems are known problems. If you can fix them, excellent! Just wondering if this has been tested against windows where the most prevalent

Re: [PHP-DEV] error reporting for PHP5

2002-11-25 Thread Ivan Ristic
Sorry to jump in the middle of a conversation, but I just wanted to say that I personally use trigger_error() quite often. Me too, I use it for warnings, notices, and errors that cannot be remedied. In my programs I also simulate custom error codes. The first part of the error string

Re: [PHP-DEV] Java extension fixes

2002-11-25 Thread Tony J. White
I think the reason DL_ERROR is defined in java.c for win32 platforms is that there is no dlerror() function for win32. I'm only guessing because I have no win32 platform to test on. On unix platforms, DL_ERROR is defined in zend.h as the function name for the dlerror() equivalent. Can someone

Re: [PHP-DEV] Build of bundled GD broken on Win32

2002-11-25 Thread Ilia A.
Fixed. On November 25, 2002 06:06 am, Sebastian Bergmann wrote: gd.obj: error LNK2001: Unresolved external symbol: _gdImageCreateFromGd2Part gd.obj: error LNK2001: Unresolved external symbol: _gdImageCreateFromGd2PartCtx gd.obj: error LNK2001: Unresolved external symbol:

[PHP-DEV] CVS Account Request: tjw

2002-11-25 Thread Tony J. White
Submit fixes for php4/ext/java/ only. Rasmus instructed me to fill out this form. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Build of bundled GD broken on Win32

2002-11-25 Thread Sebastian Bergmann
Ilia A. wrote: Fixed. Verified, Sebastian -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

[PHP-DEV] CVS Account Request: mcmontero

2002-11-25 Thread Michael C. Montero
Christian Stocker and I are joining our ImageMagick module efforts into 1 project. He recommended I get a CVS account to check the new code in directly. I will specifically be updating ext/imagick. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

[PHP-DEV] ZE2 + public/protected/private/final

2002-11-25 Thread Marcus Börger
After Andi had commited some cleanups my version from PPP is a bit smaller. My version is of cause only my private idea of implementing PPP. The solution i went on has some advantages and disadvantages. One of the disadvantage is that i do not allow redeclaring of private member functions. On

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

2002-11-25 Thread Christian Stocker
On 25 Nov 2002, Michael C. Montero wrote: Christian Stocker and I are joining our ImageMagick module efforts into 1 project. He recommended I get a CVS account to check the new code in directly. I will specifically be updating ext/imagick. Just to clarify this. Michael needs a PEAR

Re: [PHP-DEV] Re: Aggregation ZE2 fix

2002-11-25 Thread Marcus Börger
What is the problem with this fix then? I mean there are 9 tests that fail. There is some functionality available in ZE2 that maybe sometime will be moved and then is working again. Why not fix it with a patch that is ready and then wait until the functionality is moved. I wouldn't have asked if

[PHP-DEV] returning a bunch of arrays as fields of an object?

2002-11-25 Thread Tim
OK, so I'm wrapping a C++ library as a PHP extension, and I want one of my functions to return an object that has arrays as fields of it. I have created the arrays: zval *success; MAKE_STD_ZVAL(success); array_init(success); zval *score;

Re: [PHP-DEV] returning a bunch of arrays as fields of an object?

2002-11-25 Thread Sascha Schumann
On Mon, 25 Nov 2002, Tim wrote: OK, so I'm wrapping a C++ library as a PHP extension, and I want one of my functions to return an object that has arrays as fields of it. I have created the arrays: Is that object supposed to have functions associated with it? If not, why not return

Re: [PHP-DEV] returning a bunch of arrays as fields of an object?

2002-11-25 Thread Andrey Hristov
HI, Not 100% sure but. Outside of the function : static zend_class_entry *yourclasslib_class_entry_ptr; In the function : object_init_ex(return_value, yourclasslib_class_entry_ptr); add_property_zval(return_value, ...) // array 1 add_property_zval(return_value,...) // array 2

Re: [PHP-DEV] returning a bunch of arrays as fields of an object?

2002-11-25 Thread Andrey Hristov
Forgot to say : in the MINIT function : zend_class_entryyourclasslib_class_entry; INIT_CLASS_ENTRY(yourclasslib_class_entry, YourLibClass, yourlibclass_class_functions); yourlibclass_class_entry_ptr = zend_register_internal_class(dir_class_entry TSRMLS_CC); static zend_function_entry

[PHP-DEV] FW: PHP Compile Report

2002-11-25 Thread Sebastian Nohn
Latest HEAD -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 7:19 PM To: [EMAIL PROTECTED] Subject: PHP Compile Report /tmp/work/php4-cvs/ext/mnogosearch/php_mnogo.c: In function `zif_udm_clear_search_limits':

[PHP-DEV] [PATCH 4.3.0] Win32 CoInitalize/CoUninitialize Call Move

2002-11-25 Thread Michael Sisolak
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, no ASP pages would anymore. I have tracked this down to the placement of the Win32 CoInitialize() and

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

2002-11-25 Thread Sterling Hughes
The question is: why would your production code have fatal errors? A fatal error occurs because of one of the following reasons: 1) parse error 2) engine instability 3) segfault (well, kinda, its nothing catchable, but it is about as fatal as you can get :) 2 3 are very very rare cases, and

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

2002-11-25 Thread John Coggeshall
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 (with

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 (with

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

2002-11-25 Thread Ilia A.
On November 25, 2002 01:58 pm, John Coggeshall wrote: 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

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

2002-11-25 Thread Derick Rethans
On Mon, 25 Nov 2002, Sterling Hughes wrote: 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 (with human-friendly errors just

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

2002-11-25 Thread Mike Robinson
Sterling Hughes writes: you're missing alot. Its not inbox size, when you get multi-lingual error messages you have more than one problem. 1) Support. [snip] 2) Implementation. [snip] 3) Everything else is in english. [snip] There are other problems too, but these are the biggies.

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

2002-11-25 Thread Sascha Schumann
If this thread was about error messages of a C compiler, I would agree that users can be expected to understand English. That is a completely different level you are dealing with then. However, PHP needs to take beginners into account. Simply assuming that everyone must

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

2002-11-25 Thread Sterling Hughes
If this thread was about error messages of a C compiler, I would agree that users can be expected to understand English. That is a completely different level you are dealing with then. However, PHP needs to take beginners into account. Simply assuming that everyone must

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

2002-11-25 Thread Daniel Lorch
hi, What you're missing is that currently to program PHP, you need a reasonable understanding of english. [..] I agree with Sterlin. I mean, what's next? Also localize language constructs? ?php während (EUR i=0; EUR i5; ++EUR i) { ausgabe(Hallo); wenn (EUR i % 5) { [..]

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

2002-11-25 Thread Sascha Schumann
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 Derick Rethans
On Mon, 25 Nov 2002, Daniel Lorch wrote: hi, What you're missing is that currently to program PHP, you need a reasonable understanding of english. [..] I agree with Sterlin. I mean, what's next? Also localize language constructs? Dont you ever steal my jokes again :) But indeed, this

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

2002-11-25 Thread Derick Rethans
On Mon, 25 Nov 2002, Sascha Schumann wrote: Frankly, so far the discussion has been primarily developer-focused, which is not too surprising. The developers are rarely exposed to support requests from newbies in various non-English forums. Thank god not; would you like to

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

2002-11-25 Thread Sascha Schumann
On Mon, 25 Nov 2002, Daniel Lorch wrote: hi, What you're missing is that currently to program PHP, you need a reasonable understanding of english. [..] I agree with Sterlin. I mean, what's next? Also localize language constructs? Daniel, Sterling is arguing in favor of having

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

[PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Maxim Maletsky
Guys, I'm hassling on a quite mysterious and not documented (but pretty useful) function for OCI8 called OCIServerRelease() which would return you the Oracle Server release integer for compatibility comparisons. Because there are no official docs anywhere about this function (WTF? google only

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

2002-11-25 Thread Marcus Börger
At 21:21 25.11.2002, Sterling Hughes wrote: If this thread was about error messages of a C compiler, I would agree that users can be expected to understand English. That is a completely different level you are dealing with then. However, PHP needs to take beginners into

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

2002-11-25 Thread Sterling Hughes
fine - provide documentation / translations for what these error codes mean in the documentation (on a per-translation basis, or in an extra page listing all the translation). php_error_docref() already does this I believe (cookie variable, or just click on the link). php_error_docref()

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

2002-11-25 Thread Daniel Lorch
hi, Daniel, Sterling is arguing in favor of having localized error messages. s/agree/disagree/ :) Do what you think is right. However, I think it just adds another level of unnecessary complexity. We can safely assume a certain level of intelligence when dealing with php developers

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

2002-11-25 Thread Moriyoshi Koizumi
I'm a bit late here, with an example which probably sounds interesting; that is a computer language which was actually developed in Japan as a product mainly for educational use, which enables you to program in nearly complete Japanese syntax. I thnik it's undoubtfully great, but I have never

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

2002-11-25 Thread Alexander Wagner
On Monday 25 November 2002 21:55, Sascha Schumann wrote: 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. Perfectly

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] [PATCH] Redirect on Error

2002-11-25 Thread George Schlossnagle
I'm not really arguing for or against this, but since when did speaking english become a corollary of being intelligent? And even if we accept the rather ridiculous hypotheis that all php developers can comprehend english, what if they don't want to, or are more confident using their native

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

2002-11-25 Thread Sterling Hughes
I'm not really arguing for or against this, but since when did speaking english become a corollary of being intelligent? And even if we accept the rather ridiculous hypotheis that all php developers can comprehend english, what if they don't want to, or are more confident using their

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

2002-11-25 Thread Daniel Lorch
hi, I'm not really arguing for or against this, but since when did speaking english become a corollary of being intelligent? And even if we accept the rather ridiculous hypotheis that all php developers can comprehend english, what if they don't want to, or are more confident using their

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

2002-11-25 Thread Moriyoshi Koizumi
I almost agree with you, but please note that error message translation is not always the simple thing because the word order varies by language. For example, Warning: Argument %1 to array_diff() is not an array in - on line %2 the above message should be translated into Japanese romaji

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

2002-11-25 Thread Alexander Wagner
On Monday 25 November 2002 23:08, Daniel Lorch wrote: I would prefer to have the developers getting used (yes, meaning educate them) to english being a universal language, for both the language constructs, error messages, documentation. Don't. You shouldn't think of PHP-users as developers in

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

2002-11-25 Thread Alexander Wagner
On Monday 25 November 2002 22:43, Daniel Lorch wrote: Developers don't have to be spoon-fed. Really. Some do. Especially among PHP-developers. Imagine your neighbour to be a PHP-developer. Maybe he has a hobby, like fishing. Maybe he has a website about this. With PHP, he might even make that

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

2002-11-25 Thread Daniel Lorch
hi, Don't. You shouldn't think of PHP-users as developers in this sense. Read my other mail. I mean the don't even want to program and least amount of effort-part. You're right. We should think about writing a colorful GUI for PHP, so scripts just can be clicked together. Oh, and it

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

2002-11-25 Thread Jani Taskinen
On Mon, 25 Nov 2002, John Coggeshall wrote: 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

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

2002-11-25 Thread Philip Olson
On the documentation side of things, each translation could include a page tentively called: English words you want to know It could be as simple as a three column table, such as: | English | German | Explanation | | Constant | Konstant | ...

Re: [PHP-DEV] [PATCH] Redirect on Error (fwd)

2002-11-25 Thread Sascha Schumann
Looks like some program in the chain erroneously appended @vckyb3.nw.wakwak.com. - Sascha -- Forwarded message -- Date: Mon, 25 Nov 2002 23:31:08 +0100 (CET) From: Sascha Schumann [EMAIL PROTECTED] To: Moriyoshi Koizumi [EMAIL PROTECTED] Cc: Alexander Wagner [EMAIL

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

2002-11-25 Thread Moriyoshi Koizumi
Ah my bad. It's totally beyond my expectation... Then how about RTL languages? They need some bidi processing. Moriyoshi Sascha Schumann [EMAIL PROTECTED] wrote: sprintf handles these cases easily. Warning: Argument %1 to array_diff() is not an array in - on line %2

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

2002-11-25 Thread Edin Kadribasic
+1 Anything that impoves stability of isapi at this point is more than welcome. Hopefully bugs.php.net quickfix isapi instability will not have to be used as often :) Edin - Original Message - From: Michael Sisolak [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 25, 2002

Re: [PHP-DEV] [PATCH] Redirect on Error (fwd)

2002-11-25 Thread Moriyoshi Koizumi
I have no idea on this issue now though I guess this is a problem of ISP that I'm using. Sorry for the inconvenience. Moriyoshi Sascha Schumann [EMAIL PROTECTED] wrote: Looks like some program in the chain erroneously appended @vckyb3.nw.wakwak.com. - Sascha --

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

2002-11-25 Thread Jani Taskinen
On Mon, 25 Nov 2002, Alexander Wagner wrote: If you want these people to find this translation, you'd have to put the url into every error-message. And provide a way to change the root-url, so it can be downloaded I thought we already have these both..? --Jani -- PHP Development

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

2002-11-25 Thread Alexander Wagner
On Monday 25 November 2002 23:29, Daniel Lorch wrote: You're right. We should think about writing a colorful GUI for PHP, so scripts just can be clicked together. Oh, and it definitively should support skins.. I don't think this would work. But if it did, it's place wouldn't be inside the

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

2002-11-25 Thread Sterling Hughes
On Monday 25 November 2002 23:29, Daniel Lorch wrote: You're right. We should think about writing a colorful GUI for PHP, so scripts just can be clicked together. Oh, and it definitively should support skins.. I don't think this would work. But if it did, it's place wouldn't be inside

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

2002-11-25 Thread Daniel Lorch
hi, You're right. We should think about writing a colorful GUI for PHP, so scripts just can be clicked together. Oh, and it definitively should support skins.. I don't think this would work. But if it did, it's place wouldn't be inside the language. Either in an IDE or in a

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Edin Kadribasic
Does anyone have an access to any lower versions of Oracle Servers and Oracle Clients to compile and test from CVS? Especially Client. If so, please let me know. I've got access to Oracle 8.0.5 on Linux. Edin -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

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

2002-11-25 Thread Alexander Wagner
On Monday 25 November 2002 23:49, Jani Taskinen wrote: If you want these people to find this translation, you'd have to put the url into every error-message. And provide a way to change the root-url, so it can be downloaded I thought we already have these both..? By default? Does it

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

2002-11-25 Thread Jani Taskinen
On Tue, 26 Nov 2002, Alexander Wagner wrote: On Monday 25 November 2002 23:49, Jani Taskinen wrote: If you want these people to find this translation, you'd have to put the url into every error-message. And provide a way to change the root-url, so it can be downloaded I thought we

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Jani Taskinen
Can't you just check if it exists and add some #ifdef's in the code? --Jani On Mon, 25 Nov 2002, Maxim Maletsky wrote: Guys, I'm hassling on a quite mysterious and not documented (but pretty useful) function for OCI8 called OCIServerRelease() which would return you the

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Maxim Maletsky
Perhaps, but not all is that easy - OCI uses its own definitions for every function, and so far I have not found what defined this one. Also because there is no documentation about this call whatsoever, I am a little lost understanding it well - I only see how it is used with several libraries.

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Maxim Maletsky
That sounds very good. What version is your oracle client? --- Maxim Maletsky [EMAIL PROTECTED] On Tue, 26 Nov 2002 00:03:36 +0100 Edin Kadribasic [EMAIL PROTECTED] wrote: Does anyone have an access to any lower versions of Oracle Servers and Oracle Clients to compile and test from CVS?

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Edin Kadribasic
That sounds very good. What version is your oracle client? The client is on the same Linux box, so the version is still 8.0.5. Edin -- 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 Alexander Wagner
On Tuesday 26 November 2002 00:07, Jani Taskinen wrote: Remember. I'm talking about the people that have to be spoon-fed. Well..to be quite honest: I don't care about such people. To be honest, they tend to piss me off a little (at least some do). Getting rid of these stupid questions...

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Maxim Maletsky
ok. here is the patch as txt. It applies to the latest CVS of the file. But, in any case - there is only that very function that is not documented anywhere, and I wonder whether it works. to test it, just run this: ?php $conn = OCILogon('user', 'pass', 'listener'); echo \nServer version: .

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

2002-11-25 Thread Jani Taskinen
On Tue, 26 Nov 2002, Alexander Wagner wrote: But PHP is very popular among people who are _not_ serious. Some become serious. After the got in touch with programming. After they got their first site to work. Removing obstacles is mostly a good thing. PHP is very easy to use already. This is

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Edin Kadribasic
No go. OCIServerRelease seems not to be supported in Oracle 8.0: ext/oci8/oci8.o: In function `zif_ociserverrelease': ext/oci8/oci8.c:4551: undefined reference to `OCIServerRelease' Edin - Original Message - From: Maxim Maletsky [EMAIL PROTECTED] To: Edin Kadribasic [EMAIL PROTECTED]

Re: [PHP-DEV] Oracle 8.1.7

2002-11-25 Thread Maxim Maletsky
That's what I thought... Gonna have now to look for the definition of the function to avoid the compiling failure. Many thanks, man! --- Maxim Maletsky [EMAIL PROTECTED] On Tue, 26 Nov 2002 01:18:15 +0100 Edin Kadribasic [EMAIL PROTECTED] wrote: No go. OCIServerRelease seems not to be

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

2002-11-25 Thread Maxim Maletsky
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 for english

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 16:15:29 -0500 Sterling Hughes [EMAIL PROTECTED] wrote: Not at all, i don't expect them to speak fluent english, just to understand the small subset of english errors and programming terms. I've conversed with plenty of PHP users (second-hand at least) where they didn't

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 22:18:32 +0100 (CET) Derick Rethans [EMAIL PROTECTED] wrote: On Mon, 25 Nov 2002, Sascha Schumann wrote: Frankly, so far the discussion has been primarily developer-focused, which is not too surprising. The developers are rarely exposed to support

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

2002-11-25 Thread Steph
+1 for error codes. - Original Message - From: Maxim Maletsky [EMAIL PROTECTED] To: Derick Rethans [EMAIL PROTECTED] Cc: Sascha Schumann [EMAIL PROTECTED]; Sterling Hughes [EMAIL PROTECTED]; Ilia A. [EMAIL PROTECTED]; [EMAIL PROTECTED]; 'PHP Developers Mailing List' [EMAIL PROTECTED]

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

2002-11-25 Thread Ilia A.
On November 25, 2002 07:57 pm, Maxim Maletsky wrote: 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

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 23:29:11 +0100 Daniel Lorch [EMAIL PROTECTED] wrote: You're right. We should think about writing a colorful GUI for PHP, so scripts just can be clicked together. Oh, and it definitively should support skins.. That isn't really a topic, and there are projects that work on

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

2002-11-25 Thread Maxim Maletsky
On Tue, 26 Nov 2002 00:30:55 +0200 (EET) Jani Taskinen [EMAIL PROTECTED] wrote: Just forget this. I'm not native english speaker, but I REALLY don't want to see any errors in any other language but english. (does Perl/Python/etc have multi-lingual errors btw?) --Jani

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

2002-11-25 Thread Steph
Ok so we use the error code and the manual url together .. - Original Message - From: Ilia A. [EMAIL PROTECTED] To: Maxim Maletsky [EMAIL PROTECTED]; Sterling Hughes [EMAIL PROTECTED]; 'PHP Developers Mailing List' [EMAIL PROTECTED] Sent: Tuesday, November 26, 2002 1:14 AM Subject: Re:

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

2002-11-25 Thread Marcus Börger
At 02:03 26.11.2002, Maxim Maletsky wrote: On Mon, 25 Nov 2002 22:18:32 +0100 (CET) Derick Rethans [EMAIL PROTECTED] wrote: On Mon, 25 Nov 2002, Sascha Schumann wrote: Frankly, so far the discussion has been primarily developer-focused, which is not too surprising. The

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

2002-11-25 Thread Ilia A.
On November 25, 2002 08:15 pm, Maxim Maletsky wrote: On Tue, 26 Nov 2002 00:30:55 +0200 (EET) Jani Taskinen [EMAIL PROTECTED] wrote: Just forget this. I'm not native english speaker, but I REALLY don't want to see any errors in any other language but english. (does

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 20:14:56 -0500 Ilia A. [EMAIL PROTECTED] wrote: On November 25, 2002 07:57 pm, Maxim Maletsky wrote: 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

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

2002-11-25 Thread Maxim Maletsky
Yes, this is the way to go. but, I would still prefer to have to pass it only a code like: php_error(255, data, data, data); where in an XML structure we can predefine everything else. -- Maxim Maletsky [EMAIL PROTECTED] On Tue, 26 Nov 2002 02:19:35 +0100 [EMAIL PROTECTED] (Marcus Börger)

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

2002-11-25 Thread Maxim Maletsky
Who cares? I am an Oracle fun, but this is still not my point. My point is that oracle, as arguable as can be, thinks about marketing its product. They biggest sales point, in fact, is not the usability and nor even the documentation. Though, as a matter of fact, every usage of its SQL and PLSQL

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

2002-11-25 Thread Marcus Börger
A number is slightly faster but that is of no interest for error messages. More important is conflict avoidance and naming the extension in the error would be a fast first hint for us. Also we need the php_error_docrefn forms and the other parameters. Especially the error category (E_whatever)

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

2002-11-25 Thread George Schlossnagle
Is your claim that db2 has no international error messages? It does, or did last I checked. Or was it that SQLServer doesn't either (it does as well). On Monday, November 25, 2002, at 08:24 PM, Ilia A. wrote: On November 25, 2002 08:15 pm, Maxim Maletsky wrote: On Tue, 26 Nov 2002 00:30:55

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

2002-11-25 Thread Andrew Brampton
I don't think I've ever said anything on this list, but I do like the idea of adding error codes... Even if its just as small as writing (255). So +1 on error codes (that's if my vote counts) Eventually people can translate all the error codes to different languages, but until then just stick

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

2002-11-25 Thread Ilia A.
On November 25, 2002 08:24 pm, Maxim Maletsky wrote: On Mon, 25 Nov 2002 20:14:56 -0500 Ilia A. [EMAIL PROTECTED] wrote: On November 25, 2002 07:57 pm, Maxim Maletsky wrote: On Mon, 25 Nov 2002 15:21:06 -0500 Sterling Hughes [EMAIL PROTECTED] wrote: Educate users to speak the base

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

2002-11-25 Thread Maxim Maletsky
the number is not for speed, but rather to avoid all these parameters within the C code. Save all the docref etc data in an XML file each per language or in any other logic where also error strings will reside, but leave the C code clean. This would be a good gain in practicity of such method.

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 for

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

2002-11-25 Thread Maxim Maletsky
It was to say that these three (Oracle, SQL and DB2) do have internationalized error reporting. I meant them as an example for the one PHP has. -- Maxim Maletsky [EMAIL PROTECTED] On Mon, 25 Nov 2002 20:44:03 -0500 George Schlossnagle [EMAIL PROTECTED] wrote: Is your claim that db2 has no

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

2002-11-25 Thread Ilia A.
On November 25, 2002 08:44 pm, George Schlossnagle wrote: Is your claim that db2 has no international error messages? It does, or did last I checked. Or was it that SQLServer doesn't either (it does as well). Uhm, did I say anything about i18n in DB2 or SQLServer, no. I merely pointed out

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

2002-11-25 Thread George Schlossnagle
MySQL also supports error message internationalization - one more RDBMS to annoy Sterling, I guess. George On Monday, November 25, 2002, at 08:47 PM, Maxim Maletsky wrote: It was to say that these three (Oracle, SQL and DB2) do have internationalized error reporting. I meant them as an

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

2002-11-25 Thread George Schlossnagle
Oh, I'm sorry, I didn't realize you were going off-topic to pick at parts of Maxim's argument. My mistake. George On Monday, November 25, 2002, at 08:52 PM, Ilia A. wrote: On November 25, 2002 08:44 pm, George Schlossnagle wrote: Is your claim that db2 has no international error messages? It

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

2002-11-25 Thread Ilia A.
On November 25, 2002 08:29 pm, Maxim Maletsky wrote: Who cares? I am an Oracle fun, but this is still not my point. My point is that oracle, as arguable as can be, thinks about marketing its product. They biggest sales point, in fact, is not the usability and nor even the documentation.

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 20:46:32 -0500 Ilia A. [EMAIL PROTECTED] wrote: Hello?/?? we're talking about errors here, not page content. Hopefuly that does not become the same :) Actually I am talking in users using their native language to name their functions variables and actually

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 20:47:01 -0500 Sterling Hughes [EMAIL PROTECTED] wrote: I spent about 15 minutes to learn the terms, and was set, besides using the german terms when all the german SAP consultants used the English terms (bedarfsbestandliste, stammdaten, lallalaa). If there was an

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

2002-11-25 Thread Maxim Maletsky
YAY! -- Maxim Maletsky [EMAIL PROTECTED] On Mon, 25 Nov 2002 20:51:06 -0500 George Schlossnagle [EMAIL PROTECTED] wrote: MySQL also supports error message internationalization - one more RDBMS to annoy Sterling, I guess. George On Monday, November 25, 2002, at 08:47 PM, Maxim

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, at

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

2002-11-25 Thread Maxim Maletsky
On Mon, 25 Nov 2002 20:53:55 -0500 Ilia A. [EMAIL PROTECTED] wrote: On November 25, 2002 08:29 pm, Maxim Maletsky wrote: Who cares? I am an Oracle fun, but this is still not my point. My point is that oracle, as arguable as can be, thinks about marketing its product. They biggest sales

  1   2   >