[PHP-DEV] Re: Bug #15652: Request way to get API type

2002-02-21 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] Operating system: all PHP version: 4.1.1 PHP Bug Type: Feature/Change Request Bug description: Request way to get API type There does not appear to be any way to check if the server is running as a cgi or apache

[PHP-DEV] Help on PHP vs JAVA

2002-02-21 Thread Berlina
Hello to everybody, I need some help for writting a comparison of PHP vs JAVA, and of course, I need that PHP wins ;-D Any ideas? Any comparison wrote? Advanced Thanks, F.P. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Running test scripts

2002-02-21 Thread Venkat Raghavan
Hi. We're involved in porting PHP onto NetWare. I was trying to use RUN-TESTS.PHP and found out that it requires PHP to be built as a CGI executable. We have only build the MOD_PHP stuff. Is there some way to use the same test-suite? Is there any other info available on some Web-site or something

[PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Venkat Raghavan
Again, it's we folks porting PHP onto NetWare. Is it necessary that the LDAP extension has to be a separate binary? Can we build it into PHPLIB itself? If so, how do we enable LDAP, considering we can't run the CONFIGURE script on NetWare (--with-ldap)? Thanx in advance, Venkat -- PHP

Re: [PHP-DEV] Running test scripts

2002-02-21 Thread derick
Hello, the test suite does only run with the CGI (command line) version of PHP. regards, Derick On Thu, 21 Feb 2002, Venkat Raghavan wrote: Hi. We're involved in porting PHP onto NetWare. I was trying to use RUN-TESTS.PHP and found out that it requires PHP to be built as a CGI executable.

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread jan
On Thu, Feb 21, 2002 at 02:14:35AM -0700, Venkat Raghavan wrote: Again, it's we folks porting PHP onto NetWare. Is it necessary that the LDAP extension has to be a separate binary? No. Can we build it into PHPLIB itself? If so, how do we enable LDAP, considering we can't run the CONFIGURE

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Venkat Raghavan
Thanx. What I am asking is how do I 'enable' LDAP in my PHP binary, provided I can't run the CONFIGURE script. Also, what is the default path for the LDAP libraries? - Venkat [EMAIL PROTECTED] 21/02/2002 15:00:55 On Thu, Feb 21, 2002 at 02:14:35AM -0700, Venkat Raghavan wrote: Again, it's

Re: [PHP-DEV] Help on PHP vs JAVA

2002-02-21 Thread Lars Torben Wilson
On Thu, 2002-02-21 at 01:07, Berlina wrote: Hello to everybody, I need some help for writting a comparison of PHP vs JAVA, and of course, I need that PHP wins ;-D Wins what? For what task? This is quite a nebulous question. And if you've decided which will win before you've done the

[PHP-DEV] Re: fopen UNC filename

2002-02-21 Thread Christoph Grottolo
| I tried to fopen(\\machine\shaer\file.txt,w) | | on w2k iis 5.0 PHP 4.1.0 and I got fopen invalid argument error. I know, | that UNC filenames are supported since PHP 4.0.6. I tried variants with | machine\\share\\file.txt, ... but the error was the same. Please read the latest threads

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread jan
On Thu, Feb 21, 2002 at 02:42:16AM -0700, Venkat Raghavan wrote: Thanx. What I am asking is how do I 'enable' LDAP in my PHP binary, provided I can't run the CONFIGURE script. Also, what is the default path for the LDAP libraries? You can not run the ./configure script of the php source

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Venkat Raghavan
I am not talking about compiling PHP on an Unix platform. What we are doing is porting PHP onto NetWare. We have PHP built along with LDAP, since we want it as part of the standard package. So, we just want to know how to make PHP 'aware' that LDAP functionality is built in, since we're not

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread jan
On Thu, Feb 21, 2002 at 03:44:07AM -0700, Venkat Raghavan wrote: I am not talking about compiling PHP on an Unix platform. What we are doing is porting PHP onto NetWare. We have PHP built along with LDAP, since we want it as part of the standard package. So, we just want to know how to make

[PHP-DEV] CVS Account Request: dorun

2002-02-21 Thread NASTASA Dorel
I am part of the Romanian PHP Documentation team. I deal with the part V - extending php 4.0. -translate ZendAPI Doc. I need access to the phpdoc/ro directory to add mz partof the documentation . For more information contact - Adrian Jurjica rophp-yahoo-com and check out the php.urbanxp.org

[PHP-DEV] php + cygwin

2002-02-21 Thread Stanislav Malyshev
Did anyone have success in compiling PHP4 with cygwin? For me, configure fails with: checking if libtool supports shared libraries... yes ../ltconfig: Can't open ../ltconfig: No such file or directory configure: error: libtool tag configuration failed Any ideas? Also, what exactly is the

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread Andi Gutmans
At 01:23 PM 2/21/2002 +0200, Stanislav Malyshev wrote: Did anyone have success in compiling PHP4 with cygwin? For me, configure fails with: checking if libtool supports shared libraries... yes ../ltconfig: Can't open ../ltconfig: No such file or directory configure: error: libtool tag

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread Stanislav Malyshev
AG I don't think anyone has every compiled PHP with cygwin. But it should be possible? I.e., I don't see why wouldn't it be possible. -- Stanislav Malyshev, Zend Products Engineer [EMAIL PROTECTED] http://www.zend.com/ +972-3-6139665 ext.115 -- PHP Development Mailing List

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

2002-02-21 Thread Richard Samar
Raman Unni wrote: learning to develop the web site I don't know what you mean by learning to develop the web site but certainly for learning purpose a cvs account is not needed. If you'd like to know how the php.net website is build you can use anonymous cvs access to check out the module

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Venkat Raghavan
OK, finally, we're on track. Out of the options you gave, the correct one is (a). And when I do phpinfo(), I don't see LDAP. That's why I asked what else I need to do in the code / build process to 'enable' LDAP. Thanx again, Venkat [EMAIL PROTECTED] 21/02/2002 16:34:11 Ok, this is a

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread Andi Gutmans
At 01:30 PM 2/21/2002 +0200, Stanislav Malyshev wrote: AG I don't think anyone has every compiled PHP with cygwin. But it should be possible? I.e., I don't see why wouldn't it be possible. Everything's possible :) I just don't think anyone has done it. Andi -- PHP Development Mailing List

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread derick
On Thu, 21 Feb 2002, Andi Gutmans wrote: At 01:30 PM 2/21/2002 +0200, Stanislav Malyshev wrote: AG I don't think anyone has every compiled PHP with cygwin. But it should be possible? I.e., I don't see why wouldn't it be possible. Everything's possible :) I just don't think anyone has

[PHP-DEV] Re: fmod() function

2002-02-21 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: If you could send patch as unified diff, it's much easier to apply :) Anyway, I attached hand edited diff since my CVS source contains other changes now... Someone care to check in? Commited by myself -- Yasuo Ohgaki Graeme Merrall wrote: I was porting some Python

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread Stanislav Malyshev
AG Everything's possible :) I just don't think anyone has done it. I see. Generally, the real question is more practical - why it looks for liconfig? Can any of autoconf/configure/libtool gurus give any pointers? -- Stanislav Malyshev, Zend Products Engineer [EMAIL PROTECTED]

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Markus Fischer
On Thu, Feb 21, 2002 at 04:36:13AM -0700, Venkat Raghavan wrote : Out of the options you gave, the correct one is (a). And when I do phpinfo(), I don't see LDAP. That's why I asked what else I need to do in the code / build process to 'enable' LDAP. From what I've read and understood,

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread jan
On Thu, Feb 21, 2002 at 04:36:13AM -0700, Venkat Raghavan wrote: OK, finally, we're on track. Fine. :) Out of the options you gave, the correct one is (a). And when I do phpinfo(), I don't see LDAP. That's why I asked what else I need to do in the code / build process to 'enable' LDAP.

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread Peter Petermann
well, there is some older porting project, but i guess it could help: http://www.student.uni-koeln.de/cygwin/ regards, Peter Petermann -- Homepage: www.cyberfly.net PHP Usergroups: www.phpug.de - [EMAIL PROTECTED] PHP Infos: www.php-center.de - [EMAIL PROTECTED] VL-SRM Homepage: www.vl-srm.net -

[PHP-DEV] CVS Account Request: barsic

2002-02-21 Thread leonid Berson
sphera development -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Venkat Raghavan
Searched all those scripts for the string 'ldap' with no luck... As for whether LDAP object file has made into the PHP binary, I need to check... Thanx anyway, Venkat [EMAIL PROTECTED] 21/02/2002 17:23:54 Just make sure that ext/ldap is really compiled and linked into the php binary. Please

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Venkat Raghavan
I agree that you can't understand how I build it. But I hope you understand that I can't do it the standard way with the configure script on NetWare. I am indeed looking for any parameters that have to be set during compile / link time. The only thing I came across is the COMPILE_DL_LDAP

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Markus Fischer
On Thu, Feb 21, 2002 at 05:09:01AM -0700, Venkat Raghavan wrote : I agree that you can't understand how I build it. But I hope you understand that I can't do it the standard way with the configure script on NetWare. I am indeed looking for any parameters that have to be set during compile

[PHP-DEV] Fwd: Zend debug server trouble

2002-02-21 Thread bvr
I tried and posted this on php-general first, but didn't get a reply. If anyone can help me out, please reply to my private address for i'm not on this list. thanks, bvr. ==BEGIN FORWARDED MESSAGE== Hi, I'm trying to install the debug server for linux, but

Re: [PHP-DEV] Fwd: Zend debug server trouble

2002-02-21 Thread derick
Hey, Wrong list again... call/write Zend for support. Zend's commercial products have nothing to do with PHP. Derick On Thu, 21 Feb 2002, bvr wrote: I tried and posted this on php-general first, but didn't get a reply. If anyone can help me out, please reply to my private address for i'm

Re: [PHP-DEV] php + cygwin

2002-02-21 Thread Jason Greene
On Thu, 2002-02-21 at 05:29, Andi Gutmans wrote: At 01:23 PM 2/21/2002 +0200, Stanislav Malyshev wrote: Did anyone have success in compiling PHP4 with cygwin? For me, configure fails with: checking if libtool supports shared libraries... yes ../ltconfig: Can't open ../ltconfig: No such

Re: [PHP-DEV] fmod() function

2002-02-21 Thread Jon Parise
On Thu, Feb 21, 2002 at 08:08:28AM +0200, Andi Gutmans wrote: Just realized now you're talking about doubles :) Never mind my previous Email... Would it be worth extending the engine to apply the fmod() behavior to the % operator when operating on doubles? -- Jon Parise ([EMAIL PROTECTED])

Re: [PHP-DEV] fmod() function

2002-02-21 Thread Andi Gutmans
At 09:57 AM 2/21/2002 -0500, Jon Parise wrote: On Thu, Feb 21, 2002 at 08:08:28AM +0200, Andi Gutmans wrote: Just realized now you're talking about doubles :) Never mind my previous Email... Would it be worth extending the engine to apply the fmod() behavior to the % operator when operating

[PHP-DEV] RE: [PHP-DB] Help on PHP vs JAVA

2002-02-21 Thread Gurhan Ozen
That's a pretty naive question to ask. For what specific task do you want to compare them ? Besides if you can't write a comparison article on PHP vs. JAVa , how can you set the outcome in PHP's favor? I would advise you to sit down and try to do the task both in Java and PHP , and compare both

Re: [PHP-DEV] fmod() function

2002-02-21 Thread Graeme Merrall
Would it be worth extending the engine to apply the fmod() behavior to the % operator when operating on doubles? I don't think so, it would be quite a weird BC bug. I don't remember any complaints about its current behavior in the past few years so I don't think it's worth changing.

RE: [PHP-DEV] CVS Account Request: barsic

2002-02-21 Thread James Cox
Hi, what Sphera development are you planning on? James -Original Message- From: leonid Berson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 12:01 PM To: [EMAIL PROTECTED] Subject: [PHP-DEV] CVS Account Request: barsic sphera development -- PHP Development

[PHP-DEV] Re: Help on PHP vs JAVA

2002-02-21 Thread John Lim
Hi Any consultant will tell you that all you need to do is define the comparison criteria and you can choose the winner easily. PHP: ease of use, low cost of ownership, etc. Java: scalability, choice of implementations, etc. I just hope you can live with your choices! Regards, John Berlina

Re: [PHP-DEV] Fwd: Zend debug server trouble

2002-02-21 Thread Zeev Suraski
At 16:37 21/02/2002, [EMAIL PROTECTED] wrote: Hey, Wrong list again... call/write Zend for support. Zend's commercial products have nothing to do with PHP. They have everything to do with PHP, but they're not a part of the PHP project :) Zeev -- PHP Development Mailing List

Re: [PHP-DEV] Fwd: Zend debug server trouble

2002-02-21 Thread Jason Greene
On Thu, 2002-02-21 at 11:17, Zeev Suraski wrote: At 16:37 21/02/2002, [EMAIL PROTECTED] wrote: Hey, Wrong list again... call/write Zend for support. Zend's commercial products have nothing to do with PHP. They have everything to do with PHP, but they're not a part of the PHP project

[PHP-DEV] Re: Bug #15663: add foreach reference values

2002-02-21 Thread Andrey Hristov
This FR is known :)) Best wishes, Andrey Hristov - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 7:34 PM Subject: Bug #15663: add foreach reference values From: [EMAIL PROTECTED] Operating system: PHP version:

[PHP-DEV] DIO

2002-02-21 Thread GaM3R
what is the difference btween DIO and the current fopen/fwrite etc? is there any performance difference or is it only the non blocking flag or what? Cameron -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Sockets Extension Rework (API, etc...) VERY LONG

2002-02-21 Thread Jason Greene
On Wed, 2002-02-20 at 19:29, Richard Samar wrote: Hi Jason, Hello Richard, I was the extension user talking about a few of the problems :-) I still had not the time to take a look at all the functions. 1. Consistency problems a. Some functions take host, some take ip, some take

Re: [PHP-DEV] Sockets Extension Rework (API, etc...) VERY LONG

2002-02-21 Thread Jason Greene
On Thu, 2002-02-21 at 01:40, Derick Rethans wrote: Hey Jason, On 20 Feb 2002, Jason Greene wrote: Instead of just committing a gigantic patch to solve these problems, and redefine the extensions behavior, I decided to open a thread for discussion on how I intend to solve all the

[PHP-DEV] Apache 2.0.32 + PHP 4.2-dev = No go on XP

2002-02-21 Thread Jobarr
OkI REALLY want to use Apache 2 and PHP, but it just won't work. I complied both myself with VC++ 6.0 and I get this error when I try to just to phpinfo() Apache HTTP Server has encountered a problem and needs to close. AppName: apache.exe AppVer: 2.0.32.0 ModName: libhttpd.dll ModVer:

[PHP-DEV] Re: Sockets Extension Rework (API, etc...) VERY LONG

2002-02-21 Thread J Smith
I'm all for fixing this extension up to make it better, but I'm a little concerned with totally dropping the fd_* functions. How would you mimic their use in something like a multiplexing using a blocking call situation after the change? I have no idea how it can be done without using the

[PHP-DEV] Re: cvs: php4(PHP_4_0_7) /main rfc1867.c

2002-02-21 Thread Yasuo Ohgaki
Stefan Esser wrote: sesserThu Feb 21 13:46:46 2002 EDT Modified files: (Branch: PHP_4_0_7) /php4/mainrfc1867.c Log: fixing boundary check before someone other does it... I know some people it does not worth to release 4.1.2, but I'm +1 for

[PHP-DEV] Re: DIO

2002-02-21 Thread Yasuo Ohgaki
Gam3r wrote: what is the difference btween DIO and the current fopen/fwrite etc? is there any performance difference or is it only the non blocking flag or what? Instead of asking to list, it's better to report this as documentation problem :) -- Yasuo Ohgaki -- PHP Development

[PHP-DEV] Re: Bug #15663 Updated: add foreach reference values

2002-02-21 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: ID: 15663 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type:Feature/Change Request PHP Version: 4.1.1 New Comment: This bug has been fixed in CVS. ZendEngine2 uses handle for

[PHP-DEV] Re: Bug #15653 Updated: use_trans_sid creates invalid HTML

2002-02-21 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: ID: 15653 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Session related Operating System: Debian GNU Linux PHP Version: 4.1.1 New Comment: But then the *default*

Re: [PHP-DEV] Re: Sockets Extension Rework (API, etc...) VERY LONG

2002-02-21 Thread Jason Greene
On Thu, 2002-02-21 at 18:09, J Smith wrote: I'm all for fixing this extension up to make it better, Great!!! but I'm a little concerned with totally dropping the fd_* functions. How would you mimic their use in something like a multiplexing using a blocking call situation after the

Re: [PHP-DEV] Building / using the LDAP extension

2002-02-21 Thread Jani Taskinen
Try adding HAVE_LDAP there..? Same goes for any other extension too. --Jani On Thu, 21 Feb 2002, Venkat Raghavan wrote: I agree that you can't understand how I build it. But I hope you understand that I can't do it the standard way with the configure script on NetWare. I am