[PHP-DEV] Re: Bug #9520 Updated: After a call to OCIFetchStatement functions on stament do not work anymore

2001-05-07 Thread [EMAIL PROTECTED]
> ID: 9520 > Updated by: thies > Reported By: [EMAIL PROTECTED] > Old-Status: Open > Status: Analyzed > Bug Type: OCI8 related > PHP Version: 4.0.4pl1 > Assigned To: > Comments: > > that's correct - after a cursor is completly read (which is what fechstatement does) this information is no longer v

[PHP-DEV] Bug #10639 Updated: include() & require()

2001-05-07 Thread sb
ID: 10639 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: Scripting Engine problem Operating system: AIX 4.3.3 PHP Version: 4.0.4pl1 Description: include() & require() Here is a sample script: --- test.php -

[PHP-DEV] Manual builds broken

2001-05-07 Thread Rasmus Lerdorf
>>> starting build at: Sun May 6 17:29:15 EDT 2001 >>> making work directory ... >>> running ./configure --with-lang=fr ... >>> running make test ... make: *** No rule to make target `test'. Stop. -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Bug #10694 Updated: mktime leap year bug

2001-05-07 Thread derick
ID: 10694 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Assigned Bug Type: Date/time related Operating system: PHP Version: 4.0.4 Assigned To: derick Comments: Assigning to myself Previous Comments: ---

[PHP-DEV] Bug #9827 Updated: Floating point exception when starting apache

2001-05-07 Thread zeev
ID: 9827 Updated by: zeev Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Old-Bug Type: Reproducible Crash Bug Type: *General Issues Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Can you please see if this still happens in PHP 4.0.5? It's supposed to be fixed.

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Jani Taskinen
On Mon, 7 May 2001, Zeev Suraski wrote: >At 02:16 7/5/2001, Wez Furlong wrote: >>I've seen "mysql_unbuffered_query" mentioned a couple of times lately and I >>thought that it would be useful for my current project. >>However, I need the functionality of mysql_db_query, but working in >>unbuffered

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Zeev Suraski
It can be used pretty much anywhere mysql_query() can be used. It's new, that's why it's not documented :) The benefits of it: - At no point does the client (PHP) have to hold the entire result set in memory. With big query results, it can save a lot of RAM. - Response time is generally better,

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Sascha Schumann
> Hmm..this seems to be an undocumented function. What is the use of it? > Benefits over using mysql_query() for example? Where/when it _can't_ be used? Apparently, the mysql client library loads the complete result set into the process space of the client. For example, bugstats.php

Re: [PHP-DEV] Bug #10702: levenshtein doesn't handle odd arguments well

2001-05-07 Thread Hartmut Holzgraefe
[EMAIL PROTECTED] wrote: > > From: [EMAIL PROTECTED] > Operating system: Win2k > PHP version: 4.0.5 > PHP Bug Type: *Function Specific > Bug description: levenshtein doesn't handle odd arguments well > > Hello Hartmut, > > levenshtein ('foot','fot','0','0','1'); > - and -

Re: [PHP-DEV] Bug #10702: levenshtein doesn't handle odd arguments well

2001-05-07 Thread Zak Greant
It works just fine for me on GNU/Linux as well. I guess that it is a Win32 specific issue... --zak - Original Message - From: "Hartmut Holzgraefe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, May 07, 2001 3:28 AM Subject: Re: [PHP-DEV] Bug #10702: lev

Re: [PHP-DEV] Bug #10702: levenshtein doesn't handle odd arguments well

2001-05-07 Thread Hartmut Holzgraefe
Zak Greant wrote: > > It works just fine for me on GNU/Linux as well. I guess that it is a Win32 > specific issue... does it work with all weights set to one or with only two paramerters? (i'm really curious about this, but have no windows test system available) -- Hartmut Holzgraefe [EMAIL

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Jani Taskinen
Second question is: What is the use of mysql_query() function anymore then? Why not just exchange mysql_query() with mysql_unbuffered_query() ? You didn't say anything about any disadvantages on using it. :) --Jani On Mon, 7 May 2001, Zeev Suraski wrote: >It can be used pretty much anywhere m

[PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Wez Furlong
On 2001-05-07 00:26:02, "Zeev Suraski" <[EMAIL PROTECTED]> wrote: > At 02:16 7/5/2001, Wez Furlong wrote: > >Should I create a patch that enables the parameter? > Probably... Are you sure you can't use mysql_unbuffered_query(), > though? If you're really used to supplying the database argument,

Re: [PHP-DEV] Bug #10702: levenshtein doesn't handle odd arguments well

2001-05-07 Thread Zak Greant
Hartmut wrote: > does it work with all weights set to one or with only two paramerters? > > (i'm really curious about this, but have no windows test system > available) It only seems to do it in the two situations that I noted. I just did a test suite using 100 words and costs of 1 and

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Wez Furlong
On 2001-05-07 11:07:14, "Jani Taskinen" <[EMAIL PROTECTED]> wrote: > Second question is: What is the use of mysql_query() function anymore > then? Why not just exchange mysql_query() with mysql_unbuffered_query()? > You didn't say anything about any disadvantages on using it. :) The disadvantage

Re: [PHP-DEV] Bug #10702: levenshtein doesn't handle odd arguments well

2001-05-07 Thread Hartmut Holzgraefe
Zak Greant wrote: > > Hartmut wrote: > > does it work with all weights set to one or with only two paramerters? > > > > (i'm really curious about this, but have no windows test system > > available) > > It only seems to do it in the two situations that I noted. > > I just did a test sui

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Zeev Suraski
At 13:07 7/5/2001, Jani Taskinen wrote: >Second question is: What is the use of mysql_query() function anymore >then? Why not just exchange mysql_query() with mysql_unbuffered_query() ? > >You didn't say anything about any disadvantages on using it. :) Well there are some advantages: - In small

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Zeev Suraski
At 13:51 7/5/2001, Wez Furlong wrote: >On 2001-05-07 11:07:14, "Jani Taskinen" <[EMAIL PROTECTED]> wrote: > > Second question is: What is the use of mysql_query() function anymore > > then? Why not just exchange mysql_query() with >mysql_unbuffered_query()? > > You didn't say anything about any di

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Wez Furlong
On 2001-05-07 11:54:45, "Zeev Suraski" <[EMAIL PROTECTED]> wrote: > At 13:51 7/5/2001, Wez Furlong wrote: > >The disadvantage is that you have to retrieve all the rows before you > >can issue further SQL on that connection. > > Zeev, Does the extension take care of this case, or > >does it just re

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Zeev Suraski
At 12:23 7/5/2001, Wez Furlong wrote: >On 2001-05-07 00:26:02, "Zeev Suraski" <[EMAIL PROTECTED]> wrote: > > At 02:16 7/5/2001, Wez Furlong wrote: > > >Should I create a patch that enables the parameter? > > Probably... Are you sure you can't use mysql_unbuffered_query(), > > though? If you're r

[PHP-DEV] Bug #10653 Updated: loop limiters

2001-05-07 Thread cynic
ID: 10653 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Bogus Bug Type: Feature/Change Request Operating system: PHP Version: 4.0.5 Assigned To: Comments: hm, would you also want while23859() ? also, would for1000($i=0;$i $i ) { $i++ ; $rec = mysql_fetch

[PHP-DEV] Bug #7959 Updated: ld: 0711-317 ERROR: Undefined symbol: .alloca

2001-05-07 Thread mviorney
ID: 7959 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: *Install and Config Operating system: AIX 4.3.2 PHP Version: 4.0.3pl1 Description: ld: 0711-317 ERROR: Undefined symbol: .alloca The problem does not appear in this release but now i have the same problem as r

[PHP-DEV] Re: Bug #10676 Updated: sybase_connect

2001-05-07 Thread Shaun Thomas
> What version of the Sybase CT Libs are you using here? > In "Sybase Common-Library/11.1.1/P/Linux", the "net_close" > symbol has been changed to "syb_net_close". According to sybdb.h, 10.0.1... that would explain a few things. ^_^ Thanks. -- +-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Re: [PHP-DEV] (change request) PHP 4.0 Bug Summary Report

2001-05-07 Thread Andrei Zmievski
On Sun, 06 May 2001, Jani Taskinen wrote: > I thought about having those urls too..but as you said, it'll > get too big to be send on the list. > > But what if the summary with URLs could be requested for? > >From some webpage maybe? Or via email? At some point Rasmus used to have a page that li

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Cynic
what about st. like #define MYSQL_QUERY_BUFFERED 0 #define MYSQL_QUERY_UNBUFFERED 1 mysql_query( string query [, int link_identifier [, int mode ]]) mysql_db_query( string database , string query [, int link_identifier [, int mode ]]) with mode defaulting to MYSQL_BUFFERED? so much for the issu

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Cynic
ah, ok, I posted before reading this... anyway, I'd suggest mysql_query_unbuffered instead of mysql_unbuffered_query. At 13:22 7.5. 2001, Zeev Suraski wrote the following: -- >At 12:23 7/5/2001, Wez Furlong wrote: >>On 2001-05-07 00:26

[PHP-DEV] Re: Bug #10369 Updated: Openlink4/ODBC odbc_field_type returns nothing

2001-05-07 Thread Daniel H. Ardison
Firstly, I already compiled with odbc support, as I said it in my mail, I can retrieve the data but I can't retrieve column SQL Data Type, I have a case opened with openlink and the last thing they said was: >Daniel, > >I tested this using the SQL Server native driver, and the results are the sam

Re: [PHP-DEV] Re: mysql and unbuffered queries

2001-05-07 Thread Wez Furlong
On 2001-05-07 12:22:13, "Zeev Suraski" <[EMAIL PROTECTED]> wrote: > It's going to be a bit complex to explain why I didn't want this patch, > but I'll give it a try :) It's OK, I understand. I just wish that you had said this before I comitted the patch ;-) > First off, my personal preference w

[PHP-DEV] Bug #10703: Error unloading php4apache.dll

2001-05-07 Thread juza
From: [EMAIL PROTECTED] Operating system: MS WIN NT 4.0 PHP version: 4.0.5 PHP Bug Type: Apache related Bug description: Error unloading php4apache.dll When stopping Apache service with module php4apache.dll loaded, an application error appears (The instruction at "0x00c59

Re: [PHP-DEV] (change request) PHP 4.0 Bug Summary Report

2001-05-07 Thread rasmus
> On Sun, 06 May 2001, Jani Taskinen wrote: > > I thought about having those urls too..but as you said, it'll > > get too big to be send on the list. > > > > But what if the summary with URLs could be requested for? > > >From some webpage maybe? Or via email? > > At some point Rasmus used to have

[PHP-DEV] Bug #10703 Updated: Error unloading php4apache.dll

2001-05-07 Thread cynic
ID: 10703 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Apache related Operating system: PHP Version: 4.0.5 Assigned To: Comments: this looks like the error in Apache where the modules (mod_php, mod_perl, etc.) weren't given enough time to cleanup).

[PHP-DEV] Bug #10704: $HTTP_SERVER_VARS["PATH_INFO"] is not set on IIS4

2001-05-07 Thread dror
From: [EMAIL PROTECTED] Operating system: NT4sp1 PHP version: 4.0.5 PHP Bug Type: Unknown/Other Function Bug description: $HTTP_SERVER_VARS["PATH_INFO"] is not set on IIS4 using this simple example I get the right result with the previous version (4.04pl1) and "not set" wit

[PHP-DEV] Bug #10155 Updated: Insert or update query not functioning correctly

2001-05-07 Thread kalowsky
ID: 10155 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: ODBC related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: no feedback, considered closed. if untrue, please reopen the bug. Previous Comments:

[PHP-DEV] Bug #7067 Updated: Using the SQL command Max() crashes IIS every single time

2001-05-07 Thread kalowsky
ID: 7067 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: ODBC related Operating system: PHP Version: 4.0.2 Assigned To: Comments: no feedback, considered fixed in latest cvs. if untrue, please reopen the bug. Previous Comments: ---

[PHP-DEV] Bug #9651 Updated: Can't access IBM DB2 UDB5 with ODBC

2001-05-07 Thread kalowsky
ID: 9651 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: ODBC related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: no feedback from user. Previous Comments: ---

[PHP-DEV] Bug #10705: nl2br gives

2001-05-07 Thread al
From: [EMAIL PROTECTED] Operating system: RedHat 7.0 PHP version: 4.0.5 PHP Bug Type: Strings related Bug description: nl2br gives
-- Edit Bug report at: http://bugs.php.net/?id=10705&edit=1 -- PHP Development Mailing List To unsubscribe

[PHP-DEV] Bug #9193 Updated: Oracle via ODBC don't work

2001-05-07 Thread kalowsky
ID: 9193 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: ODBC related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: my translation may be poor, but the error message I see below suggests that your Oracle TNS service is unable to re

[PHP-DEV] Bug #10705 Updated: nl2br gives

2001-05-07 Thread rasmus
ID: 10705 Updated by: rasmus Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Strings related Operating system: PHP Version: 4.0.5 Assigned To: Comments: It is supposed to. is the correct XHTML tag. Previous Comments: --

[PHP-DEV] Bug #10706: yp_next does not report the next entry in the map

2001-05-07 Thread rabellino
From: [EMAIL PROTECTED] Operating system: Solaris PHP version: 4.0.5 PHP Bug Type: YP/NIS related Bug description: yp_next does not report the next entry in the map If I use the Key returned from yp_first or yp_next, on my systems (Solaris 2.6/2.7/2.8 either sparc/Intel), t

[PHP-DEV] cvs and crlf/lf

2001-05-07 Thread Marc Boeren
Hi! Is it true that CVS converts \r\n to \n and vice versa automagically for unix and windows users? Cheerio, Marc. -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administra

[PHP-DEV] Bug #5919 Updated: stri_replace() to compliment str_replace()

2001-05-07 Thread derick
ID: 5919 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Feature/Change Request Operating system: PHP Version: 4.0.0 Assigned To: Comments: Closing because of no feedback Previous Comments:

[PHP-DEV] Bug #10568 Updated: error using ODBC

2001-05-07 Thread kalowsky
ID: 10568 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: ODBC related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: the SQL_CUR_USE_ODBC does not require quotes, try that first. second PHP 4.0.5 is out, do please see if this c

[PHP-DEV] Bug #5883 Updated: --enable-trans-sid modification request

2001-05-07 Thread derick
ID: 5883 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Assigned Status: Feedback Bug Type: Feature/Change Request Operating system: PHP Version: 4.0.1pl2 Assigned To: sas Comments: Sascha, any news on this one yet? Previous Comments: -

[PHP-DEV] Bug #9099 Updated: please include one browscap.ini

2001-05-07 Thread derick
ID: 9099 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Assigned Status: Feedback Bug Type: Feature/Change Request Operating system: PHP Version: 4.0.4pl1 Assigned To: andre Comments: Andre, in the 4.0.6-dev CVS branch, there is still no browscap.ini file. Do you know if me may i

Re: [PHP-DEV] cvs and crlf/lf

2001-05-07 Thread derick
On Mon, 7 May 2001, Marc Boeren wrote: > > Hi! > > Is it true that CVS converts \r\n to \n and vice versa automagically for > unix and windows users? Yes, that is the case with almost any client. Derick Rethans - PHP:

[PHP-DEV] Bug #10316 Updated: error in connecting to MS access database

2001-05-07 Thread kalowsky
ID: 10316 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: ODBC related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: check that you don't need a username and/or password. this really isn't a bug, this is a misconfiguration issue.

[PHP-DEV] Bug #10379 Updated: ns-httpd crashes on php content.

2001-05-07 Thread ptierney
ID: 10379 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: iPlanet related Operating system: Solaris 7 PHP Version: 4.0.4pl1 Description: ns-httpd crashes on php content. I've been able to DL and compile 4.0.5. Now Iplanet will not start with PHP enabled. Relevant obj.conf lines: In

[PHP-DEV] Bug #10707: nl2br gives

2001-05-07 Thread al
From: [EMAIL PROTECTED] Operating system: RedHat 7.0 PHP version: 4.0.5 PHP Bug Type: Strings related Bug description: nl2br gives
It seems that nl2br() returns -- Edit Bug report at: http://bugs.php.net/?id=10707&edit=1 -- PHP Development Mailing List

[PHP-DEV] Bug #10708: modphp crashes if cascaded includes occur

2001-05-07 Thread estartu
From: [EMAIL PROTECTED] Operating system: FreeBSD 4.3-STABLE (not improtant, faild on other OS two) PHP version: 4.0.4pl1 PHP Bug Type: Scripting Engine problem Bug description: modphp crashes if cascaded includes occur I maintain a WebSite with mixed php and SSI pages. SSI

[PHP-DEV] Bug #10636 Updated: php_oci8.c -- undefined constants

2001-05-07 Thread cynic
ID: 10636 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating system: PHP Version: 4.0.5 Assigned To: Comments: thies sez: what version of oci are compiling against? i bet it's 8.0.x! please take out the HAVE_OCI8_TEMP_LOB=1 in the

[PHP-DEV] Bug #10636 Updated: php_oci8.c -- undefined constants

2001-05-07 Thread cynic
ID: 10636 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Open Old-Bug Type: Compile Failure Bug Type: Documentation problem Operating system: PHP Version: 4.0.5 Assigned To: Comments: -> docuprob Previous Comments: -

[PHP-DEV] Bug #10709: child pid xxxx exit signal Segmentation fault (11)

2001-05-07 Thread hvankeer
From: [EMAIL PROTECTED] Operating system: Linux 2.2.5-15 PHP version: 4.0.5 PHP Bug Type: Apache related Bug description: child pid exit signal Segmentation fault (11) I hope I am on the right path to report this. If you need more information, please let me know. I

Re: [PHP-DEV] (change request) PHP 4.0 Bug Summary Report

2001-05-07 Thread Jani Taskinen
Thanks Rasmus. This lbugs.php is just enough. No need to emails. :) --Jani On Mon, 7 May 2001 [EMAIL PROTECTED] wrote: >> On Sun, 06 May 2001, Jani Taskinen wrote: >> > I thought about having those urls too..but as you said, it'll >> > get too big to be send on the list. >> > >> > But what if

[PHP-DEV] Bug #10710: unsufficient checking of odbc persistent connection validity

2001-05-07 Thread pete
From: [EMAIL PROTECTED] Operating system: linux PHP version: 4.0.5 PHP Bug Type: ODBC related Bug description: unsufficient checking of odbc persistent connection validity I'm using sybase adaptive server anywhere on linux as sql server and it disconnects clients after some

[PHP-DEV] Bug #8202 Updated: exec("java -cp classpath classname inputArgument"); has no effect

2001-05-07 Thread sbergmann
ID: 8202 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Function Specific Operating system: PHP Version: 4.0.3pl1 Assigned To: Comments: Does your problem persist with PHP 4.0.5? Have you considered using PHP 4's Java extension to directcly in

[PHP-DEV] bonsai.php.net down, no one cares?

2001-05-07 Thread Cynic
Hi all, bonsai on php.net has been down since 2001-05-03 at least. I've sent a msg to the address given on the error page, which bounced. Since the address is [EMAIL PROTECTED], I concluded it's probably Sascha's address, and sent another mail to [EMAIL PROTECTED] That didn't bounce, I haven't

[PHP-DEV] Bug #10696 Updated: missing dll

2001-05-07 Thread sbergmann
ID: 10696 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Install and Config Operating system: PHP Version: 4.0.5 Assigned To: Comments: Have a look at http://www.php4win.de/ for every information / files you need in order to run PHP 4 on Windo

Re: [PHP-DEV] bonsai.php.net down, no one cares?

2001-05-07 Thread Andrei Zmievski
The MySQL server on the machine died. I've restarted it and it's now rebuilding the entire check-in history to make sure it's complete. I'm the lxr/bonsai maintainer so email me in the future. On Mon, 07 May 2001, Cynic wrote: > Hi all, > > bonsai on php.net has been down since 2001-05-03 at l

[PHP-DEV] Bug #10707 Updated: nl2br gives

2001-05-07 Thread cardinal
ID: 10707 Updated by: cardinal Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Strings related Operating system: PHP Version: 4.0.5 Assigned To: Comments: What it's actually outputting is "\n" Yields One Two This is consistent with its old behavior, which

[PHP-DEV] documentation

2001-05-07 Thread Harald Radi
hi, how should classes be documented ? since they are not really a function they only have a return value together with new and seems to be illogical. is there also a way to document members and attributes ? is there a list of tags that are available ? -harald -- PHP Development Mailing List

[PHP-DEV] Bug #7822 Updated: system crash

2001-05-07 Thread sbergmann
ID: 7822 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Apache related Operating system: PHP Version: 4.0.4 Assigned To: Comments: I don't see the point in accessing http://localhost/php/php.exe. So, why do you want to do that? Previous Comm

[PHP-DEV] Bug #9422 Updated: Apache hangs when Win goes to standby

2001-05-07 Thread sbergmann
ID: 9422 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Apache related Operating system: PHP Version: 4.0.4 Assigned To: Comments: Are you loading non-thread-safe PHP Extensions in your php.ini? Does this problem persist with PHP 4.0.5? Prev

[PHP-DEV] Bug #9685 Updated: Error message from Windows: Apache has caused an error in MSVCRT.DLL

2001-05-07 Thread sbergmann
ID: 9685 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Arrays related Operating system: PHP Version: 4.0.3pl1 Assigned To: Comments: Does this problem persist with PHP 4.0.5? Previous Comments: ---

[PHP-DEV] Bug #10574 Updated: Gets stuck on explode() when delimiter is not in the string

2001-05-07 Thread sbergmann
ID: 10574 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Arrays related Operating system: PHP Version: 4.0.5 Assigned To: Comments: Can't reproduce this with PHP 4.0.6-dev either, on Win2K. Tested it both from the command-line with 'php -q test

[PHP-DEV] Bug #9289 Updated: Command line argument list inaccurate

2001-05-07 Thread derick
ID: 9289 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Unknown/Other Function Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Previous Comments: --- [2001-02

[PHP-DEV] Bug #10299 Updated: CPU and Memory Spike

2001-05-07 Thread derick
ID: 10299 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Performance problem Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: marking critical for php 4.0.6 Previous Comments: -

[PHP-DEV] Bug #10053 Updated: Insert sentence error

2001-05-07 Thread sbergmann
ID: 10053 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: COM related Operating system: PHP Version: 4.0.4 Assigned To: Comments: Does this problem persist with PHP 4.0.6-dev? There have been a lot of changes to ext/com recently, including impro

[PHP-DEV] Bug #8725 Updated: Fun with putenv

2001-05-07 Thread derick
ID: 8725 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Apache related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Marking as "fix-before-4.0.6" Previous Comments:

[PHP-DEV] Bug #10671 Updated: Cannot retrieve secondary object properties

2001-05-07 Thread sbergmann
ID: 10671 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: COM related Operating system: PHP Version: 4.0.5 Assigned To: Comments: Does this problem persist with PHP 4.0.6-dev? There have been a lot of changes to ext/com recently, including impro

[PHP-DEV] Bug #10431 Updated: ini_alter eats the include_path

2001-05-07 Thread derick
ID: 10431 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Unknown/Other Function Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: marking as to be fixed before PHP 4.0.6 Previous Comments: -

[PHP-DEV] Bug #10690 Updated: pdf_open_memory_image() not implemented in Windows version

2001-05-07 Thread derick
ID: 10690 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: PDF related Operating system: PHP Version: 4.0.5 Assigned To: Comments: Marking as fix before 4.0.6 Previous Comments: ---

[PHP-DEV] Bug #9427 Updated: PHP hangs when packets aren't returned when using session_start()

2001-05-07 Thread derick
ID: 9427 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Performance problem Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Marking as fix before 4.0.6 Previous Comments: -

[PHP-DEV] Bug #10640 Updated: php_curl.dll

2001-05-07 Thread sbergmann
ID: 10640 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Compile Failure Operating system: PHP Version: 4.0 Latest CVS (03/05/2001) Assigned To: Comments: dbeuMon Apr 30 02:57:16 2001 EDT Modified files: /php4/e

[PHP-DEV] Bug #9878 Updated: gmmktime is 1 hour off during standard time

2001-05-07 Thread derick
ID: 9878 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Analyzed Status: Feedback Bug Type: Date/time related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Waiting for feedback on Rasmus' question. Previous Comments: -

[PHP-DEV] Bug #7822 Updated: system crash

2001-05-07 Thread cynic
ID: 7822 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: Apache related Operating system: PHP Version: 4.0.4 Assigned To: Comments: I guess the point is to prevent malicious users from crashing the server. Previous Comments:

[PHP-DEV] Bug #10686 Updated: Bug in "mktime()" on values out of bounds

2001-05-07 Thread derick
ID: 10686 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Date/time related Operating system: PHP Version: 4.0.5 Assigned To: Comments: Marking as fix before 4.0.6 Previous Comments: -

[PHP-DEV] Bug #8828 Updated: mktime using mday<=0

2001-05-07 Thread derick
ID: 8828 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Duplicate Bug Type: Date/time related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Dup of #10686 Previous Comments: ---

[PHP-DEV] Bug #1249 Updated: url_parse() is a bit too strict

2001-05-07 Thread derick
ID: 1249 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: URL related Operating system: PHP Version: 4.0 Assigned To: Comments: marking as fix before 4.0.6 Previous Comments: --

[PHP-DEV] Bug #9896 Updated: segfaults at $xmldoc->add_root("root");

2001-05-07 Thread derick
ID: 9896 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: DOM XML related Operating system: PHP Version: 4.0 Latest CVS (21/03/2001) Assigned To: Comments: marking as fix before 4.0.6 Previous Comments: --

[PHP-DEV] Bug #9526 Updated: Copy function is not affected by the security settings

2001-05-07 Thread derick
ID: 9526 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Critical Bug Type: Unknown/Other Function Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Marking as fix before 4.0.6 Previous Comments: --

Re: [PHP-DEV] Bug #7822 Updated: system crash

2001-05-07 Thread Sebastian Bergmann
[EMAIL PROTECTED] wrote: > I guess the point is to prevent malicious users from crashing the server. Ouch :-( -- sebastian bergmann[EMAIL PROTECTED] http://www.sebastian-bergmann.de bonn.phpug.de | www.php.net | www.phpOpen

[PHP-DEV] Bug #10709 Updated: child pid xxxx exit signal Segmentation fault (11)

2001-05-07 Thread derick
ID: 10709 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Apache related Operating system: PHP Version: 4.0.5 Assigned To: Comments: With which three scripts does this occur? If they are small please include them here, or you can send them to me by

[PHP-DEV] Bug #9781 Updated: sig 11

2001-05-07 Thread sbergmann
ID: 9781 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Output Control Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Does this problem persist with PHP 4.0.5? Previous Comments: -

[PHP-DEV] Re: Bug #10640 Updated: php_curl.dll

2001-05-07 Thread Sebastian Bergmann
Cynic wrote: > ok, so the outcome is that it takes 3+ days for changes in CVS > to get propagated to snapshots at snaps.php.net? because I got > that error with php4-200105030645, i. e. a snap from May 3rd. Oops, I trusted Daniel's 'fix win32 build' commit message, as it generaly holds true if

[PHP-DEV] Bug #7409 Updated: xml_parse has a limit of 16 attributes on Windows

2001-05-07 Thread sbergmann
ID: 7409 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Status: Open Bug Type: XML related Operating system: PHP Version: 4.0.3pl1 Assigned To: Comments: Does this problem persist with a newer version of PHP, like PHP 4.0.5? Previous Comments:

[PHP-DEV] Bug #10711: Form with enctype="multipart/form-data" critical error

2001-05-07 Thread vladtr
From: [EMAIL PROTECTED] Operating system: win98 osr2 PHP version: 3.0.16 PHP Bug Type: Reproducible crash Bug description: Form with enctype="multipart/form-data" critical error When I try to send same file windows write "Critical error in program php3.exe..." and closed PH

[PHP-DEV] Bug #6421 Updated: PEAR - error emulating prepare/execute with PostgreSQL

2001-05-07 Thread sbergmann
ID: 6421 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Unknown/Other Function Operating system: PHP Version: 4.0 Latest CVS (29/08/2000) Assigned To: Comments: Have you tried a newer version of PEAR/DB, for instance the one that ships with PHP

[PHP-DEV] Bug #7409 Updated: xml_parse has a limit of 16 attributes on Windows

2001-05-07 Thread derick
ID: 7409 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: XML related Operating system: PHP Version: 4.0.3pl1 Assigned To: Comments: changing to status feedback Previous Comments: -

[PHP-DEV] Bug #10711 Updated: Form with enctype="multipart/form-data" critical error

2001-05-07 Thread derick
ID: 10711 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Reproducible crash Operating system: PHP Version: 3.0.16 Assigned To: Comments: Can you try the much newer version 4.0.5 and see if the problem still exists? Previous Comments: -

[PHP-DEV] Bug #10209 Updated: php_sybase_ct.dll is causing illegal operation

2001-05-07 Thread sbergmann
ID: 10209 Updated by: sbergmann Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Sybase-ct (ctlib) related Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Are you using PHP as an ApacheModule or via CGI? If your using the module version this could indic

[PHP-DEV] Bug #10671 Updated: Cannot retrieve secondary object properties

2001-05-07 Thread sasha
ID: 10671 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: COM related Operating system: Windows 2000 PHP Version: 4.0.5 Description: Cannot retrieve secondary object properties IT turns out this bug has been fixed in ext/com/conversion.c 1.8 Thanks Sasha Previ

Re: [PHP-DEV] Re: Bug #10640 Updated: php_curl.dll

2001-05-07 Thread Cynic
anyway, it built with php4-200105070645, so the report may stay closed. At 19:05 7.5. 2001, Sebastian Bergmann wrote the following: -- >Cynic wrote: >> ok, so the outcome is that it takes 3+ days for changes in CVS >> to get propagated

[PHP-DEV] Bug #10671 Updated: Cannot retrieve secondary object properties

2001-05-07 Thread derick
ID: 10671 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: COM related Operating system: PHP Version: 4.0.5 Assigned To: Comments: user says it's fixed Previous Comments: --- [20

[PHP-DEV] Re: [Bug #10711 Updated: Form with enctype="multipart/form-data" critical error]

2001-05-07 Thread Vlad Tr
I can try PHP4, but can not use it. Because my host provider have version PHP3. If I upload my PHP4 pages to server I’m afraid for new problems. Bug Database <[EMAIL PROTECTED]> wrote: ID: 10711 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Reproduc

Re: [PHP-DEV] Re: Bug #10640 Updated: php_curl.dll

2001-05-07 Thread Daniel Beulshausen
At 19:05 07.05.2001 +0200, Sebastian Bergmann wrote: >Cynic wrote: > > ok, so the outcome is that it takes 3+ days for changes in CVS > > to get propagated to snapshots at snaps.php.net? because I got > > that error with php4-200105030645, i. e. a snap from May 3rd. > > Oops, I trusted Daniel's

[PHP-DEV] Bug #10711 Updated: Form with enctype="multipart/form-data" critical error

2001-05-07 Thread cynic
ID: 10711 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: Reproducible crash Operating system: PHP Version: 3.0.16 Assigned To: Comments: user feedback: I can try PHP4, but can not use it. Because my host provider have version PHP3. If I upload m

[PHP-DEV] RE: Bug #10209 Updated: php_sybase_ct.dll is causing illegal operation

2001-05-07 Thread Deprez, Suzanne
I have been able to resolve this. I found out that the dll (used with Apache) on your site was not compatible with Sybase 11. There were also issues with the instructions for Sybase on your site. I strongly urge that the dll and the instructions be updated to avoid this pain for others. Thank

[PHP-DEV] Bug #10712: undefined symbol: ldap_value_free

2001-05-07 Thread wolfgangebneter
From: [EMAIL PROTECTED] Operating system: linux 2.2.16 PHP version: 4.0.4pl1 PHP Bug Type: Dynamic loading Bug description: undefined symbol: ldap_value_free Apache gives the error message : cannot load .../libphp4.so into server undefined symbol : ldap_value_free compiled

[PHP-DEV] Bug #10712 Updated: undefined symbol: ldap_value_free

2001-05-07 Thread derick
ID: 10712 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Dynamic loading Operating system: PHP Version: 4.0.4pl1 Assigned To: Comments: Can you try this with php 4.0.5 and see if the problem still exists? Previous Comments: ---

[PHP-DEV] Bug #9878 Updated: gmmktime is 1 hour off during standard time

2001-05-07 Thread bfoddy
ID: 9878 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: Date/time related Operating system: Solaris 2.6 PHP Version: 4.0.4pl1 Description: gmmktime is 1 hour off during standard time Sorry, I replied to the email, but it didn't get logged to the record. Yes I'm

  1   2   >