[PHP-DEV] CVS Account Request: ludoo

2002-01-11 Thread Ludovico Magnocavallo
THE PEAR team told me to request an account to commit and maintain the LDAP DB class. Thanks -- 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

[PHP-DEV] Cause of segfault?

2002-01-11 Thread Yasuo Ohgaki
Anyone have any idea what could be the cause of this segfault? (gdb) bt #0 0x40009827 in _dl_lookup_versioned_symbol () at eval.c:88 #1 0x4000d4ad in fixup () at eval.c:88 #2 0x4000d680 in _dl_runtime_resolve () at eval.c:88 #3 0x0806852f in main () at eval.c:88 #4 0x400ce1be in

[PHP-DEV] Bug #14990: array_merge_recursive modifies inputted value

2002-01-11 Thread philip
From: [EMAIL PROTECTED] Operating system: n/a PHP version: 4.1.1 PHP Bug Type: Arrays related Bug description: array_merge_recursive modifies inputted value In Summary: -- array_merge_recursive() modifies the array entered as the second parameter if the merged

[PHP-DEV] Bug #14990 Updated: array_merge_recursive modifies inputted value

2002-01-11 Thread philip
ID: 14990 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Arrays related Operating System: n/a PHP Version: 4.1.1 New Comment: With 3+ parameters, only the first parameter is left untouched. All others are affected, as demonstrated above with $b.

[PHP-DEV] Bug #14991: ini_set scrambles output

2002-01-11 Thread fischer
From: [EMAIL PROTECTED] Operating system: Free BSD 4.4 PHP version: 4.1.1 PHP Bug Type: Scripting Engine problem Bug description: ini_set scrambles output The following Code shows some strange behaviour: table cellspacing=2 cellpadding=2 border=0 tr td

Re: [PHP-DEV] Re: Behaviour of $array1 + $array2

2002-01-11 Thread Philip Olson
Here's an example of related activities (4.1.1): ?php $a = array(4 = '4 a', 2 = '2 a', 'foo' = 'foo a'); $b = array(4 = '4 b', 1 = '1 b', 'foo' = 'foo b'); $c['plus'] = $a + $b; $c['merge']= array_merge($a,$b); $c['merge_recursive'] =

[PHP-DEV] Bug #14992: Behaviour of $array = $array1 + $array2; not documented

2002-01-11 Thread mfischer
From: [EMAIL PROTECTED] Operating system: PHP version: 4.1.1 PHP Bug Type: Documentation problem Bug description: Behaviour of $array = $array1 + $array2; not documented The behaviour of the following code doens't seem to be documented: ? $foo = array(27 = 'Ene');

Re: [PHP-DEV] Re: Behaviour of $array1 + $array2

2002-01-11 Thread Markus Fischer
I filled a bug report (doc problem) now. -- Please always Cc to me when replying to me on the lists. -- 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:

Re: [PHP-DEV] mkdir() , making 'mode' parameter optional

2002-01-11 Thread Andi Gutmans
Sounds fine to me. Andi At 10:41 PM 1/10/2002 +0100, Markus Fischer wrote: Is there someone who would object modifying mkdir() so it only needs the dirname to create and mode is optonal and defaults to 0777 ? bool mkdir(string pathname[, int mode = 0777]); There're no

Re: [PHP-DEV] mkdir() , making 'mode' parameter optional

2002-01-11 Thread Andi Gutmans
At 05:31 AM 1/11/2002 +0100, Markus Fischer wrote: On Fri, Jan 11, 2002 at 05:22:54AM +0100, Markus Fischer wrote : In any case - a hardcoded 0777 isn't logical, apart from being less safe. It makes totally sense because it only relies on the umask() being set. Well, maybe

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Hartmut Holzgraefe
Georg Richter wrote: is there (should be) a consistent way to pass or return a structure?! e.g.: a) Function mktime splits the structure in lot of parameters b) fstat returns a non assoc array c) dio_fstat (which seems to be identical to fstat) returns an assoc array assoc array IMHO

[PHP-DEV] Bug #14988 Updated: mysql_pconnect() and POST takes a lot of time

2002-01-11 Thread daniel . burckhardt
ID: 14988 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: MySQL related Operating System: w2k PHP Version: 4.1.1 Edit this bug report at http://bugs.php.net/?id=14988edit=1 -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail:

[PHP-DEV] Bug #14988 Updated: mysql_pconnect() and POST takes a lot of time

2002-01-11 Thread daniel . burckhardt
ID: 14988 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: MySQL related Operating System: w2k PHP Version: 4.1.1 New Comment: did some further checks - i have the same problem with the cgi-version and using older version (4.0.4) and when using

[PHP-DEV] Bug #13420 Updated: open_basedir breaks Apache SSI xbithack

2002-01-11 Thread N . Cole
ID: 13420 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Apache related Operating System: Linux mainserver2 2.4.4 PHP Version: 4.0.6 New Comment: This same bug strikes PHP 4.0.6 on Solaris 2.6. Our system runs PHP in safe

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Markus Fischer
On Fri, Jan 11, 2002 at 11:22:22AM +0100, Hartmut Holzgraefe wrote : Georg Richter wrote: is there (should be) a consistent way to pass or return a structure?! e.g.: a) Function mktime splits the structure in lot of parameters b) fstat returns a non assoc array c) dio_fstat (which

Re: [PHP-DEV] Bug #14978: session doesn't work

2002-01-11 Thread Hartmut Holzgraefe
[EMAIL PROTECTED] wrote: i can't use session, give me an error when use ie 6. Warning: Cannot send session cookie - headers already sent by (output started at /home/www.apollodisplays.com/public_html/mainpage.php:10) in /home/www.apollodisplays.com/public_html/mainpage.php on line 29 i

Re: [PHP-DEV] Bug #14978: session doesn't work

2002-01-11 Thread derick
On Fri, 11 Jan 2002, Hartmut Holzgraefe wrote: [EMAIL PROTECTED] wrote: i can't use session, give me an error when use ie 6. Warning: Cannot send session cookie - headers already sent by (output started at /home/www.apollodisplays.com/public_html/mainpage.php:10) in

[PHP-DEV] Bug #14993: PHP4.1.1 can't connect to SQL Server 7 SP3

2002-01-11 Thread quan
From: [EMAIL PROTECTED] Operating system: NT SP6 PHP version: 4.1.1 PHP Bug Type: MSSQL related Bug description: PHP4.1.1 can't connect to SQL Server 7 SP3 I previously have MSSQL7 with SP1 and PHP4.1.1 worked fine with it. Now I upgrade to SP3 and PHP4 won't connect to

[PHP-DEV] Bug #14993 Updated: PHP4.1.1 can't connect to SQL Server 7 SP3

2002-01-11 Thread mfischer
ID: 14993 Updated by: mfischer Old Summary: PHP4.1.1 can't connect to SQL Server 7 SP3 Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: MSSQL related Operating System: NT SP6 PHP Version: 4.1.1 New Comment: Please ask support questions at [EMAIL PROTECTED] Previous

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread hholzgra
ID: 14981 Updated by: hholzgra Old Summary: mail() function won't send mail to a domain containing '-' hyphens Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Mail related Operating System: Apache PHP Version: 4.1.0 New Comment: there finaly is an Apache OS now? great

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andi Gutmans
On Fri, 11 Jan 2002, Markus Fischer wrote: On Fri, Jan 11, 2002 at 11:22:22AM +0100, Hartmut Holzgraefe wrote : Georg Richter wrote: is there (should be) a consistent way to pass or return a structure?! e.g.: a) Function mktime splits the structure in lot of parameters b)

[PHP-DEV] Bug #12036 Updated: Error compiling if there is blank line before ?php

2002-01-11 Thread hholzgra
ID: 12036 Updated by: hholzgra Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *Compile Issues Operating System: Red Hat Linux 7 PHP Version: 4.0.4 New Comment: some simple rules when writing error reports: php can't process that code ? always include the error message! I'm not

[PHP-DEV] Bug #14994: Adding TIFF support to GetImageSize

2002-01-11 Thread wirtz
From: [EMAIL PROTECTED] Operating system: PHP version: 4.1.1 PHP Bug Type: Feature/Change Request Bug description: Adding TIFF support to GetImageSize I know, that Rasmus made the implementation for this function and that he used the header readouts from an imageinfo.c,

[PHP-DEV] safe_mode and file upload

2002-01-11 Thread Roland Tapken
Hi! I patched safe_mode.c to compare the uid of files not only to the uid of the php-script but also to the uid of the process itself. This allows php-scripts to handle files created by themselves or by the webserver (in my case: apache), for example uploaded files. i wasn't able to delete or

[PHP-DEV] Bug #14898 Updated: $HTTP_POST_FILES['uploadedfile']['name'] error

2002-01-11 Thread a1593
ID: 14898 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: linux slackware8 PHP Version: 4.1.1 New Comment: anyway, i hope this is the final post about this issue. -- s =

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Markus Fischer
On Fri, Jan 11, 2002 at 12:58:44PM +0200, Andi Gutmans wrote : On Fri, 11 Jan 2002, Markus Fischer wrote: On Fri, Jan 11, 2002 at 11:22:22AM +0100, Hartmut Holzgraefe wrote : Georg Richter wrote: is there (should be) a consistent way to pass or return a structure?! e.g.:

[PHP-DEV] Bug #14029 Updated: can't dynamically load php_printer.dll extension

2002-01-11 Thread wloske
ID: 14029 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Dynamic loading Operating System: win/2000 PHP Version: 4.0.6 New Comment: I have the same experiences for other dll's. While for instance zlib loads perfectly pdf

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andi Gutmans
On Fri, 11 Jan 2002, Markus Fischer wrote: What other way do we have to specify arbitray optional parameters without an ordering? Teh disadvantage of optional parmeters is when you need to only set the last one, you'll have to define all preceding optional parameters too. How

[PHP-DEV] Bug #14826 Updated: 4.1.0 on powerpc doesn't save session variables

2002-01-11 Thread teixi
ID: 14826 User updated by: [EMAIL PROTECTED] Old Summary: 4.1.0 on powerpc doesn't save session variables Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Session related Operating System: Debian Linux 2.2.19 ppc PHP Version: 4.1.0 New Comment: I'm sorry but my apache

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Hartmut Holzgraefe
Andi Gutmans wrote: ... it'll encourage passing parameters in hashes which is something we really wouldn't want. it is already common practice in userland so you are fighting a war that is already lost IMHO as soon as you have, say, more then five parameters things get confusing, especialy

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Hartmut Holzgraefe
Markus Fischer wrote: What other way do we have to specify arbitray optional parameters without an ordering? Teh disadvantage of optional parmeters is when you need to only set the last one, you'll have to define all preceding optional parameters too. well, the engine could

[PHP-DEV] Bug #14962 Updated: unable to load extension php_sablot.dll

2002-01-11 Thread reckert
ID: 14962 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Sablotron XSL Operating System: Windows 2000 PHP Version: 4.1.1 New Comment: Correct: I still used the php_sablot.dll instead of the new php_xslt.dll. Thanks. I was

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread andrew
ID: 14981 User updated by: [EMAIL PROTECTED] Old Summary: mail() function won't send mail to a domain containing '-' hyphens Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Mail related Operating System: Apache PHP Version: 4.1.0 Previous Comments:

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread andrew
ID: 14981 User updated by: [EMAIL PROTECTED] Old Summary: mail() function won't send mail to a domain containing '-' hyphens Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Mail related Old Operating System: Apache Operating System: Unix PHP Version: 4.1.0 Previous Comments:

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread derick
On Fri, 11 Jan 2002, Andi Gutmans wrote: On Fri, 11 Jan 2002, Markus Fischer wrote: What other way do we have to specify arbitray optional parameters without an ordering? Teh disadvantage of optional parmeters is when you need to only set the last one, you'll have to

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread andrew
ID: 14981 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Mail related Operating System: Unix PHP Version: 4.1.0 New Comment: I'm not running it, my ISP is. Anyway, excuse the error, it's on unix. Previous Comments:

RE: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Marc Boeren
make much sense to me. The current way suits fine, but maybe this should be allowed too (as Hartmut wrote): function (foo,,bar); Please don't! I cannot read code that looks like fn(foobar);, that is just a parameter-guessing-game! Then again, that probably means that fn() is badly

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Markus Fischer
On Fri, Jan 11, 2002 at 01:33:25PM +0100, Marc Boeren wrote : make much sense to me. The current way suits fine, but maybe this should be allowed too (as Hartmut wrote): function (foo,,bar); Please don't! I cannot read code that looks like fn(foobar);, that is just a

RE: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread derick
On Fri, 11 Jan 2002, Marc Boeren wrote: make much sense to me. The current way suits fine, but maybe this should be allowed too (as Hartmut wrote): function (foo,,bar); Please don't! I cannot read code that looks like fn(foobar);, that is just a parameter-guessing-game! Of

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread derick
On Fri, 11 Jan 2002, Markus Fischer wrote: On Fri, Jan 11, 2002 at 01:33:25PM +0100, Marc Boeren wrote : make much sense to me. The current way suits fine, but maybe this should be allowed too (as Hartmut wrote): function (foo,,bar); Please don't! I cannot read code that looks

RE: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Marc Boeren
[fn(foobar)] I agree on that. You really don't know which parameters it was anymore. You don't have this problem with hashes. But I already see this thread won't get us anywhere :) Well, I think everybody agrees that with hashes, functions are much easier to use...

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andi Gutmans
On Fri, 11 Jan 2002, Hartmut Holzgraefe wrote: Andi Gutmans wrote: ... it'll encourage passing parameters in hashes which is something we really wouldn't want. it is already common practice in userland so you are fighting a war that is already lost IMHO Facts say it's not lost

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Hartmut Holzgraefe
[EMAIL PROTECTED] wrote I cannot read code that looks like fn(foobar);, that is just a parameter-guessing-game! just that a feature may be misused can't be a reason against it IMHO Of course, that looks likes crap, but one parameter not specified is not a problem IMO. especialy

[PHP-DEV] Bug #14995: new SWFBitmap() produces Access Violation Error

2002-01-11 Thread reckert
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.1.1 PHP Bug Type: Ming related Bug description: new SWFBitmap() produces Access Violation Error The following php-Code produces an Access Violation Error at 78012DBF (in IIS5 using php4isapi.dll): ?

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread andrew
ID: 14981 User updated by: [EMAIL PROTECTED] Old Summary: mail() function won't send mail to a domain containing '-' hyphens Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Mail related Operating System: Unix PHP Version: 4.1.0 Previous Comments:

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread andrew
ID: 14981 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Mail related Operating System: Unix PHP Version: 4.1.0 New Comment: It's wrong to write this off as Bogus prematurely. It could still be the case that PHP has a problem with passing the correct

Re: [PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread Craig Morrison
[EMAIL PROTECTED] wrote: It's wrong to write this off as Bogus prematurely. It could still be the No, this is most definitely bogus. case that PHP has a problem with passing the correct information to PHP is passing the correct information. sendmail. It may be that PHP needs to

[PHP-DEV] Bug #14222 Updated: PHP Crashes with weird output often

2002-01-11 Thread jregnard
ID: 14222 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Apache related Operating System: Windows XP Pro PHP Version: 4.0.6 New Comment: I've a similar probleme with Apache 3.2.22, PHP 4.1.0 and mysql. I obtain a page

[PHP-DEV] Bug #14996: the full zip package is corrupt and won't unzip

2002-01-11 Thread pigeon388
From: [EMAIL PROTECTED] Operating system: winme PHP version: 4.1.1 PHP Bug Type: *General Issues Bug description: the full zip package is corrupt and won't unzip I have dl'd the 4.1.1 zip package for windows (full package) on 2 different internet connections and the package

[PHP-DEV] Bug #14981 Updated: mail() function won't send mail to a domain containing '-' hyphens

2002-01-11 Thread hholzgra
ID: 14981 Updated by: hholzgra Old Summary: mail() function won't send mail to a domain containing '-' hyphens Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Mail related Operating System: Unix PHP Version: 4.1.0 New Comment: it doesn't have to touch the '-' and it wont none of the

[PHP-DEV] Bug #14996 Updated: the full zip package is corrupt and won't unzip

2002-01-11 Thread mfischer
ID: 14996 Updated by: mfischer Old Summary: the full zip package is corrupt and won't unzip Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *General Issues Operating System: winme PHP Version: 4.1.1 New Comment: The package is ok. Previous Comments:

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andrey Hristov
I think was said by Thies Arntzen few months ago for PHP5. I saw that this is possible in Perl so asked on the dev forum for this functionality ...but Thies was the first. Regards, Andrey Hristov P.S. Zend2 weekly cronicle is a good thing but why the last issue is from Oct 31 2001? -

[PHP-DEV] Bug #14880 Updated: _SESSION will NOT automatically register it as a session variable

2002-01-11 Thread 247net
ID: 14880 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Session related Operating System: Debian 3.0 (Woody) PHP Version: 4.1.0 New Comment: Could you please post your configline? I get rid of most of the configline = same outcome '../configure'

Re: [PHP-DEV] DOM XML: xmlReplaceNode()

2002-01-11 Thread Jan Lehnardt
Hi, On Fri, 11 Jan 2002 00:57:52 +0100 Jaroslaw Kolakowski [EMAIL PROTECTED] wrote: What do you think about adding a function domxml_node_replace_node(), that would be a wrapper for xmlReplaceNode() function from libxml? As far as I am concerned, there is no easy way to replace a node using

[PHP-DEV] Bug #14937 Updated: Script timeouts at random places

2002-01-11 Thread CharlesK
ID: 14937 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Performance problem Operating System: Windows 2000 Server PHP Version: 4.1.0 New Comment: I will take a look at ADP. I have to find some time to set it up.

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andrei Zmievski
On Fri, 11 Jan 2002, Markus Fischer wrote: I'm for (+1) assoc return values. I think the code which is used to handle it is more verbose then ( $day = $assoc['day']; and not $day = $arr[0]; or whatever) and it also helps debugging because you can just do a print_r() on

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andrei Zmievski
On Fri, 11 Jan 2002, Hartmut Holzgraefe wrote: Andi Gutmans wrote: ... it'll encourage passing parameters in hashes which is something we really wouldn't want. it is already common practice in userland so you are fighting a war that is already lost IMHO as soon as you have, say,

[PHP-DEV] Bug #14996 Updated: the full zip package is corrupt and won't unzip

2002-01-11 Thread hholzgra
ID: 14996 Updated by: hholzgra Old Summary: the full zip package is corrupt and won't unzip Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *General Issues Operating System: winme PHP Version: 4.1.1 New Comment: did you fetch the package using ftp with ascii instead of binary mode?

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Darrell Brogdon
I thought ZE2 was going to have support for method overloading? Marc Boeren wrote: 7BE0F4A5D7AED2119B7500A0C94C58AC17ABFF@DELLSERVER"> [fn(foobar)] I agree on that. You really don't know which parameters itwas anymore.You don't have this problem with hashes.

[PHP-DEV] print()??

2002-01-11 Thread Andrey Hristov
Is print function or laguage construct? I know that echo is language construct and code like that $some=echo; $some(FUBAR); gives me an error The same with print. Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP-DEV] print()??

2002-01-11 Thread derick
On Fri, 11 Jan 2002, Andrey Hristov wrote: Is print function or laguage construct? I know that echo is language construct and code like that $some=echo; $some(FUBAR); gives me an error The same with print. Yup Derick -- PHP Development Mailing List http://www.php.net/ To

[PHP-DEV] Stealing php-bugs-web

2002-01-11 Thread Edin Kadribasic
PHP bug reporting system has become quite capable. I was wondering if it was OK to use it elsewhere (the source code is available in php-bugs-web)? If it is, could you please commit the sql script that creates the database, so I don't have to reverse engineer it from the code. Edin -- PHP

Re: [PHP-DEV] Bugreport?

2002-01-11 Thread Jan Lehnardt
Hi, On Fri, 11 Jan 2002 01:16:05 +0100 Mark [EMAIL PROTECTED] wrote: Seems like either a bug, or a sysadmin (me) who is an idiot because it's 1.14am. can you please open a bug report at bugs.php.net with detailed information on your environment Jan -- Q: Thank Jan? A:

[PHP-DEV] Bug #14652 Updated: 4.1.0 session_unregister segfaults on IIS/CGI

2002-01-11 Thread sander
ID: 14652 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Session related Operating System: NT PHP Version: 4.1.0 New Comment: No feedback. Closing. Previous Comments:

[PHP-DEV] Bug #14858 Updated: Lack of tmp directory causes crash on call to session_start()

2002-01-11 Thread sander
ID: 14858 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Analyzed Status: Duplicate Bug Type: Session related Operating System: Windows 2000 Pro PHP Version: 4.1.1 New Comment: This is a dupe of one of the critical bugs... I'm too lazy to find out which one ;) Previous Comments:

[PHP-DEV] Bug #14865 Updated: php4apache.dll - phpinfo error - winXP - Apache

2002-01-11 Thread sander
ID: 14865 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Apache related Operating System: Win XP Prof PHP Version: 4.1.1 New Comment: There was a problen with phpinfo in 4.1.x when the zlib-extension was enabled. That bug has been fixed, you can try

[PHP-DEV] Bug #14865 Updated: php4apache.dll - phpinfo error - winXP - Apache

2002-01-11 Thread xe
ID: 14865 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Apache related Operating System: Win XP Prof PHP Version: 4.1.1 New Comment: As for me - i don't have any extension except imapgd installed. Maybe something else?

[PHP-DEV] Bug #14865 Updated: php4apache.dll - phpinfo error - winXP - Apache

2002-01-11 Thread xe
ID: 14865 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Apache related Operating System: Win XP Prof PHP Version: 4.1.1 New Comment: This problem occurs only on WIN XP (Pro?) as an OS. Previous Comments:

Re: [PHP-DEV] Stealing php-bugs-web

2002-01-11 Thread Edin Kadribasic
If it is, could you please commit the sql script that creates the database, so I don't have to reverse engineer it from the code. http://cvs.php.net/co.php/php-bugs-web/bugs.sql I must be going blind. Well it is Friday afternoon here... Thanks, Edin -- PHP Development Mailing List

[PHP-DEV] Bug #14997 Updated: Multiple system calls cause inifinite process forking

2002-01-11 Thread hholzgra
ID: 14997 Updated by: hholzgra Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Program Execution Operating System: Linux PHP Version: 4.1.1 New Comment: are you talking about 'defunct' (aka zombie) processes? Previous Comments:

[PHP-DEV] Universe in 2002

2002-01-11 Thread David Eriksson
(Universe is a PHP extension that allows PHP to act as a CORBA client or server.) Hi! I just want to say that the latest snapshots of Universe works great and that I am currently cleaning up the code before submitting it to the PHP CVS repository. During this spring I will work on my Master

[PHP-DEV] Bug #14987 Updated: ereg_replace with \0

2002-01-11 Thread sander
ID: 14987 Updated by: sander Old Summary: ereg_replace with \0 Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Scripting Engine problem Operating System: Red Hat Linux PHP Version: 4.0.5 New Comment: The ereg-functions are NOT binary safe. RTM. Previous Comments:

[PHP-DEV] Bug #14983 Updated: mail function buffer overflow

2002-01-11 Thread sander
ID: 14983 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Reproducible crash Operating System: Windows 2000 PHP Version: 4.1.1 New Comment: It would be nice if you post a diff instead of the whole file... Previous Comments:

[PHP-DEV] Bug #14875 Updated: image_types() IMG_GIF report false incorrectly

2002-01-11 Thread sander
ID: 14875 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Duplicate Bug Type: GD related Operating System: Linux Mandrake 8.1 PHP Version: 4.1.1 New Comment: Dupe of 14899, which has more info so I'm closing this one. Previous Comments:

[PHP-DEV] Bug #14983 Updated: mail function buffer overflow

2002-01-11 Thread enricod
ID: 14983 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Reproducible crash Operating System: Windows 2000 PHP Version: 4.1.1 New Comment: Here is the diff. -Enrico --- sendmail-old.c Mon Sep 4 18:26:16 2000 +++ sendmail.c Thu Jan 10

[PHP-DEV] Bug #14998: Can't name a class 'Directory'

2002-01-11 Thread dan
From: [EMAIL PROTECTED] Operating system: Red Hat Linux 7.0 PHP version: 4.0.5 PHP Bug Type: Class/Object related Bug description: Can't name a class 'Directory' For example, given the code: ? class Directory { // CONSTRUCTOR function Directory($req_id =

[PHP-DEV] Bug #14999: apache_lookup_uri returning array for apache2 instead of object

2002-01-11 Thread pete
From: [EMAIL PROTECTED] Operating system: linux PHP version: 4.1.1 PHP Bug Type: Apache2 related Bug description: apache_lookup_uri returning array for apache2 instead of object this is simple: apache_lookup_uri is returning array on apache2 instead of object (as it is

[PHP-DEV] Bug #15000: gd1.3 : gdImageColorResolve : reference symbol not found

2002-01-11 Thread jmgseb
From: [EMAIL PROTECTED] Operating system: Solaris PHP version: 4.1.1 PHP Bug Type: Apache related Bug description: gd1.3 : gdImageColorResolve : reference symbol not found Every thing works fine with php 4.0.6 but not with the 4.1.1. When starting apache 1.3.22 I've got

[PHP-DEV] Bug #6982 Updated: disable_functions option don't works in Apache config

2002-01-11 Thread charmaine . tian
ID: 6982 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Operating System: Linux 2.2.16 PHP Version: 4.0.2 New Comment: I tried php-4.1.0 on Linux and still have the bug. I don't agree it's intended

[PHP-DEV] Bug #14998 Updated: Can't name a class 'Directory'

2002-01-11 Thread jan
ID: 14998 Updated by: jan Old Summary: Can't name a class 'Directory' Reported By: [EMAIL PROTECTED] Status: Open Old Bug Type: Class/Object related Bug Type: Documentation problem Operating System: Red Hat Linux 7.0 PHP Version: 4.0.5 New Comment: See

[PHP-DEV] Bug #15001: PHP_SELF set incorrectly when there is extra path info

2002-01-11 Thread long
From: [EMAIL PROTECTED] Operating system: Compaq Tru64 4.0F PK3 PHP version: 4.0.6 PHP Bug Type: Variables related Bug description: PHP_SELF set incorrectly when there is extra path info The PHP_SELF variable is not set correctly when extra path info is appended to the URL

[PHP-DEV] Bug #6982 Updated: disable_functions option don't works in Apache config

2002-01-11 Thread rasmus
ID: 6982 Updated by: rasmus Old Summary: disable_functions option don't works in Apache config Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Operating System: Linux 2.2.16 PHP Version: 4.0.2 New Comment: Due to the current internal architecture it would be a

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Zeev Suraski
At 04:36 PM 1/11/2002, Darrell Brogdon wrote: I thought ZE2 was going to have support for method overloading? Nope, it's not planned... Zeev -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP-DEV] Bug #15001 Updated: PHP_SELF set incorrectly when there is extra path info

2002-01-11 Thread sander
ID: 15001 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Duplicate Bug Type: Variables related Operating System: Compaq Tru64 4.0F PK3 PHP Version: 4.0.6 New Comment: This is a dupe... and I'm again too lazy to search for the original bug ;) Anyway, it's known

[PHP-DEV] snaps.php.net ???

2002-01-11 Thread benjamin yates
snaps.php.net is redirecting to www.php.net ... is it gone? anyone know? -benjamin -- 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

Re: [PHP-DEV] snaps.php.net ???

2002-01-11 Thread Zeev Suraski
We moved our server - and this wasn't set-up properly just yet. It'll be back... At 10:25 PM 1/11/2002, benjamin yates wrote: snaps.php.net is redirecting to www.php.net ... is it gone? anyone know? -benjamin -- PHP Development Mailing List http://www.php.net/ To unsubscribe,

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Darrell Brogdon
I think it would be a handy feature if someone got the urge to add it to the spec. :) (hint.. hint...) Zeev Suraski wrote: At 04:36 PM 1/11/2002, Darrell Brogdon wrote: I thought ZE2 was going to have support for method overloading? Nope, it's not planned... Zeev -- Darrell

[PHP-DEV] Bug #7515 Updated: very weird, magic, invisible referencing

2002-01-11 Thread bryce
ID: 7515 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Assigned Bug Type: Scripting Engine problem Operating System: linux + win2k PHP Version: 4.0 Latest CVS (28/10/2000) Assigned To: andre New Comment: I'm looking at putting php 4.1.1

[PHP-DEV] Bug #15002: apache CRASHES on duplicate cookie and session_var

2002-01-11 Thread lazybutt666
From: [EMAIL PROTECTED] Operating system: win2k PHP version: 4.1.1 PHP Bug Type: *General Issues Bug description: apache CRASHES on duplicate cookie and session_var the following code will crash apache(1.3.22 with php 4.1.1 running as a module on Win2K Hebrew Enabaled) ?

[PHP-DEV] Bug #15002 Updated: apache CRASHES on duplicate cookie and session_var

2002-01-11 Thread lazybutt666
ID: 15002 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Old Bug Type: *General Issues Bug Type: Session related Operating System: win2k PHP Version: 4.1.1 Edit this bug report at http://bugs.php.net/?id=15002edit=1 -- PHP Development Mailing List

[PHP-DEV] Bug #5653 Updated: PIKE specific: with setcookie(), only the last cookie is written

2002-01-11 Thread lobbin
ID: 5653 Updated by: lobbin Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Other web server Operating System: Linux PHP Version: 4.0.5 New Comment: Can this be reproduced with the PHP 4.1.1, and perhaps the latest roxen/pike? Previous Comments:

[PHP-DEV] Bug #6617 Updated: JVM starts only on 3 requests per httpd

2002-01-11 Thread lobbin
ID: 6617 Updated by: lobbin Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Java related Operating System: LinuxPPC 2000 PHP Version: 4.0.4pl1 New Comment: How does this behave under PHP 4.1.1? Previous Comments:

[PHP-DEV] Bug #7306 Updated: segfault when binding undefined php variable with a BLOB hostvar

2002-01-11 Thread lobbin
ID: 7306 Updated by: lobbin Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: OCI8 related Operating System: linux-glibc21, OCI 8.1.5.0.0 PHP Version: 4.0 Latest CVS (18/10/2000) New Comment: Can you reproduce this with latest PHP 4.1.1? Previous Comments:

[PHP-DEV] Bug #7847 Updated: OCI8 support with Oracle 8.1.5 doesn't work

2002-01-11 Thread lobbin
ID: 7847 Updated by: lobbin Old Summary: OCI8 support with Oracle 8.1.5 doesn't work Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: OCI8 related Operating System: AIX 4.2 PHP Version: 4.0.3pl1 New Comment: Can you reproduce this with PHP 4.1.1? Previous Comments:

[PHP-DEV] Bug #14996 Updated: the full zip package is corrupt and won't unzip

2002-01-11 Thread pigeon388
ID: 14996 Comment by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *General Issues Operating System: winme PHP Version: 4.1.1 New Comment: No it was downloaded with the standard windows downloader (http://www.php.net/do_download.php?download_file=php-4.1.1-Win32.zip

[PHP-DEV] Bug #8142 Updated: on exit() from method, interbase makes a mess with transaction ids

2002-01-11 Thread lobbin
ID: 8142 Updated by: lobbin Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: InterBase related Operating System: Linux 2.2.17 PHP Version: 4.0.3pl1 New Comment: Do you still experience this problem on PHP 4.1.1? Previous Comments:

[PHP-DEV] Bug #8227 Updated: odbc_field_name don't get tab1.field tab2.field back

2002-01-11 Thread lobbin
ID: 8227 Updated by: lobbin Old Summary: odbc_field_name don't get tab1.field tab2.field back Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: ODBC related Operating System: WinNT PHP Version: 4.0.3pl1 New Comment: Can you reproduce this with PHP 4.1.1? Previous

[PHP-DEV] Bug #8313 Updated: the sysbase type float(15) is handled incorrectly

2002-01-11 Thread lobbin
ID: 8313 Updated by: lobbin Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Sybase-ct (ctlib) related Operating System: Solaris 7 PHP Version: 4.0.3pl1 New Comment: Does this happen on 4.1.1? Previous Comments:

[PHP-DEV] Bug #8314 Updated: Setting the error_log = syslog does not work on Win2k

2002-01-11 Thread lobbin
ID: 8314 Updated by: lobbin Reported By: [EMAIL PROTECTED] Status: Open Bug Type: PHP options/info functions Operating System: Win2k pro PHP Version: 4.0.3pl1 New Comment: Any news on this? Previous Comments: [2001-01-08

[PHP-DEV] Bug #8459 Updated: PHP's crash JVM after a few requests

2002-01-11 Thread lobbin
ID: 8459 Updated by: lobbin Old Summary: PHP's crash JVM after a few requests Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Java related Operating System: Windows NT 4.0 Workstation, SP6a PHP Version: 4.0.4 New Comment: Can you produce this error on 4.1.1? Previous

  1   2   >