[PHP-DEV] Bug #14134 Updated: Literal -2147483648 should be an int, not a double.

2001-11-20 Thread derick
ID: 14134 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Assigned Bug Type: Variables related Operating System: Linux PHP Version: 4.0.6 Old Assigned To: Assigned To: derick New Comment: Checking this out Previous Comments:

[PHP-DEV] Bug #14135: True Type Functions in libgd

2001-11-20 Thread dferdinand
From: [EMAIL PROTECTED] Operating system: AIX 4.3.x PHP version: 4.0.6 PHP Bug Type: *Compile Issues Bug description: True Type Functions in libgd hello, i want to use the truetype-function in libgd and activate them with the option --enable-gd-native-ttf for the

[PHP-DEV] Bug #14131 Updated: include http problem

2001-11-20 Thread mfischer
ID: 14131 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Scripting Engine problem Operating System: Windows Server 2000 PHP Version: 4.0.6 New Comment: This is most likely a configuration problem. Please ask such questions on [EMAIL PROTECTED]

[PHP-DEV] Bug #14135 Updated: True Type Functions in libgd

2001-11-20 Thread mfischer
ID: 14135 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *Compile Issues Operating System: AIX 4.3.x PHP Version: 4.0.6 New Comment: Bogus. This has been repored zillions of times in past and has been fixed a long time ago. Please search the bug

[PHP-DEV] Bug #14134 Updated: Literal -2147483648 should be an int, not a double.

2001-11-20 Thread derick
ID: 14134 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Assigned Status: Analyzed Bug Type: Variables related Operating System: Linux PHP Version: 4.0.6 Assigned To: derick New Comment: Found the problem. I'll try to make a fix this evening. Derick Previous Comments:

Re: [PHP-DEV] Bug #14134 Updated: Literal -2147483648 should be an int, not a double.

2001-11-20 Thread Pierre-Alain Joye
When assigning the value -2147483648 to a variable, the variable becomes a double, even though the value is within the range of integers. In fact, assigning -2147483647 - 1 works, as does using intval(-2147483648). The following script demonstrates, and can be accessed at

Re: [PHP-DEV] php module calling php code

2001-11-20 Thread Lenar Lõhmus
Colin McDonald wrote: you where close: call_user_method() Zak was right. call_user_method() is deprecated. At least it sais so when NOTICEs are enabled. colin Zak Greant wrote: IIAGR, you should be able to find an example in call_user_func() -- Lenar Lõhmus -- PHP

Re: [PHP-DEV] Bug #14134 Updated: Literal -2147483648 should be anint, not a double.

2001-11-20 Thread Derick Rethans
On Tue, 20 Nov 2001, Pierre-Alain Joye wrote: When assigning the value -2147483648 to a variable, the variable becomes a double, even though the value is within the range of integers. In fact, assigning -2147483647 - 1 works, as does using intval(-2147483648). The following script

[PHP-DEV] Bug #14135 Updated: True Type Functions in libgd

2001-11-20 Thread dferdinand
ID: 14135 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *Compile Issues Operating System: AIX 4.3.x PHP Version: 4.0.6 New Comment: i have download php from this location http://download.php.net/distributions/php-4.0.6.tar.gz and in this file this bug

[PHP-DEV] Bug #14136: Segfaults when forget xslt_free()

2001-11-20 Thread lenar
From: [EMAIL PROTECTED] Operating system: Debian/Linux PHP version: 4.0CVS-2001-11-20 PHP Bug Type: XSLT related Bug description: Segfaults when forget xslt_free() Tested this with php compiled as cgi. Everything works ok when after doing transformation you use

Re: [PHP-DEV] Bug #14135 Updated: True Type Functions in libgd

2001-11-20 Thread Markus Fischer
Because the bug has been fixed in CVS and we don't role a new release just for one character ;-) On Tue, Nov 20, 2001 at 08:56:29AM -, [EMAIL PROTECTED] wrote : ID: 14135 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *Compile Issues

Re: [PHP-DEV] Bug #14134 Updated: Literal -2147483648 should be an int, not a double.

2001-11-20 Thread Pierre-Alain Joye
You're not correct, the smallest number that should fit in into a signed integer is -2147483648. -(2^31) The highest number is 2147483647. (2^31) - 1 Oops, ok. :) The rule never reply before 11 in the morning ;) pa -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail:

Re: [PHP-DEV] Bug #14134 Updated: Literal -2147483648 should be an int, not a double.

2001-11-20 Thread Hartmut Holzgraefe
Pierre-Alain Joye wrote: You're not correct, the smallest number that should fit in into a signed integer is -2147483648. -(2^31) The highest number is 2147483647. (2^31) - 1 Oops, ok. :) The rule never reply before 11 in the morning ;) it just depends on the hardware using one-complements or

Re: [PHP-DEV] 4.1.0 Final RC

2001-11-20 Thread Phil Driscoll
Built without problems on SuSE 7.2 ./configure --with-apxs=/usr/local/httpd/bin/apxs --with-mysql=/usr/local/mysql --with-gmp=/usr/local/lib/gmp Tested with all my code (including file uploads which worked perfectly) along with phpmyadmin and phorum - no problems found. Make test failed as

[PHP-DEV] Bug #14138: date arithmetic scrambled

2001-11-20 Thread mail-php . net
From: [EMAIL PROTECTED] Operating system: Debian GNU/Linux stable PHP version: 4.0.6 PHP Bug Type: Date/time related Bug description: date arithmetic scrambled There seems to be some voodoo in this script ... for ( $i = -7 ; $i 28 ; $i ++ ) { $day = date('d');

[PHP-DEV] Bug #14138 Updated: date arithmetic scrambled

2001-11-20 Thread derick
ID: 14138 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Date/time related Operating System: Debian GNU/Linux stable PHP Version: 4.0.6 New Comment: Works fine for me, can you try the RC from www.php.net/~zeev/php-4.1.0RC3.tar.gz ? Derick

[PHP-DEV] Re: 4.1.0 Final RC

2001-11-20 Thread Tobias Schenck
Runs on SuSE 7.3 with File-Upload and IE 5.5 kind regards, tobias schenck Joshua Eichorn [EMAIL PROTECTED] schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I've tried this on multiple machines as well as using other people's upload code and can't get file uploading to work

Re: [PHP-DEV] buildconf

2001-11-20 Thread Balazs Nagy
On Mon, Nov 19 2001, Serg Musichenko [EMAIL PROTECTED] wrote: I reinstall aunoconf 2.13 only and buildconf work Ok Autoconf 2.52d not produce configure from configure.in [EMAIL PROTECTED] wrote: I suggest you use automake 1.4 and libtool 1.4 (not newer versions). (I think automake

[PHP-DEV] Bug #14139: no array_fill()

2001-11-20 Thread goda
From: [EMAIL PROTECTED] Operating system: linux PHP version: 4.0.6 PHP Bug Type: Arrays related Bug description: no array_fill() There is no array_fill() PHP function (I cannot see it in ext/standard/array.c too) It is hardly needed, cos itterations are extremly slow in

[PHP-DEV] Bug #14139 Updated: no array_fill()

2001-11-20 Thread derick
ID: 14139 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Arrays related Operating System: linux PHP Version: 4.0.6 New Comment: It's only available in version 4.2.0 and higher. (Change the documentation to reflect that). Derick Previous Comments:

[PHP-DEV] Bug #14140: Oracle 7.3.4 on PHP 4.0.5

2001-11-20 Thread info
From: [EMAIL PROTECTED] Operating system: winnt PHP version: 4.0.5 PHP Bug Type: Oracle related Bug description: Oracle 7.3.4 on PHP 4.0.5 We use PHP405 on oracle 7.3.4 and ora_logon function fail on TNSNAME. how to use Oracle 7.3.4 with php4. We try php 406, but

[PHP-DEV] Bug #14140 Updated: Oracle 7.3.4 on PHP 4.0.5

2001-11-20 Thread derick
ID: 14140 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Oracle related Operating System: winnt PHP Version: 4.0.5 New Comment: Try one of the dev packages from www.php4win.com, and report back if they work. Derick Previous Comments:

Re: [PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-20 Thread James Moore
James Moore wrote: It wont load for me.. might but my build or something else.. has anyone had it working on win32 yet?? AFAICS, there is no (working) workspace in the PHP_4_0_7 branch to build the sapi/Apache2Filter for Win32. I can build it (I just made a new workspace) but it

[PHP-DEV] Bug #14141: Fatal error: fatal flex scanner internal error--end of buffer missed in ...

2001-11-20 Thread rfontana . cs
From: [EMAIL PROTECTED] Operating system: SunOS 5.6 PHP version: 4.0.6 PHP Bug Type: iPlanet related Bug description: Fatal error: fatal flex scanner internal error--end of buffer missed in ... Hello, I am developing a website and when refreshing a screen or simply

[PHP-DEV] Bug #14046 Updated: segfaults due to curlopt not checking file handles are valid

2001-11-20 Thread sterling
ID: 14046 Updated by: sterling Reported By: [EMAIL PROTECTED] Old Status: Assigned Status: Closed Bug Type: cURL related Operating System: debian linux PHP Version: 4.0CVS-2001-11-13 Assigned To: sterling New Comment: RETURN_FALSE; is enough, since ZEND_FETCH_RESOURCE() will complain with an

[PHP-DEV] Bug #14142: curl_exec called twice crash

2001-11-20 Thread chassaing
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.1 PHP version: 4.1.0RC1 PHP Bug Type: Reproducible crash Bug description: curl_exec called twice crash When calling curl_exec twice with RETURNTRANSFER option there's a (reproductible) core dump. Here's a test case :

[PHP-DEV] Apache2 debugging

2001-11-20 Thread Teodor Cimpoesu
Hi, the README sais to set an environ var (or least I undestood so) in order to debug it, but actually you have to define it (using -D on command line) for it to work. The change would be: --- sapi/apache2filter/README.orig Tue Nov 20 13:39:56 2001 +++

[PHP-DEV] Bug #14142 Updated: curl_exec called twice crash

2001-11-20 Thread chassaing
ID: 14142 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Reproducible crash Operating System: FreeBSD 4.1 PHP Version: 4.1.0RC1 New Comment: Forgot the compile options : './configure' '--with-gd=/usr/home/domi4/src/gd-1.8.4' '--enable-exif'

[PHP-DEV] Bug #14143: Segmentation fun

2001-11-20 Thread teo
From: [EMAIL PROTECTED] Operating system: SuSE7.1 PHP version: 4.0CVS-2001-11-20 PHP Bug Type: Apache related Bug description: Segmentation fun related to #12691 Configuration: same as in #12691 except Apache is using prefork mpm. The request: GET /i.php/a

[PHP-DEV] Bug #13601 Updated: File download with Content-Length specified fails with IE5.5

2001-11-20 Thread adam
ID: 13601 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Apache related Operating System: Linux (Red Hat 7) PHP Version: 4.0.6 New Comment: As stated in my original submission, EITHER going through a proxy, OR simply dialling up through an ISP, you

[PHP-DEV] Bug #14144: ADO update function in PHP it fails when used with SQL Server 2000 UDT

2001-11-20 Thread andrew . stopford
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.6 PHP Bug Type: COM related Bug description: ADO update function in PHP it fails when used with SQL Server 2000 UDT Dear Sirs, When using Microsoft Active Data Objects in PHP I have come across a

[PHP-DEV] Bug #14145: configure fails with apache 2.0.28

2001-11-20 Thread webmaster
From: [EMAIL PROTECTED] Operating system: linux 2.2.14 PHP version: 4.0.6 PHP Bug Type: *Configuration Issues Bug description: configure fails with apache 2.0.28 Hello from Berlin. I try to build an apache with a static mod_php (on SuSE Linux 6.4 a 2.2.14 kernel) I use

[PHP-DEV] Bug #14144 Updated: ADO insert function in PHP fails when used with SQL Server 2000 UDT

2001-11-20 Thread andrew . stopford
ID: 14144 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Summary: ADO update function in PHP it fails when used with SQL Server 2000 UDT Status: Open Bug Type: COM related Operating System: Windows 2000 PHP Version: 4.0.6 New Comment: Apologies, summary changed to be more

[PHP-DEV] Bug #14144 Updated: ADO update function in PHP it fails when used with SQL Server 2000 UDT

2001-11-20 Thread derick
ID: 14144 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Assigned Bug Type: COM related Operating System: Windows 2000 PHP Version: 4.0.6 Old Assigned To: Assigned To: phanto New Comment: I'm assignment this to you Harald, as you worked on converting data types for

[PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-20 Thread Zak Greant
** Successfull Build ** SuSE 7.1 Linux linux 2.2.18 #1 Wed Jan 24 12:28:55 GMT 2001 i686 unknown ./configure \ --with-apxs=/usr/local/apache/bin/apxs \ --disable-short-tags \ --enable-calendar \ --enable-ftp \ --with-pgsql All applications on server seem to work as expected. -- Zak Greant

[PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-20 Thread Andy Woolley
Mac OS X Apache 1.3.20 Built fine, no problems. './configure' '--with-mysql' '--with-apache=../../apache_source/apache_1.3.20' '--enable-track-vars' '--enable-inline-optimization' '--disable-debug' ** Heres the output from run-tests ** X-Powered-By: PHP/4.1.0RC3 Content-type:

[PHP-DEV] Bug #14146: Compiles fine, but PHP binary and module just exit

2001-11-20 Thread ivo
From: [EMAIL PROTECTED] Operating system: AIX PHP version: 4.0.6 PHP Bug Type: *General Issues Bug description: Compiles fine, but PHP binary and module just exit Compiling PHP 4.0.6 under AIX with ./configure --prefix=/san/stst/ststivo --enable-cgi Will result in a

[PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC - FreeBSD 4.3

2001-11-20 Thread Andy Woolley
FreeBSD 4.3 - Apache 1.3.22 Built fine and phpinfo() works. './configure' '--with-mysql=/usr/local/mysql' '--with-apache=../apache_1.3.22/' '--enable-track-vars' '--enable-inline-optimization' '--disable-debug' '-- *** Here's the output from the tests *** X-Powered-By: PHP/4.1.0RC3

[PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC - Linux 2.4.2

2001-11-20 Thread Andy Woolley
Build was fine and all apps appear to be running well. RedHat Linux 2.4.2 running Apache 1.3.22 './configure' '--with-mysql=/usr/local/mysql' '--with-apache=../apache_1.3.22/' '--enable-track-vars' '--enable-inline-optimization' '--disable-debug' '--with-gd=/usr' '--enable-gd-native-ttf'

[PHP-DEV] Bug #14146 Updated: Compiles fine, but PHP binary and module just exit

2001-11-20 Thread derick
ID: 14146 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: *General Issues Operating System: AIX PHP Version: 4.0.6 New Comment: If AIX includes this feature, can you do something similar to 'strace php' in Linux? Derick Previous Comments:

[PHP-DEV] Bug #14146 Updated: Compiles fine, but PHP binary and module just exit

2001-11-20 Thread ivo
ID: 14146 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: *General Issues Operating System: AIX PHP Version: 4.0.6 New Comment: Oh, output of gdb php: GNU gdb 4.17 Copyright 1998 Free Software Foundation, Inc. GDB is free

Re: [PHP-DEV] 4.1.0 Final RC

2001-11-20 Thread Zak Greant
** Successfull CGI Build ** SuSE 7.1 Linux linux 2.2.18 #1 Wed Jan 24 12:28:55 GMT 2001 i686 unknown ./configure \ --enable-force-cgi-redirect \ --enable-discard-path \ --disable-short-tags \ --enable-calendar \ --enable-ftp \ --with-postgres -- Zak Greant PHP Quality Assurance Team

[PHP-DEV] Bug #14144 Updated: ADO update function in PHP it fails when used with SQL Server 2000 UDT

2001-11-20 Thread andrew . stopford
ID: 14144 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Assigned Status: Closed Bug Type: COM related Operating System: Windows 2000 PHP Version: 4.0.6 Old Assigned To: phanto Assigned To: New Comment: Dear Sirs, Bug resolved, found to be a slight glitch with

[PHP-DEV] Bug #14144 Updated: ADO update function in PHP it fails when used with SQL Server 2000 UDT

2001-11-20 Thread derick
ID: 14144 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: COM related Operating System: Windows 2000 PHP Version: 4.0.6 Assigned To: phanto New Comment: Not a PHP bug - Bogus Previous Comments:

[PHP-DEV] Bug #14030 Updated: sybase ct_init fails

2001-11-20 Thread bdv
ID: 14030 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Sybase-ct (ctlib) related Operating System: Solaris 8 PHP Version: 4.0.6 Previous Comments: [2001-11-12

[PHP-DEV] Bug #14030 Updated: sybase ct_init fails

2001-11-20 Thread bdv
ID: 14030 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Sybase-ct (ctlib) related Operating System: Solaris 8 PHP Version: 4.0.6 New Comment: The problem is fixed if you set LD_LIBRARY_PATH = $SYBASE/$SYBASE/lib Previous Comments:

Re: [PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-20 Thread Daniel Beulshausen
At 10:23 20.11.2001 +, James Moore wrote: James Moore wrote: It wont load for me.. might but my build or something else.. has anyone had it working on win32 yet?? AFAICS, there is no (working) workspace in the PHP_4_0_7 branch to build the sapi/Apache2Filter for Win32. I

[PHP-DEV] Bug #14147: symbol uncompress: referenced symbol not found

2001-11-20 Thread pkenyon
From: [EMAIL PROTECTED] Operating system: Solaris 8 sun4u PHP version: 4.0.6 PHP Bug Type: Dynamic loading Bug description: symbol uncompress: referenced symbol not found Compiling the latest stable PHP4 and Apache with gcc on a Solaris 8 box goes without a hitch, only to

Re: [PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-20 Thread James Moore
At 10:23 20.11.2001 +, James Moore wrote: James Moore wrote: It wont load for me.. might but my build or something else.. has anyone had it working on win32 yet?? AFAICS, there is no (working) workspace in the PHP_4_0_7 branch to build the sapi/Apache2Filter for

Re: [PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-20 Thread Daniel Beulshausen
At 13:40 20.11.2001 +, James Moore wrote: Ill have a look at the CVS version at some point then.. have you had it working under windows yet? I patched the 1.39 revision quite a lot so that cvs or 4.1.0? the cvs version should do just fine. it would load and began to get the input filter

[PHP-DEV] Bug #14148: utf8_encode seems to return a not-null-terminated string

2001-11-20 Thread jochen
From: [EMAIL PROTECTED] Operating system: Solaris 2.7 PHP version: 4.0.6 PHP Bug Type: *XML functions Bug description: utf8_encode seems to return a not-null-terminated string I'm using utf8_encode together with LDAP functions. E.g. filter: sn=müller (ü: german

[PHP-DEV] Bug #14118 Updated: Upload file more than 1 Mb doesn´t work

2001-11-20 Thread mlara
ID: 14118 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Unknown/Other Function Operating System: linux redhat 7.1 PHP Version: 4.0.4pl1 New Comment: My php.ini has track_errors = On but the script return the same error The page

[PHP-DEV] Bug #14149: Loses Track of Persistent Connections

2001-11-20 Thread craigawlin
From: [EMAIL PROTECTED] Operating system: Win2000 PHP version: 4.0.6 PHP Bug Type: MySQL related Bug description: Loses Track of Persistent Connections Running Apache 1.3.20 with php 4.0.6 MySQL 3.23.42nt running on the same machine. I have 2 accounts which pconnect to

[PHP-DEV] Bug #14146 Updated: Compiles fine, but PHP binary and module just exit

2001-11-20 Thread ivo
ID: 14146 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: *General Issues Operating System: AIX PHP Version: 4.0.6 New Comment: Additional note: PHP 3.0.18 does not have this problem, but all the older 4.x versions available on php.net (4.0.5, 4.0.4pl1)

[PHP-DEV] Bug #14147 Updated: symbol uncompress: referenced symbol not found

2001-11-20 Thread pkenyon
ID: 14147 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Dynamic loading Operating System: Solaris 8 sun4u PHP Version: 4.0.6 New Comment: Okay, so I just got this, but I don't know what it means yet. # ldd -d /usr/local/apache/libexec/libphp4.so

[PHP-DEV] Bug #14051 Updated: Invalid return in realpath if extra slash

2001-11-20 Thread g . noel
ID: 14051 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *Directory/Filesystem functions Operating System: Windows PHP Version: 4.0.6 New Comment: In my opinion it's not the same problem as bug #14049 !? Previous Comments:

Re: [PHP-DEV] Bug #14149: Loses Track of Persistent Connections

2001-11-20 Thread Prottoss
On Tuesday 20 November 2001 09:52, [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] Operating system: Win2000 PHP version: 4.0.6 PHP Bug Type: MySQL related Bug description: Loses Track of Persistent Connections Running Apache 1.3.20 with php 4.0.6 MySQL 3.23.42nt

[PHP-DEV] Bug #14149 Updated: Loses Track of Persistent Connections

2001-11-20 Thread sander
ID: 14149 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Duplicate Bug Type: MySQL related Operating System: Win2000 PHP Version: 4.0.6 New Comment: Dupe of 13589 Previous Comments: [2001-11-20

[PHP-DEV] Bug #12186 Updated: Dynamic Library support not available

2001-11-20 Thread sander
ID: 12186 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Dynamic loading Operating System: HP-UX 11.00 PHP Version: 4.0.4pl1 New Comment: No feedback. Closing. Previous Comments:

[PHP-DEV] Bug #13540 Updated: dbase_get_record_with_names: comma problem

2001-11-20 Thread sander
ID: 13540 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: dBase related Operating System: WinNT PHP Version: 4.0.6 New Comment: No feedback. Closing. Previous Comments:

[PHP-DEV] Bug #13816 Updated: Accessing a static HTML page crashes Apache

2001-11-20 Thread sander
ID: 13816 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Reproducible crash Operating System: Solaris 8 SPARC PHP Version: 4.0.6 New Comment: No feedback. Closing. Previous Comments:

[PHP-DEV] Bug #13869 Updated: Object are not correctly serialized

2001-11-20 Thread sander
ID: 13869 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Session related Operating System: Linux Red-Hat 7.1 PHP Version: 4.0.6 New Comment: No feedback. Closing. Previous Comments:

[PHP-DEV] Bug #13878 Updated: Page hangs on 3rd reload, using session_start, session_register, session_encode

2001-11-20 Thread sander
ID: 13878 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Session related Operating System: Linux porky.devel.redhat.com 2.2 PHP Version: 4.0.4pl1 New Comment: No feedback. Closing. Previous Comments:

[PHP-DEV] LDAP schema support

2001-11-20 Thread Kachalov Anton
Good day hi 2 all! I want to know, will you (LDAP developers) add schema support into ldap module ? PS. please email to me ([EMAIL PROTECTED] or [EMAIL PROTECTED]) if you can... Thnx Rgds, Anton -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] LDAP schema support

2001-11-20 Thread Stig Venaas
On Tue, Nov 20, 2001 at 07:01:08PM +0300, Kachalov Anton wrote: Good day hi 2 all! I want to know, will you (LDAP developers) add schema support into ldap module ? Maybe. I'm not quite sure what you are thinking of. Could you tell me what you have in mind? BTW I've started studying Russian

Re: [PHP-DEV] LDAP schema support

2001-11-20 Thread Kachalov Anton
On Tue, 20 Nov 2001 17:16:48 +0100 [EMAIL PROTECTED] (Stig Venaas) wrote: On Tue, Nov 20, 2001 at 07:01:08PM +0300, Kachalov Anton wrote: Good day hi 2 all! I want to know, will you (LDAP developers) add schema support into ldap module ? Maybe. I'm not quite sure what you are

[PHP-DEV] Bug #14148 Updated: utf8_encode seems to return a not-null-terminated string

2001-11-20 Thread venaas
ID: 14148 Updated by: venaas Reported By: [EMAIL PROTECTED] Status: Open Bug Type: *XML functions Operating System: Solaris 2.7 PHP Version: 4.0.6 New Comment: You're right, this was fixed in CVS in July. You might try 4.1 when it is released, or get the RC from

[PHP-DEV] Bug #14148 Updated: utf8_encode seems to return a not-null-terminated string

2001-11-20 Thread venaas
ID: 14148 Updated by: venaas Reported By: [EMAIL PROTECTED] Status: Open Bug Type: *XML functions Operating System: Solaris 2.7 PHP Version: 4.0.6 New Comment: You're right, this was fixed in CVS in July. You might try 4.1 when it is released, or get the RC from

[PHP-DEV] Bug #14148 Updated: utf8_encode seems to return a not-null-terminated string

2001-11-20 Thread venaas
ID: 14148 Updated by: venaas Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: *XML functions Operating System: Solaris 2.7 PHP Version: 4.0.6 Previous Comments: [2001-11-20 11:41:12] [EMAIL

[PHP-DEV] bug report update submitted twice

2001-11-20 Thread Stig Venaas
I updated bug #14148. It was submitted twice (the 3rd was because I forgot to change status). When I submitted, I got an error from Mozilla that the post data was expired or something, and then I guess it posted the data another time. Not sure where the problem lies. Stig -- PHP Development

[PHP-DEV] Bug #14151: Installed/Compiled Php4.0.6 with Oracle9i on Linux Red Hat7.2

2001-11-20 Thread liao4619
From: [EMAIL PROTECTED] Operating system: Linux Red Hat 7.2 PHP version: 4.0.6 PHP Bug Type: OCI8 related Bug description: Installed/Compiled Php4.0.6 with Oracle9i on Linux Red Hat7.2 I installed/compiled php4.0.6 with Oracle9i on RedHat 7.2 successfully. Following is the

[PHP-DEV] Bug #14147 Updated: symbol uncompress: referenced symbol not found

2001-11-20 Thread derick
ID: 14147 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Dynamic loading Operating System: Solaris 8 sun4u PHP Version: 4.0.6 New Comment: You should add --with-zlib, as the MySQL extension requires it. THis is fixed in newer versions, including the

[PHP-DEV] Bug #14149 Updated: Loses Track of Persistent Connections

2001-11-20 Thread derick
ID: 14149 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Duplicate Status: Closed Bug Type: MySQL related Operating System: Win2000 PHP Version: 4.0.6 New Comment: THis is not a bug, the MySLQ extneion will open a new connection if the _current apache child_ has no open

[PHP-DEV] Bug #14151 Updated: Installed/Compiled Php4.0.6 with Oracle9i on Linux Red Hat7.2

2001-11-20 Thread derick
ID: 14151 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: OCI8 related Operating System: Linux Red Hat 7.2 PHP Version: 4.0.6 New Comment: Check your httpd error_log and see if it has things like segmentation fault. If so, read on how to make a

[PHP-DEV] Bug #13589 Updated: Persistent connections stay open and accumulate

2001-11-20 Thread sander
ID: 13589 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: MySQL related Operating System: RedHat 7.1 PHP Version: 4.0.6 New Comment: This is what Derick said about this (in #14149): This is not a bug, the MySQL extension will open a new connection if

[PHP-DEV] Bug #14137 Updated: Request additional flag for mysql_connect

2001-11-20 Thread bate
ID: 14137 Updated by: bate Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: MySQL related Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: bool mysql_select_db (string database_name, resource [link_identifier])

[PHP-DEV] Bug #14137 Updated: Request additional flag for mysql_connect

2001-11-20 Thread bate
ID: 14137 Updated by: bate Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: MySQL related Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: Ups sorry wrong links. :) http://www.php.net/manual/en/ref.mysql.php

[PHP-DEV] Bug #13715 Updated: Cannot open 'multiple' database connections while running from shell

2001-11-20 Thread mfischer
ID: 13715 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: MySQL related Operating System: PHP Version: 4.0.5 New Comment: Please try the latest RC and see if the problem persists: http://www.php.net/~zeev/php-4.1.0RC3.tar.gz Feedback.

[PHP-DEV] Bug #13589 Updated: Persistent connections stay open and accumulate

2001-11-20 Thread derick
ID: 13589 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Open Bug Type: MySQL related Operating System: RedHat 7.1 PHP Version: 4.0.6 New Comment: However, this is something else. This need to be investigated first. Previous Comments:

[PHP-DEV] Bug #14145 Updated: configure fails with apache 2.0.28

2001-11-20 Thread webmaster
ID: 14145 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: *Configuration Issues Operating System: linux 2.2.14 PHP Version: 4.0.6 New Comment: i now use : --with-apxs2=... and php4-latest.tar.gz that works fine with 2.0.28

[PHP-DEV] Bug #14137 Updated: Request additional flag for mysql_connect

2001-11-20 Thread mfischer
ID: 14137 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Bogus Status: Open Bug Type: MySQL related Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: Not so fast .. This is definitely a problem when you try to connect to MySQL twice with the same

[PHP-DEV] Bug #14137 Updated: Request additional flag for mysql_connect

2001-11-20 Thread mfischer
ID: 14137 Updated by: mfischer Reported By: [EMAIL PROTECTED] Status: Open Bug Type: MySQL related Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: Mistake, should read ...you get the old link back... Previous Comments:

[PHP-DEV] Bug #14137 Updated: Request additional flag for mysql_connect

2001-11-20 Thread derick
ID: 14137 Updated by: derick Reported By: [EMAIL PROTECTED] Status: Open Old Bug Type: MySQL related Bug Type: Feature/Change Request Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: Marko, will you please read the bugreport with more care the next time? THis is a

[PHP-DEV] ext/imagick update

2001-11-20 Thread Christian Stocker
Hi I wrote further on my ImageMagick extension (still a lot missing), but most importantly i wrote some documentation. You can have a look at it at http://php.chregu.tv/imagick/ comments etc. always welcome. chregu -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail:

[PHP-DEV] Bug #14152: foreach() can create objects with blank property names

2001-11-20 Thread basil . hussain
From: [EMAIL PROTECTED] Operating system: Linux 2.2.16-enterprise PHP version: 4.0.5 PHP Bug Type: Class/Object related Bug description: foreach() can create objects with blank property names Using the following code (which someone may do accidentally): $myarray =

[PHP-DEV] GD-2.0.1 fixes?

2001-11-20 Thread Rasmus Lerdorf
Has anybody sat down and fixed some of the bugs in gd-2.0.1? The GD folks aren't being very responsive and it would be nice to get some of the annoying issues working. The top one on my list is the fact that TTF fonts are not anti-aliased on truecolor images. The tweencolor code is in

[PHP-DEV] Bug #13715 Updated: Cannot open 'multiple' database connections while running from shell

2001-11-20 Thread chuckc
ID: 13715 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: MySQL related Operating System: PHP Version: 4.0.5 New Comment: Upgraded to 4.1.0RC3. Did not fix the problem or change any of the symptoms. The Install was very smooth

[PHP-DEV] Bug #14137 Updated: Request additional flag for mysql_connect

2001-11-20 Thread lenar
ID: 14137 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: I just want to add that creating another mysql account is not an valid option sometimes (with

Re: [PHP-DEV] Bug #13715 Updated: Cannot open 'multiple' database connections while running from shell

2001-11-20 Thread Markus Fischer
Hmm .. just a stupid question: are you absolutely positive that the second username/password is correct? What output do you get from mysql_error() ? - Markus On Tue, Nov 20, 2001 at 06:38:15PM -, [EMAIL PROTECTED] wrote : ID: 13715 User updated by: [EMAIL PROTECTED]

[PHP-DEV] Bug #14136 Updated: Segfaults when forget xslt_free()

2001-11-20 Thread zeev
ID: 14136 Updated by: zeev Reported By: [EMAIL PROTECTED] Status: Critical Bug Type: Scripting Engine problem Operating System: Debian/Linux PHP Version: 4.0CVS-2001-11-20 New Comment: Doesn't look like a Zend problem to me. Apparently the table ends up containing the wrong entries (i.e., the

[PHP-DEV] Re: 4.1.0 Final RC

2001-11-20 Thread Harald Radi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 (a) RC a-la what we had until now. It will usually be in the range of weeks. i'd suggest a list where a branch is announced lets say a week before branching. i often have a few things lying around that should be in the next final but aren't

Re: [PHP-DEV] Where/what is gdImageStringFTEx() ?

2001-11-20 Thread Wez Furlong
It's part of my patch, due to be included in GD 2.0.2. Before masses of people ask me for the patch, please hassle boutell.com to release 2.0.2 first; they've had it for a very long time now! If you really really need it, drop me a mail. --Wez. On 17/11/01, Rasmus Lerdorf [EMAIL PROTECTED]

[PHP-DEV] Bug #14153: Servlet sapi native code problems

2001-11-20 Thread mark
From: [EMAIL PROTECTED] Operating system: linux (mdk-8.0) PHP version: 4.0CVS-2001-11-20 PHP Bug Type: Unknown/Other Function Bug description: Servlet sapi native code problems php configured --with-servlet and --with-java does not function acceptably. Running on tomcat4

Re: [PHP-DEV] ext/imagick update

2001-11-20 Thread Egon Schmid
From: Christian Stocker [EMAIL PROTECTED] I wrote further on my ImageMagick extension (still a lot missing), but most importantly i wrote some documentation. You can have a look at it at http://php.chregu.tv/imagick/ comments etc. always welcome. Looks good. Please commit it to phpdoc and

[PHP-DEV] Bug #14154: PHP won't compile on OSX 10.1

2001-11-20 Thread chibi15
From: [EMAIL PROTECTED] Operating system: Mac OS X (Darwin) 10.1.1 PHP version: 4.0.6 PHP Bug Type: Compile Failure Bug description: PHP won't compile on OSX 10.1 PHP won't compile on OSX 10.1 It reports an error - something with namespace. -- Edit bug report at:

[PHP-DEV] Bug #14154 Updated: PHP won't compile on OSX 10.1

2001-11-20 Thread mfischer
ID: 14154 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: Mac OS X (Darwin) 10.1.1 PHP Version: 4.0.6 New Comment: Can you please try the latest RC release and report back if it works ?

[PHP-DEV] Bug #14125 Updated: Intermittent failed class wrapper to DB

2001-11-20 Thread mfischer
ID: 14125 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: MySQL related Operating System: Suse Linux 6.2/MySQL 3.22.25 PHP Version: 4.0.6 New Comment: For a start, can you try if this still happens with the latest RC ?

[PHP-DEV] Bug #13940 Updated: mysql_select_db doesn't honor resource_identifier param

2001-11-20 Thread mfischer
ID: 13940 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: MySQL related Operating System: RedHat 7.1 PHP Version: 4.2.0-dev New Comment: This is basically a dup of #14137, bogusifying this one. Previous Comments:

[PHP-DEV] Bug #13681 Updated: Stale data across clustered webservers

2001-11-20 Thread mfischer
ID: 13681 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: MySQL related Operating System: Linux PHP Version: 4.0.5 New Comment: Very hard to reproduce if you understand what I mean .. Can you give it a try with latest RC?

[PHP-DEV] Bug #13480 Updated: Resources bug - dtors fails, hanging MySQL connections or hanging httpd

2001-11-20 Thread mfischer
ID: 13480 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: MySQL related Operating System: Redhat6.1 PHP Version: 4.0.6 New Comment: Can you try if this still happens with latest RC? http://www.php.net/~zeev/php-4.1.0RC3.tar.gz Feedback.

  1   2   >