[PHP-DEV] Bug #12607 Updated: undefined reference to gdImageGifCtx

2001-08-07 Thread sniper
ID: 12607 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Old Bug Type: *Compile Issues Bug Type: GD related Operating System: NetBSD/Alpha 1.5W PHP Version: 4.0CVS-2001-08-06 New Comment: Are you sure you don't have some old GD library remains in your

[PHP-DEV] Re: To deprecate dl() or not.. (Was: something messy.. :)

2001-08-07 Thread Jani Taskinen
First, I'm 100% with Zeev here, kill dl()! It's evil. Second, I had an idea related to this discussion. I have been compiling PHP with almost every extension in the CVS (excluding the win32 specific) plus couple of 'renegade' extensions and all of them as 'static' extensions. Before I start to

[PHP-DEV] Bug #12609 Updated: Problem at restart (?)

2001-08-07 Thread sniper
ID: 12609 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Summary: problema en restart Old Status: Open Status: Bogus Bug Type: Unknown/Other Function Operating System: Linux PHP Version: 4.0.6 New Comment: Please use english to submit bug reports. Also, DO NOT USE 'apachectl restart'!!!

[PHP-DEV] Re: Bug #12596 Updated: Definition of array using constants in array doesn't work

2001-08-07 Thread Jan Fedak
This is a bug. If it's not a bug in classes, it definitely is a bug in the language scanner/parser. It doesn't even issue a warning, it just happily crunches the code and executes it. This is not the way a robust interpreter should behave. Jan Bug Database wrote: ID: 12596 Updated by:

[PHP-DEV] Bug #12611: problems with ImageColorSet and ImageColorAt

2001-08-07 Thread m . bergmann
From: [EMAIL PROTECTED] Operating system: Windows PHP version: 4.0.6 PHP Bug Type: *Graphics related Bug description: problems with ImageColorSet and ImageColorAt It's not possible to add colors to image using this function - setting colors with index greater than

Re: [PHP-DEV] Re: To deprecate dl() or not.. (Was: something messy.. :)

2001-08-07 Thread Thies C. Arntzen
On Tue, Aug 07, 2001 at 09:13:16AM +0200, Jani Taskinen wrote: First, I'm 100% with Zeev here, kill dl()! It's evil. Second, I had an idea related to this discussion. I have been compiling PHP with almost every extension in the CVS (excluding the win32 specific) plus couple of 'renegade'

[PHP-DEV] Bug #12612: unsigned integer problem

2001-08-07 Thread dimon
From: [EMAIL PROTECTED] Operating system: Windows 2000 Server SP1 5.0.2195 PHP version: 4.0.4pl1 PHP Bug Type: Scripting Engine problem Bug description: unsigned integer problem $qq = 0x8000; echo $qq; //2147483648 ok $qq = 0x8000 | 0; echo $qq; //-2147483648

[PHP-DEV] Bug #9836 Updated: php unexpectedly ends on too long scripts

2001-08-07 Thread jack
ID: 9836 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Scripting Engine problem Old Operating System: linux 2.2.18 Operating System: linux Old PHP Version: 4.0.4pl1 PHP Version: 4.0.5 New Comment: so it has happened again. I again offer to provide

[PHP-DEV] Bug #9836 Updated: php unexpectedly ends on too long scripts

2001-08-07 Thread sniper
ID: 9836 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Feedback Bug Type: Scripting Engine problem Operating System: linux PHP Version: 4.0.5 New Comment: And now we have already released PHP 4.0.6. But could you PLEASE try the latest CVS snapshot:

[PHP-DEV] Bug #12613: _ldap.dll extension cannot be loaded

2001-08-07 Thread g . richner
From: [EMAIL PROTECTED] Operating system: winnt_server sp3 iis4.0 PHP version: 4.0.6 PHP Bug Type: *Configuration Issues Bug description: _ldap.dll extension cannot be loaded I tried to install the php_ldap.dll but there is always the following error message when I try to

[PHP-DEV] Bug #12613 Updated: _ldap.dll extension cannot be loaded

2001-08-07 Thread sniper
ID: 12613 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *Configuration Issues Operating System: winnt_server sp3 iis4.0 PHP Version: 4.0.6 New Comment: You didn't read the bugs-dos-and-donts, did you?? And you didn't bother searching the bug

[PHP-DEV] Re: Bug #9836 Updated: php unexpectedly ends on too long scripts

2001-08-07 Thread Jan Fedak
S... all the relevant info coming: latest snapshot. compile-time: ./configure \ -with-sybase-ct=/home/sybase \ --enable-sysvsem \ --enable-sysvshm \ --enable-memory-limit \ --enable-sockets \ --disable-session \ --with-gmp \

[PHP-DEV] Bug #12614: AddSlashes doen't escape Curly braces {'s

2001-08-07 Thread mark
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0CVS-2001-08-07 PHP Bug Type: Strings related Bug description: AddSlashes doen't escape Curly braces {'s AFAIK this is not fixed in versoins beyong 4.0.1pl2 which is what I'm using. I'm using PHP to modify

Re: [PHP-DEV] Re: Bug #9836 Updated: php unexpectedly ends on toolong scripts

2001-08-07 Thread Jani Taskinen
On Tue, 7 Aug 2001, Jan Fedak wrote: latest snapshot. Good. and after make we finally see that: $ ./php ~/5.skr (failed: 1) $ gdb ./php (gdb) run -f ~/5.skr Starting program: ./php -f ~/5.skr Program exited with code 01. I get tons of these: Warning - Call-time pass-by-reference has been

[PHP-DEV] Bug #12615: Integer?

2001-08-07 Thread stjepan
From: [EMAIL PROTECTED] Operating system: Win2000 PHP version: 4.0.5 PHP Bug Type: *General Issues Bug description: Integer? ?php for ($i=1; $i=10; $i+=0.01) { print br$i; } ? and the output look like ... 1 1.01 1.02 1.03 . . . . 4.3 4.31 4.32

[PHP-DEV] Bug #12616: Apache make fails, can't find php header files

2001-08-07 Thread david . cumming
From: [EMAIL PROTECTED] Operating system: Redhat Linux 7.1 PHP version: 4.0.5 PHP Bug Type: Compile Failure Bug description: Apache make fails, can't find php header files apache_1.3.19# ./configure --prefix=/usr/local/apache php-4.05# ./configure --with-mysql

[PHP-DEV] Re: how do i check if a field exists

2001-08-07 Thread Harald Radi
where field_name actually exists but may not be used (null). the problem is that if it is not used then warnings are generated, even if i do;- if($myrow[field_name] != null){ $data = $myrow[field_name]; } is there any proposal to unify database extensions ? it seems that the

Re: [PHP-DEV] Re: To deprecate dl() or not.. (Was: something messy..:)

2001-08-07 Thread Jani Taskinen
On Tue, 7 Aug 2001, Thies C. Arntzen wrote: On Tue, Aug 07, 2001 at 09:13:16AM +0200, Jani Taskinen wrote: Would it be stupid to have a possibility to disable a static extension on startup? (for CGI) Either as php.ini directive or as command line option or both. It takes couple of seconds

[PHP-DEV] PHP Bug 11647 11690 (fwd)

2001-08-07 Thread Derick Rethans
-- Forwarded message -- Date: Thu, 2 Aug 2001 17:28:09 +0100 From: John Hagerty [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: PHP Bug 11647 11690 Hi Derek, I hope you don't mind me mailing you directly, but I don't think I'm able to comment on bugs that I haven't registered

[PHP-DEV] Bug #12335 Updated: mail() function returns false but the email was sent.

2001-08-07 Thread sascha . winkler
ID: 12335 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Mail related Operating System: Sun Solaris 2.6 PHP Version: 4.0.6 New Comment: I found out, that the problem is not the EX_OK or EX_TEMPFAIL but the sendmail return value. Sendmail (the sendmail

[PHP-DEV] Bug #12608 Updated: $REDIRECT_QUERY_STRING isn't parsed into $HTTP_GET_VARS

2001-08-07 Thread andy
ID: 12608 Updated by: andy Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Variables related Old Operating System: Debian potato GNU/Linux Operating System: Debian potato GNU/Linux PHP Version: 4.0.5 New Comment: I don't know if I read this right, because it was a bit

Re: [PHP-DEV] Re: Bug #9836 Updated: php unexpectedly ends on toolong scripts (fwd)

2001-08-07 Thread Jani Taskinen
-- Forwarded message -- Date: Tue, 7 Aug 2001 13:19:58 +0200 From: Jan Fedak [EMAIL PROTECTED] To: Jani Taskinen [EMAIL PROTECTED] Subject: Re: [PHP-DEV] Re: Bug #9836 Updated: php unexpectedly ends on too long scripts After further testing I found out it depends on memory

[PHP-DEV] Bug #9836 Updated: php unexpectedly ends on too long scripts

2001-08-07 Thread sniper
ID: 9836 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Scripting Engine problem Operating System: linux Old PHP Version: 4.0.5 PHP Version: 4.0.7-dev New Comment: User feedback: -- After further testing I found out it depends on

[PHP-DEV] CVS Account Request

2001-08-07 Thread CVS Account Request
Full name: Mitja Slenc Email: [EMAIL PROTECTED] ID:mitja Purpose: Translating documentation into Slovenian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP-DEV] Bug #12616 Updated: Apache make fails, can't find php header files

2001-08-07 Thread andy
ID: 12616 Updated by: andy Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: Redhat Linux 7.1 PHP Version: 4.0.5 New Comment: does this stil happen with latest CVS??? http://snaps.php.net Previous Comments:

Re: [PHP-DEV] Bug #12477 Updated: preg_replace evaluates dollar signs as variables (eg $1,000 becomes ,000)

2001-08-07 Thread Andrei Zmievski
On Mon, 06 Aug 2001, [EMAIL PROTECTED] wrote: ID: 12477 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Feature/Change Request Operating System: Linux and SCO PHP Version: 4.0.6 New Comment: I was trying to have to walk the array twice. The

[PHP-DEV] Bug #12617: make test fails on strtotime

2001-08-07 Thread james+php
From: [EMAIL PROTECTED] Operating system: solaris PHP version: 4.0.6 PHP Bug Type: *Compile Issues Bug description: make test fails on strtotime make test fails on the test ext/standard/tests/time/002.php. 002.out says: 1999-10-13 939769200 939769200 2000-01-19

[PHP-DEV] Bug #12618: unable to select colors using palette of (loaded ) pngs or gifs

2001-08-07 Thread frank . loeffler
From: [EMAIL PROTECTED] Operating system: Debian Woody PHP version: 4.0.4pl1 PHP Bug Type: GD related Bug description: unable to select colors using palette of (loaded ) pngs or gifs Hi, It maybe is a problem of concept. I do not have any knowledge about the inside, but

[PHP-DEV] Bug #12619: ImageCreateFromPNG does not set transparent color

2001-08-07 Thread frank . loeffler
From: [EMAIL PROTECTED] Operating system: Debian Woody PHP version: 4.0.4pl1 PHP Bug Type: GD related Bug description: ImageCreateFromPNG does not set transparent color Hi, ImageCreateFromPNG does not set transparent color and I found no way to find out, which color was

[PHP-DEV] Bug #12615 Updated: Integer?

2001-08-07 Thread phildriscoll
ID: 12615 Updated by: phildriscoll Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *General Issues Operating System: Win2000 PHP Version: 4.0.5 New Comment: Welcome to the world of floating point arithmetic on computers. Internal binary representations cannot exactly

[PHP-DEV] Bug #12608 Updated: $REDIRECT_QUERY_STRING isn't parsed into $HTTP_GET_VARS

2001-08-07 Thread havardda-dev
ID: 12608 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Variables related Operating System: Debian potato GNU/Linux PHP Version: 4.0.5 New Comment: Thanks for the reply. Sorry that the first post was confusing, I'll try

[PHP-DEV] Bug #7280 Updated: global iniline not supported in SGI Compiler

2001-08-07 Thread robert . marchand
ID: 7280 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Compile Failure Operating System: SGI IRIX 6.5.8 PHP Version: 4.0.4 New Comment: Hi, I've tested it with PHP-4.0.7-cvs (snapshot of 2001/08/06) and it appears to be fixed. Thanks! Note:

[PHP-DEV] Re: [PEAR-DEV] DB : affectedRows() on an UPDATE query ?

2001-08-07 Thread Manuel Lemos
Hello, Tomas V.V.Cox wrote: It would be great to allow an affectedRows() (returning a DB_Result instead of a DB_OK) with UPDATE or DELETE queries ! affectedRows() works only with UPDATES/INSERT/DELETE queries. $db-query('delete * from users'); echo I have deleted .

[PHP-DEV] Bug #12621: is always ORA-12699 Native service internal error

2001-08-07 Thread wqzxw
From: [EMAIL PROTECTED] Operating system: PHP version: 4.0.4 PHP Bug Type: OCI8 related Bug description: is always ORA-12699 Native service internal error I have installed NT4+PHP+ORACLE8.0.4+APACHE in my computer. I want to access ORACLE server to another computer from

[PHP-DEV] [patch] IMAP setacl command...

2001-08-07 Thread Brian Masney
I have enclosed a patch that adds support for the IMAP setacl command that is found in the Cyrus IMAP package (and probably others). If anyone has any problems with this, please let me know. Brian diff -ru php-4.0.6-orig/ext/imap/php_imap.c php-4.0.6/ext/imap/php_imap.c ---

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.c incomplete_class.c php_incomplete_class.h var.c /ext/wddx wddx.c

2001-08-07 Thread Stig Sæther Bakken
[Zeev Suraski [EMAIL PROTECTED]] At 19:40 06/08/2001, Andrei Zmievski wrote: On Mon, 06 Aug 2001, Zeev Suraski wrote: At 07:10 06/08/2001, Sterling Hughes wrote: What if you use 50 different shared extensions, for different scripts on the same box? Should you load them all in

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.cincomplete_class.c php_incomplete_class.h var.c /ext/wddx wddx.c

2001-08-07 Thread Heikki Korpela
On 7 Aug 2001, Stig Sæther Bakken wrote: If there were a thousand extensions, we may have to rethink it - but the good solution would probably be JIT initialization. Now we're talking! I assume it is not straightforward, what are the technical challenges in doing JIT module

[PHP-DEV] Bug #12622: scope of $this and static functions

2001-08-07 Thread jh
From: [EMAIL PROTECTED] Operating system: linux 2.2 PHP version: 4.0.6 PHP Bug Type: Class/Object related Bug description: scope of $this and static functions When calling a static function from within another class the $this - reference is not empty, but it points to the

[PHP-DEV] Bug #11964 Updated: libphp4.so fails during load

2001-08-07 Thread oyvindh
ID: 11964 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Apache related Operating System: Solaris 5.8 4/01 (Sparc) PHP Version: 4.0.6 New Comment: My bad not reading the Apache documentation: htdocs/manual/dso.html Sorry for the

[PHP-DEV] Bug #11964 Updated: libphp4.so fails during load

2001-08-07 Thread andy
ID: 11964 Updated by: andy Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: Apache related Operating System: Solaris 5.8 4/01 (Sparc) PHP Version: 4.0.6 New Comment: user error - bogus Previous Comments:

Re: [PHP-DEV] [patch] IMAP setacl command...

2001-08-07 Thread Chuck Hagenbuch
Quoting Brian Masney [EMAIL PROTECTED]: I have enclosed a patch that adds support for the IMAP setacl command that is found in the Cyrus IMAP package (and probably others). If anyone has any problems with this, please let me know. Please attach the patch in plain text format or post a link

[PHP-DEV] CVS Account Request

2001-08-07 Thread CVS Account Request
Full name: Cornelia Boenigk Email: [EMAIL PROTECTED] ID:conni Purpose: Helping Egon to translate the manual into German -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

[PHP-DEV] Bug #12623: mod operator

2001-08-07 Thread dosena
From: [EMAIL PROTECTED] Operating system: linux (suse) PHP version: 4.0.4pl1 PHP Bug Type: Math related Bug description: mod operator Modulus (%) operator i am not sure if the behavior for non-integer operands is defined, so i am not sure how important this actually is

[PHP-DEV] ImageCreateFromString; support for .gd and .gd2

2001-08-07 Thread Holger Schopohl
Hi, ImageCreateFromString doesnt support .gd and .gd2 file types. I think, its important to support this types, because ImageCreateFromString its ideal for images from databases and .gd2 its much more faster than PNG. Explicite the time to save a PNG with ImagePNG and higher resolutions

[PHP-DEV] Bug #12624: Installation Apache/Php/Interbase

2001-08-07 Thread pyjallud
From: [EMAIL PROTECTED] Operating system: Windows98 PHP version: 4.0.5 PHP Bug Type: Any Bug description: Installation Apache/Php/Interbase When I launch Apache (1.3.20) configurated with PHP (4.0.5) and Interbase, there is a Warning message: PHP Warning: Unable to load

[PHP-DEV] Bug #12624 Updated: Installation Apache/Php/Interbase

2001-08-07 Thread alindeman
ID: 12624 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Any Operating System: Windows98 PHP Version: 4.0.5 New Comment: read: http://bugs.php.net/?id=12613 Previous Comments:

[PHP-DEV] Error compiling latest CVS

2001-08-07 Thread Steeg
Hi all, I'm getting this error when I try to compile the lates CVS of PHP4: php_domxml.c: In function `php_xpathobject_new': php_domxml.c:464: `tsrm_ls' undeclared (first use in this function) php_domxml.c:464: (Each undeclared identifier is reported only once php_domxml.c:464: for each

[PHP-DEV] could someone apply this patch

2001-08-07 Thread Harald Radi
should fix custom build steps in zend/ZendTS.dsp ZendTS.diff -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] Error compiling latest CVS

2001-08-07 Thread Steeg
Steeg wrote: Hi all, I'm getting this error when I try to compile the lates CVS of PHP4: php_domxml.c: In function `php_xpathobject_new': php_domxml.c:464: `tsrm_ls' undeclared (first use in this function) php_domxml.c:464: (Each undeclared identifier is reported only once

Re: [PHP-DEV] RFC: New math functions: log2, etc

2001-08-07 Thread Jesus M. Castagnetto
Aparently PAN (the newsreader I used) does not make the right stuff for the MARC archive to add the poster name. -- Jesus M. Castagnetto ([EMAIL PROTECTED]) In article [EMAIL PROTECTED], Jesus M. Castagnetto [EMAIL PROTECTED] wrote: In article [EMAIL PROTECTED], Sterling Hughes [EMAIL

Re: [PHP-DEV] Programming question

2001-08-07 Thread George Schlossnagle
Right now, the zend_function struct contains a char *function_name but no int function_name_len. In light of the comments below, I think this is a bug, or a bug waiting to happen. George If the string functions (str*()) don't work with function names in PHP, it's all for the better. Code

[PHP-DEV] Bug #12625: (latest) php_oci8.dll can not be loaded

2001-08-07 Thread cshih05
From: [EMAIL PROTECTED] Operating system: win2000 PHP version: 4.0.6 PHP Bug Type: Oracle related Bug description: (latest) php_oci8.dll can not be loaded Sir, I download 4.06 install files yesterday. I have tried a lot of ways to config php.ini in order to load

Re: [PHP-DEV] ImageCreateFromString; support for .gd and .gd2

2001-08-07 Thread Jani Taskinen
On Tue, 7 Aug 2001, Holger Schopohl wrote: Hi, ImageCreateFromString doesnt support .gd and .gd2 file types. I think, its important to support this types, because ImageCreateFromString its ideal for images from databases and .gd2 its much more faster than PNG. Explicite the time to save a PNG

Re: [PHP-DEV] Error compiling latest CVS

2001-08-07 Thread Jani Taskinen
Should be fixed now. Update and try again. If you get more errors, let me know. --Jani On Tue, 7 Aug 2001, Steeg wrote: Steeg wrote: Hi all, I'm getting this error when I try to compile the lates CVS of PHP4: php_domxml.c: In function `php_xpathobject_new': php_domxml.c:464: `tsrm_ls'

[PHP-DEV] Bug #12608 Updated: $REDIRECT_QUERY_STRING isn't parsed into $HTTP_GET_VARS

2001-08-07 Thread havardda-dev
ID: 12608 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Variables related Operating System: Debian potato GNU/Linux PHP Version: 4.0.5 New Comment: Thanks for the reply. Sorry that the first post was confusing, I'll try explaining my situation more

[PHP-DEV] Bug #12625 Updated: (latest) php_oci8.dll can not be loaded

2001-08-07 Thread alindeman
ID: 12625 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Oracle related Operating System: win2000 PHP Version: 4.0.6 New Comment: read: http://bugs.php.net/?id=12502 Previous Comments:

[PHP-DEV] Bug #10800 Updated: File uploads take ~70 times longer than downloading files on Apache/PHP.

2001-08-07 Thread alindeman
ID: 10800 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: HTTP related Operating System: NT 2000 PHP Version: 4.0.5 New Comment: status - feedback Previous Comments:

Re: [PHP-DEV] [patch] IMAP setacl command...

2001-08-07 Thread Brian Masney
On Tue, 7 Aug 2001, Chuck Hagenbuch wrote: Quoting Brian Masney [EMAIL PROTECTED]: I have enclosed a patch that adds support for the IMAP setacl command that is found in the Cyrus IMAP package (and probably others). If anyone has any problems with this, please let me know. Please

Re: [PHP-DEV] Programming question

2001-08-07 Thread Daniel Cowgill
On Thu, Aug 02, 2001 at 12:24:03PM -0400, George Schlossnagle wrote: On a related note, placing null-bytes in the middle of strings (for example in the names of the so-called lambda_functions generated from create_function()) seems like a pretty questionable practice. why, this

[PHP-DEV] Bug #12626: string to int incorrect if string containts 0 characters

2001-08-07 Thread stefan . priebsch
From: [EMAIL PROTECTED] Operating system: win32 PHP version: 4.0.6 PHP Bug Type: Scripting Engine problem Bug description: string to int incorrect if string containts 0 characters if you convert a string containing chr(0) characters to an int, php cuts off conversion on

[PHP-DEV] Bug #12570 Updated: feof () - no break on eof of socket

2001-08-07 Thread alindeman
ID: 12570 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Status: Open Status: Analyzed Bug Type: Network related Operating System: SuSE 7.0 PHP Version: 4.0.6 Edit this bug report at http://bugs.php.net/?id=12570edit=1 -- PHP Development Mailing List http://www.php.net/ To

[PHP-DEV] Bug #12623 Updated: mod operator

2001-08-07 Thread jmcastagnetto
ID: 12623 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Math related Operating System: linux (suse) PHP Version: 4.0.4pl1 New Comment: The modulus operator is strictly defined for integer numbers, because it ... basically just returns the

[PHP-DEV] Bug #12155 Updated: modulus %

2001-08-07 Thread jmcastagnetto
ID: 12155 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Bogus Status: Closed Bug Type: Math related Operating System: linux 2.4.3 PHP Version: 4.0.5 New Comment: See Bug #12623 for a more complete explanation on modulus ( http://www.php.net/bugs.php?id=12623 ) Previous

Re: [PHP-DEV] Bug #12570 Updated: feof () - no break on eof of socket

2001-08-07 Thread Jani Taskinen
Would you also mind telling WHY it's analyzed? :) ie. If you could reproduce it by yourself, mention it. And always try reproducing bugs with the latest CVS. --Jani On 7 Aug 2001 [EMAIL PROTECTED] wrote: ID: 12570 Updated by: alindeman Reported By: [EMAIL PROTECTED] Status: Analyzed Bug

[PHP-DEV] Bug #11058 Updated: php_network_getaddresses: getaddrinfo failed

2001-08-07 Thread pat
ID: 11058 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: HTTP related Operating System: OpenBSD 2.6 Old PHP Version: 4.0.5 PHP Version: 4.0.6 New Comment: Still having the same issue with 4.0.6 now. I'll try and recompile without the

[PHP-DEV] Bug #12625 Updated: (latest) php_oci8.dll can not be loaded

2001-08-07 Thread cshih05
ID: 12625 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Oracle related Operating System: win2000 PHP Version: 4.0.6 New Comment: Dear Sir, just FYI. the same setup in php.ini (version 4.06)-52Mb php_oci8.dll can not be loaded. (version

Re: [PHP-DEV] Error compiling latest CVS

2001-08-07 Thread Steeg
Jani Taskinen wrote: Should be fixed now. Update and try again. If you get more errors, let me know. --Jani Almost :) - php_domxml.c: In function `php_if_domxml_node_attributes': php_domxml.c:1469: too many arguments to function `node_attributes' php_domxml.c: At top level:

Re: [PHP-DEV] Error compiling latest CVS

2001-08-07 Thread Jani Taskinen
Now it should compile. Tested it myself. :) --Jani On Tue, 7 Aug 2001, Steeg wrote: Jani Taskinen wrote: Should be fixed now. Update and try again. If you get more errors, let me know. --Jani Almost :) - php_domxml.c: In function `php_if_domxml_node_attributes':

[PHP-DEV] Bug #12627: configure creates config_vars.mk incorrectly as of aug 7,2001

2001-08-07 Thread chris
From: [EMAIL PROTECTED] Operating system: SCO OpenServer 5.x PHP version: 4.0CVS-2001-08-07 PHP Bug Type: Compile Failure Bug description: configure creates config_vars.mk incorrectly as of aug 7,2001 make has problems with this... Must be a separator on rules line 62

[PHP-DEV] added a few *_EXTERN_C() macro calls

2001-08-07 Thread Harald Radi
any objections commiting this ? if not, please do so, i don't have karma for the zend repository. -harald. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP-DEV] Bug #12570 Updated: feof () - no break on eof of socket

2001-08-07 Thread alindeman
ID: 12570 Updated by: alindeman Reported By: [EMAIL PROTECTED] Status: Analyzed Bug Type: Network related Operating System: SuSE 7.0 PHP Version: 4.0.6 New Comment: reproduced with latest CVS. Previous Comments:

[PHP-DEV] Bug #10116 Updated: bcpow treats second argument as integer

2001-08-07 Thread jmcastagnetto
ID: 10116 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: BC math related Operating System: Windows 98 PHP Version: 4.0.4pl1 New Comment: This is an issue w/ the bcmath library itself, not a PHP bug. If you look in

[PHP-DEV] Bug #12628: Cannot Successfully map soname 'libexpat.so.1'

2001-08-07 Thread bpp
From: [EMAIL PROTECTED] Operating system: sgi irix 6.5 PHP version: 4.0.5 PHP Bug Type: *Web Server problem Bug description: Cannot Successfully map soname 'libexpat.so.1' I've Netscape Fasttrack 3.x and I've installed php 4.05. When I start script php-fixconf.sh trying to

[PHP-DEV] Chora

2001-08-07 Thread Richard Heyes
Hi, The following link used to take me to the latest version of the news file, is there a similar option with Chora? http://cvs.php.net/viewcvs.cgi/~checkout~/php4/NEWS?content-type=text/plain -- Richard Heyes I know not with what weapons World War III will be fought, but World War IV

[PHP-DEV] Bug #12625 Updated: (latest) php_oci8.dll can not be loaded

2001-08-07 Thread cshih05
ID: 12625 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Oracle related Operating System: win2000 PHP Version: 4.0.6 New Comment: sorry I mean 44Kb not Mb = Dear Sir, just FYI. the same setup in php.ini (version 4.06)-52Mb

[PHP-DEV] Bug #12629: small compile errors

2001-08-07 Thread chris
From: [EMAIL PROTECTED] Operating system: SCO OpenServer 5.x PHP version: 4.0CVS-2001-08-07 PHP Bug Type: Unknown/Other Function Bug description: small compile errors SCO Openserver 5.x does not have the getrusage function, the configure command seems to detect it, I

[PHP-DEV] Bug #12630 Updated: BUG: cannot return'' with the function() or dosomething'' construct

2001-08-07 Thread joustin
ID: 12630 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Scripting Engine problem Old Operating System: Win2000 sp2 Operating System: Red Hat Linux, Win2000 sp2 PHP Version: 4.0.6 New Comment: Tested on Red Hat Previous Comments:

[PHP-DEV] Bug #12630 Updated: BUG: cannot return

2001-08-07 Thread alindeman
ID: 12630 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Summary: BUG: cannot return'' with the function() or dosomething'' construct Old Status: Open Status: Bogus Bug Type: Scripting Engine problem Operating System: Red Hat Linux, Win2000 sp2 PHP Version: 4.0.6 New Comment: this is

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.c incomplete_class.c php_incomplete_class.h var.c /ext/wddx wddx.c

2001-08-07 Thread Zeev Suraski
At 17:55 07-08-01, Stig Sæther Bakken wrote: Now we're talking! I assume it is not straightforward, what are the technical challenges in doing JIT module initialization? It's not much of a challenge really. If we decide it should be done, it can be done... Zeev -- PHP Development Mailing

Re: [PHP-DEV] Chora

2001-08-07 Thread Andrew Lindeman formally [EMAIL PROTECTED]
I don't know how to make it show the current version, but this is the format is http://cvs.php.net/co.php/php4/NEWSr=1.726 where 1.78 is the latest revision Anybody know how to get the current version? --Andy :) On Mon, 06 Aug 2001, Richard Heyes wrote: Hi, The following link used to

Fwd: Re: [PHP-DEV] Chora

2001-08-07 Thread Andrew Lindeman formally [EMAIL PROTECTED]
Of course I meant that it was http://cvs.php.net/co.php/php4/NEWS?r=1.726 -- Forwarded Message -- Subject: Re: [PHP-DEV] Chora Date: Tue, 7 Aug 2001 13:09:34 -0500 From: Andrew Lindeman formally [EMAIL PROTECTED] [EMAIL PROTECTED] I don't know how to make it show the current

[PHP-DEV] Bug #12631: Fatal: ob_get_length() returns wrong value when compressed OB is on

2001-08-07 Thread troels
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Output Control Bug description: Fatal: ob_get_length() returns wrong value when compressed OB is on When output buffering is on, using the gzhandler, then ob_get_length() returns the

RE: [PHP-DEV] Security proposal - SPHP and helper functions

2001-08-07 Thread Brian Tanner
-Original Message- From: David Wheeler [mailto:[EMAIL PROTECTED]] Sent: August 6, 2001 8:20 PM To: [EMAIL PROTECTED] Subject: [PHP-DEV] Security proposal - SPHP and helper functions Dear Developers of PHP: I have a proposal that I hope you'll like that I think will improve the

[PHP-DEV] Bug #12630 Updated: BUG: cannot return

2001-08-07 Thread joustin
ID: 12630 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Scripting Engine problem Operating System: Red Hat Linux, Win2000 sp2 PHP Version: 4.0.6 New Comment: BOGUS ? The above is just a workaround... I've used it, though it's the only reasonable way

[PHP-DEV] Bug #12630 Updated: BUG: cannot return

2001-08-07 Thread alindeman
ID: 12630 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Status: Bogus Status: Open Old Bug Type: Scripting Engine problem Bug Type: Feature/Change Request Operating System: Red Hat Linux, Win2000 sp2 PHP Version: 4.0.6 New Comment: I'll make this a feature request/change... Previous

[PHP-DEV] Bug #10116 Updated: bcpow treats second argument as integer

2001-08-07 Thread jmcastagnetto
ID: 10116 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: BC math related Operating System: Windows 98 PHP Version: 4.0.4pl1 Previous Comments: [2001-04-02 09:29:49]

[PHP-DEV] Bug #12623 Updated: mod operator

2001-08-07 Thread jmcastagnetto
ID: 12623 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: Math related Operating System: linux (suse) PHP Version: 4.0.4pl1 Previous Comments: [2001-08-07 11:14:21]

[PHP-DEV] Bug #12155 Updated: modulus %

2001-08-07 Thread jmcastagnetto
ID: 12155 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: Math related Operating System: linux 2.4.3 PHP Version: 4.0.5 Previous Comments: [2001-08-06 19:57:53] [EMAIL

[PHP-DEV] Bug #10166 Updated: read_exif_data loads whole image into memory

2001-08-07 Thread jmcastagnetto
ID: 10166 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: *Graphics related Operating System: Linux 2.2 PHP Version: 4.0 Latest CVS (04/04/2001) Previous Comments:

[PHP-DEV] Bug #10166 Updated: read_exif_data loads whole image into memory

2001-08-07 Thread jmcastagnetto
ID: 10166 Updated by: jmcastagnetto Reported By: [EMAIL PROTECTED] Old Status: Bogus Status: Closed Bug Type: *Graphics related Operating System: Linux 2.2 PHP Version: 4.0 Latest CVS (04/04/2001) New Comment: Reclosed, edited wrong bug Previous Comments:

[PHP-DEV] Bug #12630 Updated: BUG: cannot return

2001-08-07 Thread joustin
ID: 12630 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Operating System: Red Hat Linux, Win2000 sp2 PHP Version: 4.0.6 New Comment: I'm getting multiple Undelivered Mail Returned to Sender messages from Your mail gateway...

[PHP-DEV] Fw: added a few *_EXTERN_C() macro calls

2001-08-07 Thread Harald Radi
uups. Harald Radi [EMAIL PROTECTED] schrieb im Newsbeitrag news:001d01c11f65$08fc8790$6500a8c0@Thinkphed... any objections commiting this ? if not, please do so, i don't have karma for the zend repository. -harald. extern_c.diff -- PHP Development Mailing List http://www.php.net/ To

[PHP-DEV] Bug #12633: --enable-gd-native-ttf vs. --enable-gd-native-tt

2001-08-07 Thread philip
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.3 PHP version: 4.0.6 PHP Bug Type: *Compile Issues Bug description: --enable-gd-native-ttf vs. --enable-gd-native-tt When configuring PHP it says to use --enable-gd-native-ttf, but if configure actually checks for

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.c formatted_print.c php_string.h

2001-08-07 Thread Andi Gutmans
In what case is this useful? I'm kind of worried that so many functions are popping up in PHP which accept arrays as parameters. It's much slower than passing the arguments in a regular way. How often do people dynamically build formats *and* then dynamically build an array of arguments? Andi

[PHP-DEV] Bug #12633 Updated: --enable-gd-native-ttf vs. --enable-gd-native-tt

2001-08-07 Thread alindeman
ID: 12633 Updated by: alindeman Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *Compile Issues Operating System: FreeBSD 4.3 PHP Version: 4.0.6 New Comment: has been fixed in CVS for a long time Previous Comments:

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.c formatted_print.c php_string.h

2001-08-07 Thread Andrei Zmievski
On Tue, 07 Aug 2001, Andi Gutmans wrote: In what case is this useful? I'm kind of worried that so many functions are popping up in PHP which accept arrays as parameters. It's much slower than passing the arguments in a regular way. How often do people dynamically build formats *and* then

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.c formatted_print.c php_string.h

2001-08-07 Thread Andi Gutmans
At 02:53 PM 8/7/2001 -0500, Andrei Zmievski wrote: On Tue, 07 Aug 2001, Andi Gutmans wrote: In what case is this useful? I'm kind of worried that so many functions are popping up in PHP which accept arrays as parameters. It's much slower than passing the arguments in a regular way. How

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard basic_functions.c formatted_print.c php_string.h

2001-08-07 Thread Andrei Zmievski
On Tue, 07 Aug 2001, Andi Gutmans wrote: Do you really think it's worth it? People will use features which are available. I don't think it's the right thing to allow them to write code which is *much* slower than the old way when it usually doesn't give you much advantage over the old way.

[PHP-DEV] Bug #12612 Updated: unsigned integer problem

2001-08-07 Thread jeroen
ID: 12612 Updated by: jeroen Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Scripting Engine problem Operating System: Windows 2000 Server SP1 5.0.2195 PHP Version: 4.0.4pl1 New Comment: PHP 4 handles number-constants smartly. I.e., when a number is out of range of integers, it will be

[PHP-DEV] Bug #12612 Updated: unsigned integer problem

2001-08-07 Thread jeroen
ID: 12612 Updated by: jeroen Reported By: [EMAIL PROTECTED] Old Status: Open Status: Analyzed Bug Type: Scripting Engine problem Operating System: Windows 2000 Server SP1 5.0.2195 PHP Version: 4.0.4pl1 New Comment: I wan't really clear on this one: PHP _does not support unsigned ints_

  1   2   >