Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Walter Franzini
Stanislav Malyshev [EMAIL PROTECTED] writes: JG I disagree with this patch. The scenario of not being able to JG allocate memory is a fatal error, and the only appropriate JG response for php is to exit. If you need other behavior use JG pemalloc( which calls malloc if set persistant ).

[PHP-DEV] Bug #13016: what is the output from preg_replace(/a/, '$1','a')

2001-08-29 Thread dour
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.3-STABLE PHP version: 4.0.6 PHP Bug Type: *Regular Expressions Bug description: what is the output from preg_replace(/a/, '$1','a') What is the output from exit(preg_replace(/a/, '$1','a')); '$1' or ''? I want it is

[PHP-DEV] Re: Bug #12990 Updated: Problems with system/exec after upgrade

2001-08-29 Thread Daniel Olsson
system(); doesn´t return anything and PHP was recompiled during the upgrade. Can it be that some path has changed? /Daniel O At 09:53 2001-08-28 +, you wrote: ID: 12990 Updated by: lyric Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Program Execution Operating System:

[PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Rasmus Lerdorf
Mostly a Zend question I guess, but I am playing with having PHP handle other phases of the Apache request_rec and currently have working code that lets a PHP script get run during the uri translation hook. This is a nice one to start with because it can really open up some cool things that can

[PHP-DEV] Bug #13016 Updated: what is the output from preg_replace(/a/, '$1','a')

2001-08-29 Thread mathieu
ID: 13016 Updated by: mathieu Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: *Regular Expressions Operating System: FreeBSD 4.3-STABLE PHP Version: 4.0.6 New Comment: No, not a bug - you didn't group anything so $1 would be empty. Please consult a support forum.

[PHP-DEV] Bug #12997 Updated: readfile() does not work fine with 'if' and case clauses

2001-08-29 Thread com§
ID: 12997 User updated by: [EMAIL PROTECTED]§ Reported By: [EMAIL PROTECTED]§ Status: Bogus Bug Type: Filesystem function related Operating System: apache PHP Version: 4.0.4pl1 New Comment: I was not careful when I wrote this bug and I forgot the quotes from the example... As a matter of fact,

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Zeev Suraski
There's a big difference between an undefined behavior which may result in a crash, and an organized shutdown. The former is dangerous, the latter is not. There are some parts of code that don't rely on this, from the times when it wasn't true, but it doesn't cause any problem, so there's no

Re: [PHP-DEV] String search

2001-08-29 Thread Stig Sæther Bakken
[Bob Irwin [EMAIL PROTECTED]] G'day, This is a probably an easy one. How would one identify predefined characters in a string? For example, I have the string, 'bob@pnc. com.au' If I had the space on my 'illegal characters list', how would I go about having the script identify it?

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Stig Sæther Bakken
[Rasmus Lerdorf [EMAIL PROTECTED]] Mostly a Zend question I guess, but I am playing with having PHP handle other phases of the Apache request_rec and currently have working code that lets a PHP script get run during the uri translation hook. This is a nice one to start with because it can

[PHP-DEV] Bug #13017: mb_strimwidth() - null character in result

2001-08-29 Thread tsukada
From: [EMAIL PROTECTED] Operating system: Redhat 7.1 PHP version: 4.0CVS-2001-08-29 PHP Bug Type: Unknown/Other Function Bug description: mb_strimwidth() - null character in result In some case, mb_strimwidth() add null character to tail of result. Script: ?php

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Rasmus Lerdorf
I don't see a way to currently do such a return and get at the returned value after the call to zend_execute_scripts(). Any suggestions? Print a header and catch it from the Apache module, or use apache_note()? Yeah, I considered apache_note() but it seemed a rather roundabout approach.

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Zeev Suraski
We could improve zend_execute_scripts() to take an optional zval * to hold the return value, it's already quite ready for this kind of thing. At 10:00 29-08-01, Rasmus Lerdorf wrote: Mostly a Zend question I guess, but I am playing with having PHP handle other phases of the Apache request_rec

[PHP-DEV] Bug #13018: -Bstatic compile time option ignored

2001-08-29 Thread jewa
From: [EMAIL PROTECTED] Operating system: Solaris 2.7 PHP version: 4.0.6 PHP Bug Type: *Compile Issues Bug description: -Bstatic compile time option ignored Hi, I compiled 4.0.6 with SUNWspro 4.0 cc compiler and the following options: export CC=/opt/SUNWspro/bin/cc

[PHP-DEV] Sv: SINGLE variable type in ActiveX call

2001-08-29 Thread Lars Nielsen
Hi, Just wanted to let y'all know that I found a work-around to my problem. An alternative object method used VARIANT parameters, and with the newly VARIANT support in PHP I got it up and running. :-D Lars Nielsen --- Lars Nielsen [EMAIL PROTECTED] skrev i en nyhedsmeddelelse:[EMAIL PROTECTED]

[PHP-DEV] Re: Bug #12999 Updated: configure with sablotron support

2001-08-29 Thread -TFA- Cybernetwork - Gate Unit - Unividuum
i forgot to enter a password, so i reply to this mail. i think the last lines of config.log should be a hint: /usr/local/lib/libsablot.so: undefined reference to `operator new[](unsigned)' /usr/local/lib/libsablot.so: undefined reference to `__cxa_call_unexpected' /usr/local/lib/libsablot.so:

[PHP-DEV] Bug #13019: compile time option-R/opt/mysql/lib/mysql ignored

2001-08-29 Thread jewa
From: [EMAIL PROTECTED] Operating system: Solaris 2.7 PHP version: 4.0.6 PHP Bug Type: *Compile Issues Bug description: compile time option-R/opt/mysql/lib/mysql ignored Hi, I compiled 4.0.6 with SUNWspro 4.0 cc compiler and the following options: export

[PHP-DEV] Re: Bug #9805 Updated: ob_start(my_gzhandler1); - not worked

2001-08-29 Thread Vadim Tkachenko
In 4.0.7RC1 it not worked too. [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... ID: 9805 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Output Control Operating System: RedHat 6.1 PHP Version: 4.0 Latest CVS

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Walter Franzini
Zeev Suraski [EMAIL PROTECTED] writes: There's a big difference between an undefined behavior which may result in a crash, and an organized shutdown. The former is dangerous, the latter is not. [Sorry poor English follows] I agree, but *who* is in charge to decide *what* an organized

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Stanislav Malyshev
WF Changing emalloc to return NULLs does not modify the program WF behaviour: you (probably) receive a SIGSEGV from the emalloc WF caller and the execution terminate. I can't see a big Making such assumptions is a good way to security holes and obscure bugs. -- Stanislav Malyshev, Zend

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Walter Franzini
Stanislav Malyshev [EMAIL PROTECTED] writes: [...] WF I faced this problem using odbc with Solid. SQLColAttributes can WF return very big number (2147483647) when you ask for WF SQL_COLUMN_DISPLAY_SIZE of a LONG VARCHAR and obviously my computer WF does not have enough virtual memory. It

[PHP-DEV] Bug #13020: Error when reading data from Interbase 6 database

2001-08-29 Thread lpap
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.6 PHP Bug Type: Reproducible crash Bug description: Error when reading data from Interbase 6 database Hi there, thanks for reading this. I am running php4.0.6 under windows 2000, apache 1.3.x and as

[PHP-DEV] Bug #13021: ip2long erroneous in actually creating a long

2001-08-29 Thread dido
From: [EMAIL PROTECTED] Operating system: Linux 2.2.17 PHP version: 4.0.6 PHP Bug Type: Network related Bug description: ip2long erroneous in actually creating a long Actually the given example of 'equivalent' URLs will return in: The following URLs are equivalent:

[PHP-DEV] Bug #13022: oracle 9i and --with-oci8

2001-08-29 Thread jewa
From: [EMAIL PROTECTED] Operating system: Solaris 2.7 PHP version: 4.0.6 PHP Bug Type: Oracle related Bug description: oracle 9i and --with-oci8 export CC=/opt/SUNWspro/bin/cc export ORACLE_HOME=/u01/app/oracle/product/9.0.1 ./configure --prefix=/opt/php

[PHP-DEV] Bug #13017 Updated: mb_strimwidth() - null character in result

2001-08-29 Thread wez
ID: 13017 Updated by: wez Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Unknown/Other Function Operating System: Redhat 7.1 PHP Version: 4.0CVS-2001-08-29 New Comment: Fixed in CVS - thanks for the patch. --Wez. Previous Comments:

[PHP-DEV] Bug #12895 Updated: mysql_fetch_row

2001-08-29 Thread lampa
ID: 12895 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: MySQL related Operating System: Debian 2.2 PHP Version: 4.0.6 New Comment: ohh sorry, should be mysql_fetch_array, sorry for mistake Previous Comments:

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Walter Franzini
Zeev Suraski [EMAIL PROTECTED] writes: At 12:38 29-08-01, Walter Franzini wrote: Stanislav Malyshev [EMAIL PROTECTED] writes: [...] WF I faced this problem using odbc with Solid. SQLColAttributes can WF return very big number (2147483647) when you ask for WF SQL_COLUMN_DISPLAY_SIZE of

[PHP-DEV] Bug #13023: symbol ap_block_alarms: referenced symbol not found

2001-08-29 Thread zaino
From: [EMAIL PROTECTED] Operating system: Solaris 8 sparc 20 PHP version: 4.0.6 PHP Bug Type: Dynamic loading Bug description: symbol ap_block_alarms: referenced symbol not found The error is: /local/httpd/bin/apachectl configtest Syntax error on line 206 of

[PHP-DEV] Bug #13024: Problems with PHP on Apache .. when loading php script a few times Apache crash

2001-08-29 Thread j_barrancos
From: [EMAIL PROTECTED] Operating system: Linux Redhat PHP version: 4.0.4pl1 PHP Bug Type: Apache related Bug description: Problems with PHP on Apache .. when loading php script a few times Apache crash Hello, I've got a good working script .. it works good and it outputs

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Zeev Suraski
At 14:57 29-08-01, Walter Franzini wrote: From the extension (the user of kernel services) pov I must disagree. But obviusly I'missing something :-) I don't see why there's a difference. There may be a point in giving extension developers an _ex way to try and allocate memory, and fail

[PHP-DEV] Bug #13025: Unknown list entry type in request shutdown with create_comment()

2001-08-29 Thread chregu
From: [EMAIL PROTECTED] Operating system: Linux Debian/unstable PHP version: 4.0CVS-2001-08-29 PHP Bug Type: DOM XML related Bug description: Unknown list entry type in request shutdown with create_comment() Hi I'm again not sure, if this is really a bug, or if the

[PHP-DEV] Bug #13026: if...then...else problem

2001-08-29 Thread k_oss30
From: [EMAIL PROTECTED] Operating system: Red Hat Linux 7.0 PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: if...then...else problem hi! i noticed a problem with nested if...then...else s Example: if ($A==1): if ($B==2) DoThis(); if

[PHP-DEV] Bug #13026 Updated: if...then...else problem

2001-08-29 Thread derick
ID: 13026 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Unknown/Other Function Operating System: Red Hat Linux 7.0 PHP Version: 4.0.6 New Comment: It's not really a bug, but a side-effect of the old syntax. The new one, with { } does not have this

[PHP-DEV] Bug #13027: Bug still not fixed?

2001-08-29 Thread schepers
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.2 PHP version: 4.0.5 PHP Bug Type: Compile Failure Bug description: Bug still not fixed? http://www.php.net/bugs.php?id=10170 Hello, this problem still exists in 4.0.5 or 4.0.6 getting from the FreeBSD

[PHP-DEV] Bug #13028: bug with empty Class Constructors

2001-08-29 Thread 40334233
From: [EMAIL PROTECTED] Operating system: Win2000 PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: bug with empty Class Constructors I have had problems instanciating classes that have empty constructors defined. (PHP 4.05, win2000) if a class has

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Andrei Zmievski
On Wed, 29 Aug 2001, Zeev Suraski wrote: We could improve zend_execute_scripts() to take an optional zval * to hold the return value, it's already quite ready for this kind of thing. Good idea. -Andrei * If it's never finished, you can't prove it doesn't work. * -- PHP Development Mailing

[PHP-DEV] Bug #13029: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
From: [EMAIL PROTECTED] Operating system: Windows 2000 professional PHP version: 4.0.4pl1 PHP Bug Type: Reproducible crash Bug description: Crash when uploading file whose size is 9 MB I don't manage to upload file whose size is greater than 9MB, I get a connection aborted

[PHP-DEV] Bug #13024 Updated: Problems with PHP on Apache .. when loading php script a few times Apache crash

2001-08-29 Thread sniper
ID: 13024 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Apache related Operating System: Linux Redhat PHP Version: 4.0.4pl1 New Comment: Try first using more recent version of PHP, like 4.0.6. Then next time you get problems, first READ the mailing

[PHP-DEV] Bug #13027 Updated: Bug still not fixed?

2001-08-29 Thread sniper
ID: 13027 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: FreeBSD 4.2 PHP Version: 4.0.5 New Comment: Well, what exactly doesn't work? What errors do you get? What was the configure line used? --Jani Previous

[PHP-DEV] Bug #13023 Updated: symbol ap_block_alarms: referenced symbol not found

2001-08-29 Thread sniper
ID: 13023 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Old Bug Type: Dynamic loading Bug Type: Apache related Operating System: Solaris 8 sparc 20 PHP Version: 4.0.6 New Comment: Try this configure line for Apache: ./configure --enable-shared=max

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread sniper
ID: 13029 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Old Bug Type: Reproducible crash Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: Are you sure the script isn't getting a timeout? ie. try putting

[PHP-DEV] Bug #13022 Updated: oracle 9i and --with-oci8

2001-08-29 Thread sniper
ID: 13022 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Old Bug Type: Oracle related Bug Type: OCI8 related Operating System: Solaris 2.7 PHP Version: 4.0.6 New Comment: This is fixed in CVS. Try a snapshot: http://snaps.php.net/ Previous Comments:

[PHP-DEV] Bug #13018 Updated: -Bstatic compile time option ignored

2001-08-29 Thread sniper
ID: 13018 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *Compile Issues Operating System: Solaris 2.7 PHP Version: 4.0.6 New Comment: .so is NOT static library. Anyway, libtool uses the shared one if it finds it. Previous Comments:

[PHP-DEV] Bug #13013 Updated: libphp4.so: undefined symbol: zendtext

2001-08-29 Thread sniper
ID: 13013 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Apache related Operating System: FreeBSD 4.2-RELEASE PHP Version: 4.0.6 New Comment: Does this happen with latest CVS snapshot: http://snaps.php.net/ Previous Comments:

[PHP-DEV] Bug #13030: Periodic inability to connect to database, ORA-24327

2001-08-29 Thread james . mcininch
From: [EMAIL PROTECTED] Operating system: Solaris 7 PHP version: 4.0.6 PHP Bug Type: OCI8 related Bug description: Periodic inability to connect to database, ORA-24327 Scripts that access oracle frequently fail to connect, generating the error OCISessionBegin: ORA-24327:

[PHP-DEV] Re: Bug #13018 Updated: -Bstatic compile time option ignored

2001-08-29 Thread Jens-Uwe Walther
You are right I have to write: So I want to include the static mysql library libmysqlclient.a ... But if it is not possible to use the static library because of libtool behaviour at least Bug: #13019: compile time option-R/opt/mysql/lib/mysql should be fixed. It belongs to a similiar issue -

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: --- Are you sure the script isn't getting a timeout? ie. try putting

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: --- Are you sure the script isn't getting a timeout? ie. try putting set_time_limit(0); in beginning of

[PHP-DEV] Bug #13031: Segmentation Fault core dump on apache start

2001-08-29 Thread jasonk
From: [EMAIL PROTECTED] Operating system: Aix 4.3.3 PHP version: 4.0.6 PHP Bug Type: Apache related Bug description: Segmentation Fault core dump on apache start tried installing PHP-4.0.6 on anr rs/6000 with aix 4.3.3 using gcc 2.95.3. I have apache 1.3.20 installed

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread sniper
ID: 13029 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: What is the post_max_size in your php.ini? Previous Comments:

[PHP-DEV] Bug #13031 Updated: Segmentation Fault core dump on apache start

2001-08-29 Thread sniper
ID: 13031 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Apache related Operating System: Aix 4.3.3 PHP Version: 4.0.6 New Comment: Does this happen with latest CVS snapshot: http://snaps.php.net/ Previous Comments:

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: --- Are you sure the script isn't getting a timeout? ie. try putting

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: post_max_size is 180M Previous Comments:

[PHP-DEV] Bug #13027 Updated: Bug still not fixed?

2001-08-29 Thread schepers
ID: 13027 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Compile Failure Operating System: FreeBSD 4.2 PHP Version: 4.0.5 New Comment: make --with=apxs=/usr/sbin/apxs --with-fdftk checking for fdftk support... yes checking for

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: post_max_size is 180M Previous Comments:

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: I don't know mhy my posts are duplicated; i posted them once. Previous Comments:

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: I don't know mhy my posts are duplicated; i posted them once. Previous Comments:

[PHP-DEV] Bug #13032: Using IMAP support with PHP Header file missing

2001-08-29 Thread jan . suchanek
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: Using IMAP support with PHP Header file missing Hello! I want to use php 4.0.6 in order to run horde/imp. Therefor I need imap support. I include

[PHP-DEV] Bug #13029 Updated: Crash when uploading file whose size is 9 MB

2001-08-29 Thread eugenio
ID: 13029 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Windows 2000 professional PHP Version: 4.0.4pl1 New Comment: I don't know mhy my posts are duplicated; i posted them once. Previous Comments:

[PHP-DEV] Bug #13033: egmentation Fault core dump on apache start

2001-08-29 Thread jasonk
From: [EMAIL PROTECTED] Operating system: aix 4.3.3 PHP version: 4.0.6 PHP Bug Type: Apache related Bug description: egmentation Fault core dump on apache start sorry didn't put password on bud 13031 so got to repeat to update [2001-08-29 09:50:49] [EMAIL PROTECTED]

[PHP-DEV] Bug #13027 Updated: Bug still not fixed?

2001-08-29 Thread schepers
ID: 13027 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: FreeBSD 4.2 PHP Version: 4.0.5 New Comment: make --with=apxs=/usr/sbin/apxs --with-fdftk checking for fdftk support... yes checking for fdftk in default

[PHP-DEV] Bug #13005 Updated: with-fdftk option not allowing configure to complete

2001-08-29 Thread sniper
ID: 13005 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: FDF related Operating System: solaris PHP Version: 4.0.6 New Comment: User error: By installing gcc and binutils I realized that I had a corrupted libFdfTk.so file. I downloaded the FDF

[PHP-DEV] Bug #12895 Updated: mysql_fetch_row

2001-08-29 Thread cynic
ID: 12895 Updated by: cynic Reported By: [EMAIL PROTECTED] Old Status: Bogus Status: Open Old Bug Type: MySQL related Bug Type: Feature/Change Request Operating System: Debian 2.2 PHP Version: 4.0.6 New Comment: assuming you meant you missed nl = null, and the dump should've ended with [2] =

[PHP-DEV] SEGFAULTs in apache

2001-08-29 Thread Wez Furlong
This is with latest CVS as of around 30-mins to 1-hour ago. It doesn't happen with simple PHP scripts but does with the really really complex ones that I'm working on :( So far I've reproduced the crash with the snap php4-200108282235 and I'm about to try some earlier snaps. Any ideas? --Wez.

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Walter Franzini
Zeev Suraski [EMAIL PROTECTED] writes: At 14:57 29-08-01, Walter Franzini wrote: From the extension (the user of kernel services) pov I must disagree. But obviusly I'missing something :-) I don't see why there's a difference. Maybe the difference is not ZE vs. extension but internal vs.

[PHP-DEV] RE: SEGFAULTs in apache

2001-08-29 Thread Wez Furlong
I've managed to get things to run without segfaults (--enable-debug) but noticed this in my error log: --- output.c(240) : Block 0x089807C0 status: Beginning: Overrun (magic=0x401945F8, expected=0x7312F8DC) End: Unknown This is also with

[PHP-DEV] Bug #13034: Apache segfaults when acessing certain scripts

2001-08-29 Thread dk
From: [EMAIL PROTECTED] Operating system: RedHat Linux 7.0. PHP version: 4.0.6 PHP Bug Type: Apache related Bug description: Apache segfaults when acessing certain scripts hello, i am using apache 1.3.20 with php-4.0.6 since my update to the 1.3.20 i have strange

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Zeev Suraski
At 18:35 29-08-01, Walter Franzini wrote: Zeev Suraski [EMAIL PROTECTED] writes: At 14:57 29-08-01, Walter Franzini wrote: From the extension (the user of kernel services) pov I must disagree. But obviusly I'missing something :-) I don't see why there's a difference. Maybe the

Re: [PHP-DEV] RE: SEGFAULTs in apache

2001-08-29 Thread Zeev Suraski
Are you using sessions? Output compression? Your own output handler? Cutting things down to something that reproduces the problem would be pretty essential here - the output buffering code is quite complex. At 18:51 29-08-01, Wez Furlong wrote: I've managed to get things to run without

Re: [PHP-DEV] [PATCH] Zend/zend_alloc.c

2001-08-29 Thread Zeev Suraski
At 18:45 29-08-01, George Schlossnagle wrote: At 14:57 29-08-01, Walter Franzini wrote: From the extension (the user of kernel services) pov I must disagree. But obviusly I'missing something :-) I don't see why there's a difference. Maybe the difference is not ZE vs. extension

[PHP-DEV] [TOPIC CHANGE] OBDC SQLColumns patch...

2001-08-29 Thread Dan Kalowsky
Was Zend/zend_alloc.c Patch discussion.. Topic change to reflect the discussion direction change... Before I even look at this patch for the ODBC section a few questions. 1) what version of Solid? If it's 3.5, I do suggest STRONGLY that you get the latest libraries from them... as those you

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Rasmus Lerdorf
We could improve zend_execute_scripts() to take an optional zval * to hold the return value, it's already quite ready for this kind of thing. That would work perfectly. Think this could be done sooner rather than later? ie. in the current engine? It shouldn't affect anything else, and it

[PHP-DEV] Bug #13014 Updated: hebrevc ()

2001-08-29 Thread pac00l
ID: 13014 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Unknown/Other Function Old Operating System: freeBSD Operating System: freeBSD, windows 9x PHP Version: 4.0.6 New Comment: When in the varible points are put or comma to the

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Zeev Suraski
At 19:01 29-08-01, Rasmus Lerdorf wrote: We could improve zend_execute_scripts() to take an optional zval * to hold the return value, it's already quite ready for this kind of thing. That would work perfectly. Think this could be done sooner rather than later? ie. in the current engine?

Re: [PHP-DEV] Returning a string from an executed script?

2001-08-29 Thread Rasmus Lerdorf
That would work perfectly. Think this could be done sooner rather than later? ie. in the current engine? Yup, it should be doable. I added it to my TODO. Thanks -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP-DEV] Bug #13034 Updated: Apache segfaults when acessing certain scripts

2001-08-29 Thread dk
ID: 13034 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Old Bug Type: Apache related Bug Type: Reproducible crash Operating System: RedHat Linux 7.0. PHP Version: 4.0.6 New Comment: here is the core dump (i managed it with the cgi version): so the error isn't

[PHP-DEV] Bug #13035: 404 on a .php results in SERVER ERROR when using php as a cgi

2001-08-29 Thread sbeam
From: [EMAIL PROTECTED] Operating system: Linux 2.4.6 PHP version: 4.0.6 PHP Bug Type: Apache related Bug description: 404 on a .php results in SERVER ERROR when using php as a cgi If PHP is used as a CGI program via: Action php-script /cgi-bin/php AddHandler

[PHP-DEV] Bug #13036: Error compiling php-4.0.6 with oracle 8.1.6 and iplanet

2001-08-29 Thread rfontana . cs
From: [EMAIL PROTECTED] Operating system: SunOS 5.6 PHP version: 4.0.6 PHP Bug Type: *Compile Issues Bug description: Error compiling php-4.0.6 with oracle 8.1.6 and iplanet Hello, We are trying to use php4.0.6 + oracle 8.1.6 + iplanet on SunOS 5.6. Here is the

[PHP-DEV] Bug #12895 Updated: mysql_fetch_row

2001-08-29 Thread lampa
ID: 12895 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Operating System: Debian 2.2 PHP Version: 4.0.6 New Comment: for avoid a misunderstanding here is example, which shows this bug: !doctype html public -//w3c//dtd html 4.0

[PHP-DEV] Bug #12972 Updated: is_file co: no warning on non-existing file

2001-08-29 Thread jeroen
ID: 12972 Updated by: jeroen Reported By: [EMAIL PROTECTED] Old Summary: is_file() sends errors to error log Old Status: Closed Status: Analyzed Old Bug Type: Filesystem function related Bug Type: Feature/Change Request Old Operating System: Redhat 6.2 Operating System: Any Old PHP Version: 4.0.5

Re: [PHP-DEV] RE: SEGFAULTs in apache

2001-08-29 Thread Wez Furlong
Hi Zeev, Yes, I'm using sessions and ob_gzhandler. Compression is turned on only for non-broken browsers, so it is not enabled for IE 5.5 (I had some wierd problems a while back), and so it's not turned on in this case. I also make use of ob_get_contents() and ob_end_clear() to format debugging

[PHP-DEV] Bug #13038: Cookie Error in Net/Curl.php

2001-08-29 Thread olaf
From: [EMAIL PROTECTED] Operating system: all PHP version: 4.0.6 PHP Bug Type: HTTP related Bug description: Cookie Error in Net/Curl.php In Curl.php around line 316 multiple cookies are concatenated with newline. Shold be semicolon: if (isset($this-cookies)) { foreach

[PHP-DEV] generated ChangeLog

2001-08-29 Thread Doug MacEachern
is the script for generating the ChangeLog available somewhere? very cool, would like to use it for modperl-2.0 and httpd-test projects. thanks. -- 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 #13039: $submit (form) variable doesn't work

2001-08-29 Thread jasper
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.6 PHP Bug Type: Arrays related Bug description: $submit (form) variable doesn't work I have a problem with a page that writes a form on page. What is unusual though is that it tries to identify if the

[PHP-DEV] Bug #13039 Updated: $submit (form) variable doesn't work

2001-08-29 Thread jeroen
ID: 13039 Updated by: jeroen Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Arrays related Operating System: Windows 2000 PHP Version: 4.0.6 New Comment: See php.net/support.php for support questions. This makes no sense, $submit is never setted in your script...

[PHP-DEV] Bug #13041 Updated: browser ignors php

2001-08-29 Thread jeroen
ID: 13041 Updated by: jeroen Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Performance problem Operating System: windows95 PHP Version: 4.0.6 New Comment: For support-questions: www.php.net/support.php Previous Comments:

Re: [PHP-DEV] Re: [phpweb] [NON-critical] Change-notes warning:

2001-08-29 Thread Markus Fischer
On Wed, Aug 29, 2001 at 08:07:11PM +0200, Jeroen van Wolffelaar wrote : fixed now. i can't believe that is_file ever spits out a warning. that has to be among the silliest behaviors i've ever seen. :-) I agree... See also bug#12972 I think it should be fixed in PHP itself... And how

Re: [PHP-DEV] Re: [phpweb] [NON-critical] Change-notes warning:

2001-08-29 Thread jeroen
And how is the user(developer) supposed to retrieve the actual error then ? $php_errmsg (or whatever) or error_handler? He isn't. It is not a file. If wanted, the user can use file_exists to check wether the file didn't exist, or was not of type 'file'. This error isn't a side-effect, it is

Re: [PHP-DEV] Re: [phpweb] [NON-critical] Change-notes warning:

2001-08-29 Thread Markus Fischer
On Wed, Aug 29, 2001 at 08:12:53PM +0200, [EMAIL PROTECTED] wrote : And how is the user(developer) supposed to retrieve the actual error then ? $php_errmsg (or whatever) or error_handler? He isn't. It is not a file. If wanted, the user can use file_exists to check wether the file didn't

[PHP-DEV] Bug #13032 Updated: Using IMAP support with PHP Header file missing

2001-08-29 Thread sniper
ID: 13032 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Old Bug Type: Unknown/Other Function Bug Type: IMAP related Operating System: Linux PHP Version: 4.0.6 New Comment: You should first get at least the IMAP-2000 c-client sources and use them. Also,

[PHP-DEV] Bug #13042: Web server aborts during startup

2001-08-29 Thread joseph . mcdaniel
From: [EMAIL PROTECTED] Operating system: solaris 2.8 PHP version: 4.0.6 PHP Bug Type: iPlanet related Bug description: Web server aborts during startup Iplanet 4.1 web server will not come up with obj.conf modifications as documented. Compiled with: configure

[PHP-DEV] Bug #13042 Updated: Web server aborts during startup

2001-08-29 Thread joseph . mcdaniel
ID: 13042 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: iPlanet related Operating System: solaris 2.8 PHP Version: 4.0.6 New Comment: The configuration options were: configure --with-mysql=/usr/local/mysql

[PHP-DEV] [PATCH] Fix for 12245

2001-08-29 Thread Jeroen van Wolffelaar
See attachment. I tested it, and I'm sure it works. --jeroen fix_for_12245.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] generated ChangeLog

2001-08-29 Thread Derick Rethans
On Wed, 29 Aug 2001, Doug MacEachern wrote: is the script for generating the ChangeLog available somewhere? very cool, would like to use it for modperl-2.0 and httpd-test projects. thanks. It is in CVS, checkout the CVSROOT module.: cvs -d :pserver:[EMAIL PROTECTED]:/repository co CVSROOT

[PHP-DEV] Bug #13044: unexpected characters in mail

2001-08-29 Thread michalprv
From: [EMAIL PROTECTED] Operating system: linux PHP version: 4.0.6 PHP Bug Type: Mail related Bug description: unexpected characters in mail $sql = Long line:

Re: [PHP-DEV] Re: [phpweb] [NON-critical] Change-notes warning:

2001-08-29 Thread Stig Sæther Bakken
[Markus Fischer [EMAIL PROTECTED]] On Wed, Aug 29, 2001 at 08:12:53PM +0200, [EMAIL PROTECTED] wrote : And how is the user(developer) supposed to retrieve the actual error then ? $php_errmsg (or whatever) or error_handler? He isn't. It is not a file. If wanted, the user can use

[PHP-DEV] Bug #13045: PHP crashes when it can't find the *.exe or other binary specified within ``'s

2001-08-29 Thread saturn
From: [EMAIL PROTECTED] Operating system: Windows ME (kernel 4.9.3000) PHP version: 4.0.6 PHP Bug Type: Reproducible crash Bug description: PHP crashes when it can't find the *.exe or other binary specified within ``'s using `proname -option -etc` (where progname is any

[PHP-DEV] Bug #13045 Updated: PHP crashes when it can't find the *.exe or other binary specified within ``'s

2001-08-29 Thread saturn
ID: 13045 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Reproducible crash Operating System: Windows ME (kernel 4.9.3000) PHP Version: 4.0.6 New Comment: also note: using Apache 1.3.20 Win32 Previous Comments:

[PHP-DEV] Bug #13025 Updated: Unknown list entry type in request shutdown with create_comment()

2001-08-29 Thread joey
ID: 13025 Updated by: joey Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: DOM XML related Operating System: Linux Debian/unstable PHP Version: 4.0CVS-2001-08-29 New Comment: Fixed in CVS, thanks for the report. Previous Comments:

[PHP-DEV] Bug #13046: automatically backslashing backslashes

2001-08-29 Thread kezgin
From: [EMAIL PROTECTED] Operating system: linux PHP version: 4.0.6 PHP Bug Type: *General Issues Bug description: automatically backslashing backslashes If a backslash (ASCII 0x5C) is passed to a PHP script, the script automatically backslashes it, making the value \\

[PHP-DEV] Bug #13046 Updated: automatically backslashing backslashes

2001-08-29 Thread jimw
ID: 13046 Updated by: jimw Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *General Issues Operating System: linux PHP Version: 4.0.6 New Comment: search for magicquotes on www.php.net. Previous Comments:

  1   2   >