[PHP-DEV] PHP 4.0 Bug #9362 Updated: When sendmail not available, get compile errors

2001-02-20 Thread sas
ID: 9362 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Compile Failure Assigned To: Comments: Thanks, I've changed the sendmail check not to assume that sendmail lives in /usr/lib. Previous Comments:

[PHP-DEV] PHP 4.0 Bug #9361 Updated: C++ compiler causes failures

2001-02-20 Thread sas
ID: 9361 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Compile Failure Assigned To: Comments: Why would you want to compile a C program using a C++ compiler? There are certain subtle differences in the languages; I don't think it is feasible (if pos

Re: [PHP-DEV] PHP 4.0 Bug #9360: Type of the parameter conflictswith previous declaration of function

2001-02-20 Thread Sascha Schumann
Hi, thanks for your patches. I've already applied some of them. [..] > host_info = gethostbyname(host); > > But host is const char *. So I had to change line to as follows: > host_info = gethostbyname((char *)host); Then your system header files are broken. The correct protot

[PHP-DEV] PHP 4.0 Bug #9359 Updated: inline not defined in zend_static_allocator.c

2001-02-20 Thread sas
ID: 9359 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Suspended Bug Type: Compile Failure Assigned To: Comments: Thanks for your report. In the current Zend CVS, that file does not seem to be used at all. Suspending. Previous Comments: --

[PHP-DEV] PHP 4.0 Bug #9358 Updated: HAVE_RDEV not being checked before accessing field st_rdev

2001-02-20 Thread sas
ID: 9358 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Compile Failure Assigned To: Comments: Thanks for your report. I've committed the changes. Previous Comments: --- [2001-02-2

[PHP-DEV] chinese patch for htmlspecialchars

2001-02-20 Thread Alan Knowles
hi, Just tryed adding chinese parsing ability to html specialchars, If you do any webdev in php in chinese, it is one of the annoying 'missing features' Can somebody help finish this off, There are 2 issues, - I get compile time saying html.c:76: warning: comparison is always false due to

Re: [PHP-DEV] php_apache.c virtual() enlightment needed

2001-02-20 Thread Zeev Suraski
At 00:35 21/2/2001, Rasmus Lerdorf wrote: >Ah right. I vaguely remember writing a check for this years ago. That's what I recalled too. I don't think that this can work today, so if this check got lost along the way, it should probably be restored. Zeev -- Zeev Suraski <[EMAIL PROTECTED]> C

Re: [PHP-DEV] php_apache.c virtual() enlightment needed

2001-02-20 Thread Rasmus Lerdorf
> At 00:18 21/2/2001, Rasmus Lerdorf wrote: > > > Hrm, it *is* intentional. But we may need to do something smarter here. > > > One thing that I don't understand - one can't really call virtual() on > > > another PHP file, can she? > > > >Why not? virtual() just kicks off an Apache sub-request.

Re: [PHP-DEV] php_apache.c virtual() enlightment needed

2001-02-20 Thread Zeev Suraski
At 00:18 21/2/2001, Rasmus Lerdorf wrote: > > Hrm, it *is* intentional. But we may need to do something smarter here. > > One thing that I don't understand - one can't really call virtual() on > > another PHP file, can she? > >Why not? virtual() just kicks off an Apache sub-request. That >sub-r

Re: [PHP-DEV] php_apache.c virtual() enlightment needed

2001-02-20 Thread Rasmus Lerdorf
> Hrm, it *is* intentional. But we may need to do something smarter here. > One thing that I don't understand - one can't really call virtual() on > another PHP file, can she? Why not? virtual() just kicks off an Apache sub-request. That sub-rerquest can be any valid Apache request. -Rasmus

Re: [PHP-DEV] php_apache.c virtual() enlightment needed

2001-02-20 Thread Zeev Suraski
Hrm, it *is* intentional. But we may need to do something smarter here. One thing that I don't understand - one can't really call virtual() on another PHP file, can she? Zeev At 17:18 19/2/2001, André Langhorst wrote: >I tried (and failed) to figure out why virtual() closes any output buffers,

[PHP-DEV] please patch for dbmaker

2001-02-20 Thread Jeffrey Lin
Hey, there: We just added some patch to php CVS specifically for our database driver - DBMaker. The modifications are made in one file, ext/odbc/config.m4. For config.m4, we did some modifications to the paths to our database driver. Would you please be kind enough to include this patch to the

[PHP-DEV] RE: PHP 4.0 Bug #9351 Updated: LDAP_SEARCH

2001-02-20 Thread nikony
I have thought about that but as you know, it's now a fault of LDAP Server. I use open ldap and when i use command line: ldapsearch -p 999 -h localhost -b ... "(date >=20010116)" it works! and even more: ldapsearch -p 999 -h localhost -b ... "(&(date >=20010116)(date<=20010120))" It's puzzl

[PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-20 Thread jason
ID: 9337 Updated by: jason Reported By: [EMAIL PROTECTED] Old-Status: Assigned Status: Closed Bug Type: Feature/Change Request Assigned To: [EMAIL PROTECTED] Comments: Request complete, new function created called array_search in CVS. Check it out in snapshots. -Jason Previous Comments: --

[PHP-DEV] PHP 4.0 Bug #8667 Updated: sockets

2001-02-20 Thread pairote . p
ID: 8667 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: Sockets related Description: sockets Simple but ugly workaround for Solaris 7/8 is to define _KERNEL for sockets.h in ext/sockets/sockets.c in PHP. ext/sockets/socket.c: #define _KERNEL #include #undef _KERNEL [EMAIL P

[PHP-DEV] Simple Fail-Safe E-Business Opportunity!

2001-02-20 Thread dbcarolina
Does a "Self-Run" Business interest you? CASH IN on a virtual Money Machine! Let the World's First Online Recruiter help build your group! FREE Marketing Tools (Self-Replicating Web Pages, Autoresponders, Fax-On-Demand, ...) bring you the EASIEST plan to achieve wealth. Tap into the speed/power

[PHP-DEV] PHP 4.0 Bug #9364: Redeclaration cannot specify a different storage class

2001-02-20 Thread amra
From: [EMAIL PROTECTED] Operating system: OS400 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: Redeclaration cannot specify a different storage class When trying to compile sapi/cgi/getopt.c and sapi/cgi/cgi_main.c, I get the following errors: ---

Re: [PHP-DEV] PHP 4.0 Bug #9363 Updated: Floating point error uponstartup

2001-02-20 Thread Derick Rethans
On 20 Feb 2001 [EMAIL PROTECTED] wrote: > ID: 9363 > User Update by: [EMAIL PROTECTED] > Status: Closed > Bug Type: Reproduceable crash > Description: Floating point error upon startup > > Any eta on a point release? I'd rather not use a snapshot on productional servers. 5-6 weeks probably ... b

[PHP-DEV] PHP 4.0 Bug #9363 Updated: Floating point error upon startup

2001-02-20 Thread zerodiv
ID: 9363 User Update by: [EMAIL PROTECTED] Status: Closed Bug Type: Reproduceable crash Description: Floating point error upon startup Any eta on a point release? I'd rather not use a snapshot on productional servers. Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #9363 Updated: Floating point error upon startup

2001-02-20 Thread derick
ID: 9363 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: Already fixed in CVS. You can use a snapshot from snaps.php.net or the CVS version. Previous Comments:

[PHP-DEV] PHP 4.0 Bug #9363: Floating point error upon startup

2001-02-20 Thread zerodiv
From: [EMAIL PROTECTED] Operating system: FREEBSD 3.4 PHP version: 4.0.4pl1 PHP Bug Type: Reproduceable crash Bug description: Floating point error upon startup # apache configure ./configure \ "--with-layout=Apache" \ "--prefix=/usr/local/apache" \ "--enable-module=rewrite"

[PHP-DEV] PHP 4.0 Bug #9362: When sendmail not available, get compile errors

2001-02-20 Thread amra
From: [EMAIL PROTECTED] Operating system: OS400 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: When sendmail not available, get compile errors When sendmail is not available on a system, get compiler errors: "basic_functions.c", line 486.9: 1506-045 (S

[PHP-DEV] PHP 4.0 Bug #9361: C++ compiler causes failures

2001-02-20 Thread amra
From: [EMAIL PROTECTED] Operating system: OS400 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: C++ compiler causes failures When using a C++ compiler on OS/400, a lot of files fail to compile. (Note that my other bug reports was using a C compiler.)

[PHP-DEV] PHP 4.0 Bug #9360: Type of the parameter conflicts with previous declaration of function

2001-02-20 Thread amra
From: [EMAIL PROTECTED] Operating system: OS400 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: Type of the parameter conflicts with previous declaration of function When compiling using a C compiler, it does not allow parameters that are defined as con

[PHP-DEV] PHP 4.0 Bug #9359: inline not defined in zend_static_allocator.c

2001-02-20 Thread amra
From: [EMAIL PROTECTED] Operating system: OS400 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: inline not defined in zend_static_allocator.c Zend/zend_static_allocator.c does not include the proper include file that defines inline. Thus, file fails to

[PHP-DEV] PHP 4.0 Bug #9357: PHP won't use the method "post"

2001-02-20 Thread webmaster
From: [EMAIL PROTECTED] Operating system: Windows 98 (client side) UNIX (server side) PHP version: 4.0.4pl1 PHP Bug Type: Unknown/Other Function Bug description: PHP won't use the method "post" The following script is supposed to send a simple feedback form, and send it dire

[PHP-DEV] PHP 4.0 Bug #9358: HAVE_RDEV not being checked before accessing field st_rdev

2001-02-20 Thread amra
From: [EMAIL PROTECTED] Operating system: OS400 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: HAVE_RDEV not being checked before accessing field st_rdev st_rdev in struct stat is being access without any regards to HAVE_RDEV in the following files: e

[PHP-DEV] PHP 4.0 Bug #9020 Updated: Registered variables can be set in URL on first run

2001-02-20 Thread paul_kroll
ID: 9020 User Update by: [EMAIL PROTECTED] Status: Closed Bug Type: *Session related Description: Registered variables can be set in URL on first run The negative effects of register globals aren't in question here: this is a behavior that is going to lead to exploits. If the register_globals AL

[PHP-DEV] PHP 4.0 Bug #9356: settype thinks 0.2 and (1.2 - 1) have different values

2001-02-20 Thread phpbug01
From: [EMAIL PROTECTED] Operating system: Linux 2.2.17 PHP version: 4.0.4pl1 PHP Bug Type: Variables related Bug description: settype thinks 0.2 and (1.2 - 1) have different values http://www.tpsa.com/settype.php http://www.tpsa.com/settype.phps it has phpinfo(); in it sni

[PHP-DEV] PHP 4.0 Bug #8556 Updated: start_session modify the HTTP header

2001-02-20 Thread sas
ID: 8556 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Session related Assigned To: Comments: Regardless of whether the session id is transmitted by a cookie or the URL, the output of the PHP script is by default supposed to be non-cachable. If yo

[PHP-DEV] Bugs #9040, #9013, #8992, #8962, #8732, #8466

2001-02-20 Thread Edin Kadribasic
All exec style functions seem to be broken somewhere in between versions 4.0.3pl1 and 4.0.4 when PHP is compiled as apache module with --enable-sigchild. The description of the bug 8992 seems to contain the solution to the problem. Anyone care to take a look at this. Edin -- PHP Development

Re: [PHP-DEV] popen() on Win32

2001-02-20 Thread Derick Rethans
On Tue, 20 Feb 2001, Andi Gutmans wrote: > I can never remember who said they were mentioning on getting popen() to > work on Win32. > In any case, if someone's working on it any chance this can make it in for > 4.0.5? I've something working, but I need to sort some things out with someone from

Re: [PHP-DEV] Problem with strings on Win32

2001-02-20 Thread Martin Jansen
On Tue, 20 Feb 2001 20:40:04 +0100, Sebastian Bergmann wrote: > The following code > > $string = ""; > > print "*".$string."*"; > var_dump($string); >?> > > outputs > >** >string(6) "" On my machine (Windows 2000 Professional German) everything works fine: | [d

Re: [PHP-DEV] Problem with strings on Win32

2001-02-20 Thread Sebastian Bergmann
Martin Jansen wrote: > On my machine (Windows 2000 Professional German) everything > works fine: > > | [d:\php\php4.0.4pl1]php > | | $string = ""; > | > | print "*".$string."*"; > | var_dump($string); > | ?> > | ^Z > | X-Powered-By: PHP/4.0.4pl1 > | Content-type: text/html > | > | **st

[PHP-DEV] popen() on Win32

2001-02-20 Thread Andi Gutmans
I can never remember who said they were mentioning on getting popen() to work on Win32. In any case, if someone's working on it any chance this can make it in for 4.0.5? Andi -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

[PHP-DEV] PHP 4.0 Bug #9198 Updated: ocassional session blackouts

2001-02-20 Thread andre
ID: 9198 Updated by: andre Reported By: [EMAIL PROTECTED] Old-Status: Suspended Status: Feedback Bug Type: *Session related Assigned To: Comments: Previous Comments: --- [2001-02-10 04:41:57] [EMAIL PROTECTED] This is my

[PHP-DEV] Problem with strings on Win32

2001-02-20 Thread Sebastian Bergmann
Hi there, I just came across something very odd. The following code "; print "*".$string."*"; var_dump($string); ?> outputs ** string(6) "" . So, the variable's type and size are set correctly, but not its value. I'm using yesterday's CVS on Windows

Re: [PHP-DEV] RE: [PHP-QA] Problem with strings on Win32

2001-02-20 Thread Alexander Feldman
Hi, I can not understand very well the question, but you can produce such an output with the following php script: The interpreter is binary safe and that's ok. Perhaps the var_dump function can be enhanced, but it is supposed only for internal usage, isn't it? Regards: -- Alex On Tue, 20 F

[PHP-DEV] RE: [PHP-QA] Problem with strings on Win32

2001-02-20 Thread James Moore
> ** > string(6) "" > > . So, the variable's type and size are set correctly, but not its value. > > I'm using yesterday's CVS on Windows 2000 Professional. Sascha already > checked this on his machine(s) and could NOT reproduce this. Sorry to ask this but your not being stupid and lo

Re: [PHP-DEV] Time for 4.0.5?

2001-02-20 Thread PHP development @echospace
...with pretty much every modem user already having bzip2... C'mon, you gotta download kernel sources too, and those are in bz2 for modem users... -2c- Vlad - Original Message - From: emile@UNKNOWN To: Sent: Tue, 20 Feb 2001 10:04:11 +0100 Subject: Re: [PHP-DEV] Time for 4.0.5? Wo

[PHP-DEV] PHP 4.0 Bug #9330 Updated: Child process seg faults on php call

2001-02-20 Thread mchampagne
ID: 9330 User Update by: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Configuration Issues Description: Child process seg faults on php call Found a post on a newsgroup that gets around this bug. I modified libtool and it runs successfully now. The configure script generates

[PHP-DEV] PHP 4.0 Bug #9020 Updated: Registered variables can be set in URL on first run

2001-02-20 Thread paul_kroll
ID: 9020 User Update by: [EMAIL PROTECTED] Status: Closed Bug Type: *Session related Description: Registered variables can be set in URL on first run The negative effects of register globals aren't in question here: this is a behavior that is going to lead to exploits. If the register_globals AL

[PHP-DEV] CVS Account Request

2001-02-20 Thread CVS Account Request
Full name: Alexander Bokovoy Email: [EMAIL PROTECTED] ID: ab Purpose: To work on PHP binding for Midgard Project -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP-DEV] PHP 4.0 Bug #9020 Updated: Registered variables can be set in URL on first run

2001-02-20 Thread sas
ID: 9020 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Session related Assigned To: Comments: The negative effects of the easy accessibility of form variables is well-known; if you want to avoid them, please disable register_globals and use $HTTP_SESS

[PHP-DEV] PHP 4.0 Bug #9115 Updated: unserialization segfaults

2001-02-20 Thread sas
ID: 9115 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Session related Assigned To: Comments: Please send the session file which causes the segfault to [EMAIL PROTECTED] (MIME preferred). The bug db inserts white-space, so I cannot use the posted d

[PHP-DEV] PHP 4.0 Bug #9176 Updated: Feature request: Sessions & reference variables

2001-02-20 Thread sas
ID: 9176 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Session related Assigned To: Comments: This has been implemented by Stas in 4.0.4. Previous Comments: --- [2001-02-08 13:35

[PHP-DEV] PHP 4.0 Bug #9191 Updated: Problems when rejecting cookies

2001-02-20 Thread sas
ID: 9191 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Suspended Bug Type: *Session related Assigned To: Comments: Rewriting HTTP headers such as Location has already been requested. Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #9198 Updated: ocassional session blackouts

2001-02-20 Thread sas
ID: 9198 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Suspended Bug Type: *Session related Assigned To: Comments: This bug report does not contain any information which would be suitable for tracking down a possibly bug. Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #9355 Updated: Under 4.0.0 developed system with newer php doesn't work properly.

2001-02-20 Thread andre
ID: 9355 Updated by: andre Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: PostgreSQL related Assigned To: Comments: don't forget to set to "feedback" Previous Comments: --- [2001-02-20 13:04:53]

[PHP-DEV] PHP 4.0 Bug #9207 Updated: User session handler doesn't call write function

2001-02-20 Thread sas
ID: 9207 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Session related Assigned To: Comments: How did you verify that the write handler is not called? Note that during the request shutdown the write/close handlers cannot send any data to the browser

[PHP-DEV] PHP 4.0 Bug #9353 Updated: Require command reads /etc/passwd

2001-02-20 Thread sas
ID: 9353 Updated by: sas Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Unknown/Other Function Assigned To: Comments: Please check out the security section of the manual, especially regarding the safe mode feature. Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #9355 Updated: Under 4.0.0 developed system with newer php doesn't work properly.

2001-02-20 Thread cnewbill
ID: 9355 Updated by: cnewbill Reported By: [EMAIL PROTECTED] Status: Open Bug Type: PostgreSQL related Assigned To: Comments: If you can, grab the latest version from CVS. I believe they fixed this problem. http://snaps.php.net Chris Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #9355: Under 4.0.0 developed system with newer php doesn't work properly.

2001-02-20 Thread vampire
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.4pl1 PHP Bug Type: PostgreSQL related Bug description: Under 4.0.0 developed system with newer php doesn't work properly. We developed under 4.0.0 using non-persistent connection to the PostgreSQL database. Aft

[PHP-DEV] PHP 4.0 Bug #9053 Updated: loading module php_ldap.dll

2001-02-20 Thread mcanal
ID: 9053 User Update by: [EMAIL PROTECTED] Status: Closed Bug Type: Dynamic loading Description: loading module php_ldap.dll this is clear. but what I was talking about is to explain to set the path properly for using the extensions - I was fideling around for one hour not knowing how a dll wo

[PHP-DEV] Re: PHP 4.0 Bug #6491 Updated: $PHP_SELF evaluates to improper address if directory name ends with ".php"

2001-02-20 Thread Frank Seesink
Apologies for the delay, but NO, you should NOT close this problem yet. It still occurs in PHP v4.0.3pl1 & v4.0.4pl1. On 2/20/01 at 1:01 PM Bug Database wrote: >ID: 6491 >Updated by: sniper >Reported By: [EMAIL PROTECTED] >Old-Status: Feedback >Status: Closed >Bug Type: Scripting Engine problem

[PHP-DEV] PHP 4.0 Bug #9354: Doesn't support UNC paths

2001-02-20 Thread km
From: [EMAIL PROTECTED] Operating system: Win32 PHP version: 4.0.3pl1 PHP Bug Type: Directory function related Bug description: Doesn't support UNC paths On Win32, this does not work; $d = dir("//machine_name/share_name"); echo "Handle: ".$d->handle."\n"; echo "Path: ".$d->

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-20 Thread Jason Greene
Andrei Zmievski wrote: > > On Tue, 20 Feb 2001, Stig Venaas wrote: > > I could in order to save the position do $key = key($arr). To > > restore it later, I could then do something like array_setpos($key). > > I'm not sure if the Zend API allows for setting the position without > > looping throu

[PHP-DEV] PHP 4.0 Bug #9316 Updated: calling an external function in a loop

2001-02-20 Thread s . marini
ID: 9316 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: Scripting Engine problem Description: calling an external function in a loop I need to send you a little tar file 12Kb that has the makefile to compile the shared object, the php page that we use to see the pr

[PHP-DEV] Re: [PHP-WIN] crash cause ... ?

2001-02-20 Thread Gonzalo Vera
What DB are you using (if any)? Gonzalo. > Hi, > I have test environment with PHP 403sp1 (CGI) running on Apache 1.3.14 on a > low end (133mhz, 32mb RAM) Pentium with Windows 98. For some reason the > whole set up seems very unstable, and PHP causes general protection faults > consistantly wit

[PHP-DEV] PHP 4.0 Bug #9031 Updated: ob_gzhandler memory leak and Headers already sent message!

2001-02-20 Thread aboldt
ID: 9031 User Update by: [EMAIL PROTECTED] Old-Status: Closed Status: Open Bug Type: Output Control Description: ob_gzhandler memory leak and Headers already sent message! The headers already sent message with ob_gzhandler enabled problem is solved. However, the lynx -head problem is still the

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-20 Thread Andrei Zmievski
On Tue, 20 Feb 2001, Stig Venaas wrote: > I could in order to save the position do $key = key($arr). To > restore it later, I could then do something like array_setpos($key). > I'm not sure if the Zend API allows for setting the position without > looping through the array though. If array_setpos(

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-20 Thread Stig Venaas
On Tue, Feb 20, 2001 at 08:27:59AM -0600, Andrei Zmievski wrote: > in_array() used to move the pointer to the entry found, but people > complained about it so I remove it... :) And I thought it was neat, can't please everyone I guess (: There seems to be a general problem with array functions an

Re: [PHP-DEV] PHP 4.0 Bug #9337 Updated: make in_array return key, if searched value was found

2001-02-20 Thread Andrei Zmievski
On Tue, 20 Feb 2001, Stig Venaas wrote: > Not quite sure we need array_find(). If we can have in_array() set > the array pointer to point to the entry found, one can get the key > by using key(). If in_array() also searches from the pointer onwards, > one can find all entries with the value by doi

[PHP-DEV] PHP 4.0 Bug #9353: Require command reads /etc/passwd

2001-02-20 Thread sebastian
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.1pl2 PHP Bug Type: Unknown/Other Function Bug description: Require command reads /etc/passwd Hello, I have found a bug in PHP 4.01pl2 and maybe it exist in all other php versions too. A php script can read al

Re: [PHP-DEV] Re: PHP 4.0 Bug #5440 Updated: Major Design Flaw(s)in FilePro access

2001-02-20 Thread Jani Taskinen
On Tue, 20 Feb 2001, Michael R. Gile wrote: >I expected you will not have a problem that I have not gotten back to you, >since it took you 6 mos to get back to me, and now I have to dig through >archives to find the source code. Oh, sorry about that. I handle a lot of bug reports so I can not re

[PHP-DEV] PHP 4.0 Bug #8796 Updated: "$foo->bar->baz" ambiguity in double quoted strings

2001-02-20 Thread rick
ID: 8796 User Update by: [EMAIL PROTECTED] Status: Analyzed Bug Type: Feature/Change Request Description: "$foo->bar->baz" ambiguity in double quoted strings Haven't checked out here-docs either. On the backwards compatibility issue, I can't see that there would be (much of) one. If people a

RE: [PHP-DEV] Time for 4.0.5?

2001-02-20 Thread Zeev Suraski
Guys, I didn't put any words in Emile's mouth. I know he didn't suggest stopping to distribute .gz files. I was just describing the full 'logical path' to why I don't think that using bzip2 is a very hot idea. Essentially I was saying (a) We can't give up .gz/.zip (b) .bz2 isn't all that m

[PHP-DEV] Re: PHP 4.0 Bug #5440 Updated: Major Design Flaw(s) in FilePro access

2001-02-20 Thread Michael R. Gile
I expected you will not have a problem that I have not gotten back to you, since it took you 6 mos to get back to me, and now I have to dig through archives to find the source code. The code is attached. filepro_is_deleted is the new function At 12:23 PM 2/20/01 +, you wrote: >ID: 5440 >Up

[PHP-DEV] PHP 4.0 Bug #9352 Updated: any php which is opened over any.php+.htr will sent the source

2001-02-20 Thread j . kohl
ID: 9352 User Update by: [EMAIL PROTECTED] Status: Bogus Bug Type: IIS related Description: any php which is opened over any.php+.htr will sent the source And why can the asp.dll avoid that problem, when htr parsing is turned on? Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #9352 Updated: any php which is opened over any.php+.htr will sent the source

2001-02-20 Thread derick
ID: 9352 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Bogus Bug Type: IIS related Assigned To: Comments: As you said it's an IIS bug, not a PHP one. Previous Comments: --- [2001-02-20 05:47:58

[PHP-DEV] PHP 4.0 Bug #5891 Updated: PHP configure fails if libxml is compiled with libiconv

2001-02-20 Thread sniper
ID: 5891 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Compile Failure Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-07

[PHP-DEV] PHP 4.0 Bug #6493 Updated: Invalid page fault in module

2001-02-20 Thread sniper
ID: 6493 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: No example code -> impossible to reproduce -> closed. If problem still exists with 4.0.4pl1 reopen with example script included. --Jani Previ

[PHP-DEV] PHP 4.0 Bug #6491 Updated: $PHP_SELF evaluates to improper address if directory name ends with ".php"

2001-02-20 Thread sniper
ID: 6491 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Scripting Engine problem Assigned To: Comments: No feedback. --Jani Previous Comments: --- [2001-01-12 06:06:31]

[PHP-DEV] PHP 4.0 Bug #6445 Updated: problem with opendir

2001-02-20 Thread sniper
ID: 6445 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Old-Bug Type: *General Issues Bug Type: Filesystem function related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #6401 Updated: read_exif_data fails

2001-02-20 Thread sniper
ID: 6401 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Unknown/Other Function Assigned To: Comments: No feedback, considered fixed. --jani Previous Comments: --- [2001

[PHP-DEV] PHP 4.0 Bug #6338 Updated: script engine

2001-02-20 Thread sniper
ID: 6338 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: *General Issues Assigned To: Comments: No feedback. --Jani Previous Comments: --- [2001-01-06 01:11:37] [EMAIL

[PHP-DEV] PHP 4.0 Bug #6323 Updated: MSSQL function do not work in classes

2001-02-20 Thread sniper
ID: 6323 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: ODBC related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-08 15:

[PHP-DEV] PHP 4.0 Bug #6296 Updated: can not get data from database

2001-02-20 Thread sniper
ID: 6296 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Oracle related Assigned To: Comments: Not enough info, no feedback. --Jani Previous Comments: --- [2001-01-02 10

[PHP-DEV] PHP 4.0 Bug #6821 Updated: Segmentation fault when opening a php test page

2001-02-20 Thread sniper
ID: 6821 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: OCI8 related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-10 07:

[PHP-DEV] PHP 4.0 Bug #6898 Updated: SQL Statements

2001-02-20 Thread sniper
ID: 6898 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: MySQL related Assigned To: Comments: No feedback. --Jani Previous Comments: --- [2001-01-06 02:27:33] [EMAIL PRO

[PHP-DEV] PHP 4.0 Bug #6899 Updated: OCI8 doesn't work with ORALCE 8.16 for linux on redhat 6.2

2001-02-20 Thread sniper
ID: 6899 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: OCI8 related Assigned To: Comments: Environment vars..closed. --Jani Previous Comments: --- [2001-01-09 02:39:32

[PHP-DEV] PHP 4.0 Bug #6908 Updated: rmdir fails after using dir()

2001-02-20 Thread sniper
ID: 6908 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Directory function related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [

[PHP-DEV] PHP 4.0 Bug #6929 Updated: DBA + Sleepycat 3.1 : unsupported btree version

2001-02-20 Thread sniper
ID: 6929 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: DBM/DBA related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2000-12-30

[PHP-DEV] PHP 4.0 Bug #6988 Updated: Will not compile with NSAPI

2001-02-20 Thread sniper
ID: 6988 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Compile Failure Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-07

[PHP-DEV] PHP 4.0 Bug #6994 Updated: Page fault in php4ts.dll

2001-02-20 Thread sniper
ID: 6994 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01

[PHP-DEV] PHP 4.0 Bug #7021 Updated: lo_import(1) causes segfault

2001-02-20 Thread sniper
ID: 7021 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01

[PHP-DEV] Re: PHP 4.0 Bug #7157 Updated: Cannot Suppot both Oracle and Informix

2001-02-20 Thread ptrincavelli
It´s not fixed, but I cannot generate the backtrace. ---   Pablo A. Trincavelli   Banco Bisel S.A. - Gerencia de Informática   Intranet/Internet   Teléfono: (0341)480-1810   Interno: 1154 Bug Database <[EMAIL PROTECTED]> 20/02/01 09.41                 Para:        [EMAIL PROTECT

[PHP-DEV] PHP 4.0 Bug #7074 Updated: Contador no busca los demás registros

2001-02-20 Thread sniper
ID: 7074 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: MySQL related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-09 14

[PHP-DEV] PHP 4.0 Bug #7087 Updated: error opening libclntsh.so.8.0

2001-02-20 Thread sniper
ID: 7087 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Compile Failure Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-07

[PHP-DEV] PHP 4.0 Bug #7150 Updated: Access violation for php.exe when a php script is called in the browser

2001-02-20 Thread sniper
ID: 7150 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Other web server Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-09

[PHP-DEV] PHP 4.0 Bug #7157 Updated: Cannot Suppot both Oracle and Informix

2001-02-20 Thread sniper
ID: 7157 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: OCI8 related Assigned To: Comments: No feedback, considered fixed. (Always use the web interface to reply!) --Jani Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #7239 Updated: mssql

2001-02-20 Thread sniper
ID: 7239 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01

[PHP-DEV] PHP 4.0 Bug #7296 Updated: PHP Memory Errors(Access Violations)

2001-02-20 Thread sniper
ID: 7296 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01

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

2001-02-20 Thread sniper
ID: 7305 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: OCI8 related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-07 19:

[PHP-DEV] PHP 4.0 Bug #7318 Updated: libgen.so problems

2001-02-20 Thread sniper
ID: 7318 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: *Install and Config Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2000-11

[PHP-DEV] PHP 4.0 Bug #7382 Updated: Install error on Configuring libtool

2001-02-20 Thread sniper
ID: 7382 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: *Install and Config Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01

[PHP-DEV] PHP 4.0 Bug #7403 Updated: ld-error

2001-02-20 Thread sniper
ID: 7403 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Compile Failure Assigned To: Comments: Fixed. --Jani Previous Comments: --- [2001-01-02 09:08:04] [EMAIL PROTECT

[PHP-DEV] PHP 4.0 Bug #7405 Updated: GD crashes Apache if PHP is running as module

2001-02-20 Thread sniper
ID: 7405 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Analyzed Old-Bug Type: Reproduceable crash Bug Type: GD related Assigned To: Comments: GD is not yet fully threadsafe. --Jani Previous Comments: -

[PHP-DEV] PHP 4.0 Bug #7406 Updated: Unable to load Dbase extension

2001-02-20 Thread sniper
ID: 7406 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: dBase related Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01-12 08

[PHP-DEV] PHP 4.0 Bug #7427 Updated: Apache doesn't load or crashes using extensions

2001-02-20 Thread sniper
ID: 7427 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Reproduceable crash Assigned To: Comments: No feedback, considered fixed. --Jani Previous Comments: --- [2001-01

  1   2   >