Re: [PHP-DEV] PHP 4.0.4 patchlevel 1 released

2001-01-13 Thread Rasmus Lerdorf
Could you guys confirm that this problem no longer exists? On Sat, 13 Jan 2001, Anil Madhavapeddy wrote: > Quoting Phil Driscoll <[EMAIL PROTECTED]>: > > > my ISP reckons that the DNS machines for php.net are not > > giving authoritative responses. > > Just to confirm this problem (I have it too

[PHP-DEV] module to interface vpopmail

2001-01-13 Thread Boian Bonev
hi, i am using vpopmail for a large site with many users signing in or changing quotas, etc. for those who are not familiar to vpopmail - it is free qmail addon to implement easy virtual domain management - more info on http://www.inter7.com/vpopmail/. the site is wholy php based. for more than

Re: [PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-13 Thread Sascha Schumann
> register_ini_entries(), which is the service function that modules use to > register their entries, doesn't use alter_ini_entry(). It checks the > configuration hash (=php.ini) for a default value. If it exists, it uses > it as the default value (it doesn't use alter_ini_entry()), if it doesn'

[PHP-DEV] PHP 4.0 Bug #8695: set_time_limit() is ignored during exectution of shell commands

2001-01-13 Thread dave
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.4pl1 PHP Bug Type: Output Control Bug description: set_time_limit() is ignored during exectution of shell commands If set_time_limit(), as well as the default execution limit, is ignored during exection of a s

Re: [PHP-DEV] set_error_handler() not handling E_ERROR

2001-01-13 Thread Chris Newbill
Skimming the Zend code... Calls to undefined functions, class methods, and the like. What would be the cons of having these type of errors simply causing E_USER_ERROR instead of E_ERROR? That way they would be trapable and I don't think it would cause a problem if the user does not have a custo

Re: [PHP-DEV] set_error_handler() not handling E_ERROR

2001-01-13 Thread Chris Newbill
Okay, guess I'll have to wait for those changes then. Maybe included in 4.0.5?? =) Thanks, Chris Newbill - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: "Chris Newbill" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, January 13, 2001 10:51 PM Subject: Re:

Re: [PHP-DEV] set_error_handler() not handling E_ERROR

2001-01-13 Thread Rasmus Lerdorf
This was covered recently. See http://marc.theaimsgroup.com/?l=php-dev&m=97673386418430&w=2 On Sat, 13 Jan 2001, Chris Newbill wrote: > PHP Version 4.0.3pl1 and 4.0.4 > > It was my understanding that when using set_error_handler() ALL errors were > sent to the users function? This does not see

[PHP-DEV] set_error_handler() not handling E_ERROR

2001-01-13 Thread Chris Newbill
PHP Version 4.0.3pl1 and 4.0.4 It was my understanding that when using set_error_handler() ALL errors were sent to the users function? This does not seem to be happening. error.lib $oeh = set_error_handler("dosojin_ERROR"); error_reporting(E_ERROR | E_WARNING | E_PARSE | E_CORE_ERROR | E_C

[PHP-DEV] PHP 4.0 Bug #8694 Updated: Date function core dumps with escaped chars

2001-01-13 Thread david
ID: 8694 Updated by: david Reported By: [EMAIL PROTECTED] Old-Status: Analyzed Status: Closed Bug Type: Date/time related Assigned To: Comments: Fixed in CVS. Note also that "\t" produces a tab character. You probably want to use '\t' with single quotes instead. Or even better, date("m d")." of

[PHP-DEV] CPdf Font file?

2001-01-13 Thread Jonathan Sharp
Where is the font.lst file for the cpdf lib supposted to go? It's used to map font names to font files...any place that I stick it it gives an error that it can't find 'font.lst'... Thanks, -Jonathan -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP-DEV] Moving errata notes around.

2001-01-13 Thread Rasmus Lerdorf
Not really. You'd have to massage the database directly. Why not just process the user comments as you go? Either delete them or fold the comments into the docs? -Rasmus On Sat, 13 Jan 2001, Ron Chmara wrote: > > I'm in the process of re-writing the Installation section, which > will be grea

[PHP-DEV] PHP 4.0 Bug #8693 Updated: Problem upgradong from 4.0.3pl1 to 4.0.4pl1

2001-01-13 Thread rasmus
ID: 8693 Updated by: rasmus Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Install and Config Assigned To: Comments: This can only be user error. Note that you are mixing up your versions in your bug report. You are saying that you are trying to upgrade to 4.0.3pl1

Re: [PHP-DEV] cgi+dso

2001-01-13 Thread Boian Bonev
hi, i'd appreciate this feature very much (perhaps many others also will)... in most of my setups (about 10 servers) i need to compile both versions and keeping apache module and command line php setup in sync is somewhat hard and sometimes problematic ;) b. > I was wondering if there's curren

[PHP-DEV] PHP 4.0 Bug #8694 Updated: Date function core dumps with escaped chars

2001-01-13 Thread rasmus
ID: 8694 Updated by: rasmus Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Analyzed Bug Type: Date/time related Assigned To: Comments: Unable to reproduce in current CVS - perhaps fixed. Try a snapshot from snaps.php.net please. Previous Comments:

RE: [PHP-DEV] PHP 4.0 Bug #8694: Date function core dumps with escaped chars

2001-01-13 Thread Sean R. Bright
Have you tried this with the latest CVS version? It works fine here with the latest CVS. Sean > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Saturday, January 13, 2001 10:41 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DEV] PHP 4.0 Bug #8694: Date functi

[PHP-DEV] Code Contribution: More localeconv() win32

2001-01-13 Thread Sean R. Bright
Hello again, I forgot about Win32 in that last patch, this patch should make this compile happily under Windows. Thanks, Sean == Sean Bright [EMAIL PROTECTED] / [EMAIL PROTECTED] == Index: php4/main/config.w32.h ===

[PHP-DEV] PHP 4.0 Bug #8694: Date function core dumps with escaped chars

2001-01-13 Thread dirk
From: [EMAIL PROTECTED] Operating system: Red Hat 6.2 PHP version: 4.0.4pl1 PHP Bug Type: Date/time related Bug description: Date function core dumps with escaped chars put the above code snippet in a file called test.php - run the php cgi from the command line php -q t

[PHP-DEV] Code Contribution: localeconv()

2001-01-13 Thread Sean R. Bright
Hello, I noticed on the PHP setlocale manual page that localeconv() was not yet implemented. I went ahead and coded it up. I was going to list a bunch of stuff about it like why I chose to do things certain ways, etc. but I figure you will ask or flame if you see something you don't like :) Pl

[PHP-DEV] PHP 4.0 Bug #8693: Problem upgradong from 4.0.3pl1 to 4.0.4pl1

2001-01-13 Thread thebomani
From: [EMAIL PROTECTED] Operating system: Red Hat 6.2 i386 PHP version: 4.0.4pl1 PHP Bug Type: *Install and Config Bug description: Problem upgradong from 4.0.3pl1 to 4.0.4pl1 I am runing apache 1.3.14 from a rpm and PHP 4.0.3pl1 from a tar.ball. I have tried to upgrade to

Re: [PHP-DEV] preferred format for patches?

2001-01-13 Thread Rasmus Lerdorf
diff -u please On Sat, 13 Jan 2001, Stephen van Egmond wrote: > Hello, > > I don't have a CVS account but I only have a small number of patches to > contribute to the current CVS to help it build under the BeOS. > > How would you like the patches computed? i.e. what command ought I run > to g

[PHP-DEV] PHP 4.0 Bug #8678 Updated: microtime() does not work very well

2001-01-13 Thread sniper
ID: 8678 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Duplicate Bug Type: Date/time related Assigned To: Comments: Duplicate of #4968 Previous Comments: --- [2001-01-12 11:52:15] [EMAIL PROT

[PHP-DEV] PHP 4.0 Bug #6387 Updated: gettimeofday, microtime

2001-01-13 Thread sniper
ID: 6387 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Duplicate Bug Type: Date/time related Assigned To: Comments: Duplicate of #4968 Previous Comments: --- [2000-08-30 08:30:59] [EMAIL PRO

[PHP-DEV] PHP 4.0 Bug #8000 Updated: Date function crashes PHP with specific format strings

2001-01-13 Thread sniper
ID: 8000 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Duplicate Status: Closed Bug Type: Date/time related Assigned To: Comments: This is fixed in CVS. --Jani Previous Comments: --- [2000-12-07 09:32:54

[PHP-DEV] PHP 4.0 Bug #8185 Updated: date function crashes with T option

2001-01-13 Thread sniper
ID: 8185 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Duplicate Status: Closed Bug Type: Date/time related Assigned To: Comments: This is fixed in CVS. --Jani Previous Comments: --- [2000-12-09 22:11:

[PHP-DEV] PHP 4.0 Bug #8692: Bad registry information

2001-01-13 Thread bp
From: [EMAIL PROTECTED] Operating system: Wind 98 se/PWS4 PHP version: 4.0.4 PHP Bug Type: Documentation problem Bug description: Bad registry information In the documentation for PHP on Win9x platforms, the documentation says to install this key: [HKEY_LOCAL_MACHINE\SYSTE

php-dev@lists.php.net

2001-01-13 Thread sniper
ID: 8408 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Duplicate Status: Bogus Bug Type: Documentation problem Assigned To: Comments: Just cleaning up bug database. This one is duplicate of #8406. (which is closed) Previous Comments:

[PHP-DEV] PHP 4.0 Bug #6609 Updated: bogus

2001-01-13 Thread sniper
ID: 6609 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Duplicate Status: Bogus Bug Type: Documentation problem Assigned To: Comments: Previous Comments: --- [2000-09-07 13:08:27] [EMAIL PROTECTED] ^this is

Re: [PHP-DEV] cgi+dso

2001-01-13 Thread Rasmus Lerdorf
Yes, we have talked about this in the past and it would be a good thing. So if you think you can make it happen, go for it. -Rasmus On Sun, 14 Jan 2001, Anil Madhavapeddy wrote: > I was wondering if there's currently any way to compile up > both the CGI version, and the Apache DSO in a single

[PHP-DEV] cgi+dso

2001-01-13 Thread Anil Madhavapeddy
I was wondering if there's currently any way to compile up both the CGI version, and the Apache DSO in a single compile? Looking at the autoconf stuff implies that there isn't, since there's a single PHP_SAPI variable that defaults to cgi. Is there any interest in this changing? With the rise

RE: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Zeev Suraski
That looks like leftovers from earlier builds - the latest CVS is fine in that regard. I also fixes the non-ZTS problems. Zeev At 01:21 14/1/2001, Sean R. Bright wrote: >Thanks, you may want to check it thread safe again as well. Getting alot of >errors that look like this: > >/usr/cvs/php4/e

RE: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Sean R. Bright
Nevermind the thread safe stuff, had a case of the RTFMs and forgot to make clean. All is well with ZTS build now. Non-ZTS is still a problem though. :) > -Original Message- > From: Sean R. Bright [mailto:[EMAIL PROTECTED]] > Sent: Saturday, January 13, 2001 6:21 PM > To: 'Zeev Suraski

Re: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Jim Jagielski
It's the wrapper for ZTS not fully wrapping what it should... Derick Rethans wrote: > > Hello, > > can you try the latest CVS? Zeev did some work on it today. > > Derick -- === Jim Jagielski [|] [EMAIL PROTECTED]

[PHP-DEV] Moving errata notes around.

2001-01-13 Thread Ron Chmara
I'm in the process of re-writing the Installation section, which will be greatly enhanced if I can move errata notes from older pages to newer subsections... aside from a copy-paste method, is there some facility/method already built for this task? -Ronabop -- Personal: [EMAIL PROTECTED], 520-3

RE: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Sean R. Bright
Thanks, you may want to check it thread safe again as well. Getting alot of errors that look like this: /usr/cvs/php4/ext/standard/exec.c:53: undefined reference to `core_globals_id' /usr/cvs/php4/ext/standard/exec.c:53: undefined reference to `ts_resource_ex' /usr/cvs/php4/ext/standard/exec.c:5

Re: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Zeev Suraski
Ok, I did the development under Windows and didn't check the thread-unsafe mode. I'll fix it. At 00:54 14/1/2001, Sean R. Bright wrote: >Already did, these are happening after getting your changes. (I watch the >cvs list as well ;)) > > > -Original Message- > > From: Derick Rethans [m

RE: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Sean R. Bright
D'oh! Ok... But my build is broken... Wh! ;) Thanks, Sean > -Original Message- > From: Derick Rethans [mailto:[EMAIL PROTECTED]] > Sent: Saturday, January 13, 2001 6:18 PM > To: Sean R. Bright > Cc: 'Derick Rethans'; [EMAIL PROTECTED] > Subject: RE: FW: [PHP-DEV] file.c fsock.

RE: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Derick Rethans
On Sat, 13 Jan 2001, Sean R. Bright wrote: > Derick: > > No, they fixed some of the problems, but if you read the code snippet that I > included below, you will see that file_globals_ctor and file_globals_dtor > are defined inside the preprocessor macros for ZTS, so if ZTS is not defined > they a

RE: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Sean R. Bright
Derick: No, they fixed some of the problems, but if you read the code snippet that I included below, you will see that file_globals_ctor and file_globals_dtor are defined inside the preprocessor macros for ZTS, so if ZTS is not defined they are not created. However, lower in the snippet you wil

Re: FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Derick Rethans
On Sat, 13 Jan 2001, Sean R. Bright wrote: > > Already did, these are happening after getting your changes. (I watch the > cvs list as well ;)) Did my changes broke this? Derick > > > -Original Message- > > From: Derick Rethans [mailto:[EMAIL PROTECTED]] > > Sent: Saturday, January 13

FW: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Sean R. Bright
Already did, these are happening after getting your changes. (I watch the cvs list as well ;)) > -Original Message- > From: Derick Rethans [mailto:[EMAIL PROTECTED]] > Sent: Saturday, January 13, 2001 6:04 PM > To: Sean R. Bright > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] file.c f

Re: [PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Derick Rethans
Hello, can you try the latest CVS? Zeev did some work on it today. Derick On Sat, 13 Jan 2001, Sean R. Bright wrote: > > Anyone see the logical problem with this besides me? > > #ifdef ZTS > static void file_globals_ctor(FLS_D) <--- THIS is defined if thread safe > { > zend_hash_init(&

[PHP-DEV] file.c fsock.c ... Again ...

2001-01-13 Thread Sean R. Bright
Anyone see the logical problem with this besides me? #ifdef ZTS static void file_globals_ctor(FLS_D) <--- THIS is defined if thread safe { zend_hash_init(&FG(ht_fsock_keys), 0, NULL, NULL, 1); zend_hash_init(&FG(ht_fsock_socks), 0, NULL, (void (*)(void *))php_msock_destroy, 1);

Re: [PHP-DEV] sybase_get_last_message() patch for Sybase CT

2001-01-13 Thread Zeev Suraski
Applied - thanks! At 00:24 14/1/2001, Jan Fedak wrote: >Hello. > >sybase module exports a handy function called sybase_get_last_message(). >we used to use it. but then we had to switch to sybase_ct module and it >doesn't have it. > >the attached patch should fix it. > >please consider adding it.

[PHP-DEV] PHP 4.0 Bug #6652 Updated: include() require() add trailing CRLF

2001-01-13 Thread cynic
ID: 6652 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: *Function Specific Assigned To: Comments: sorry, it should have been ... after the include()d / requre()d text OR at the end of ... Previous Comments: ---

[PHP-DEV] sybase_get_last_message() patch for Sybase CT

2001-01-13 Thread Jan Fedak
Hello. sybase module exports a handy function called sybase_get_last_message(). we used to use it. but then we had to switch to sybase_ct module and it doesn't have it. the attached patch should fix it. please consider adding it. Jan -- Jan Fedaktalk:[EMAIL PROT

[PHP-DEV] PHP 4.0 Bug #8691: Periodically recieve "Unable to create Java Virtual Machine" when running test

2001-01-13 Thread dgreer
From: [EMAIL PROTECTED] Operating system: Linux kernel 2.1.12 (RH 6.1) PHP version: 4.0.3pl1 PHP Bug Type: Unknown/Other Function Bug description: Periodically recieve "Unable to create Java Virtual Machine" when running test Environment: Linux 6.1, Kernel 2.1.12, Apache 1

Re: [PHP-DEV] Improved transparent compressor

2001-01-13 Thread Zeev Suraski
I haven't looked into this patch, but can't this be done using the chunked output buffering support? A 4KB buffer should be much more efficient than compressing each and every separate piece of output... The chunked output buffering support made it into 4.0.4, although it's untested, and ob_

[PHP-DEV] PHP 4.0 Bug #8690:

2001-01-13 Thread suen
From: [EMAIL PROTECTED] Operating system: Solaris 8 PHP version: 4.0.4 PHP Bug Type: *Install and Config Bug description: OS: Sun Solaris 8 Apache Version: 1.3.14 Php Version: php-4.0.4pl1 I am tryingto install php as static. What is the difference between Dynamic and Sta

Re: [PHP-DEV] comments in php

2001-01-13 Thread Andi Gutmans
As it is a compile first, execute later interpreter it will in practice not slow down your code. Of course if your script has only a very small amount of flat code (no loops/function calls) and a huge amount of comments (tens of KB) then it could theoretically make a difference but in reality i

Re: [PHP-DEV] preferred format for patches?

2001-01-13 Thread Sterling Hughes
cvs diff -uN filename -Sterling Stephen van Egmond wrote: > > Hello, > > I don't have a CVS account but I only have a small number of patches to > contribute to the current CVS to help it build under the BeOS. > > How would you like the patches computed? i.e. what command ought I run > to ge

[PHP-DEV] preferred format for patches?

2001-01-13 Thread Stephen van Egmond
Hello, I don't have a CVS account but I only have a small number of patches to contribute to the current CVS to help it build under the BeOS. How would you like the patches computed? i.e. what command ought I run to generate them? -- ,,, (. .) +--ooO-(_)-Ooo --- -- -

Re: [PHP-DEV] FW: comments in php

2001-01-13 Thread Roman Neuhauser
You can easily check this yourself: $t1 = time() ; for( $i = 0 ; $i < 100 ; $i++ ) ; echo ( time() - $t1 ) ; vs. $t1 = time() ; for( $i = 0 ; $i < 100 ; $i++ ) { /* * 1k of dummy text */ } echo ( time() - $t1 ) ; -- PHP Development Mailing List T

[PHP-DEV] FW: comments in php

2001-01-13 Thread mOrP
I am wondering, since php is an interpreted language, if it slows down the more comments are inside a sourcecode or not. thanx, mOrP -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact th

[PHP-DEV] comments in php

2001-01-13 Thread Moritz Petersen
I am wondering, since php is an interpreted language, if it slows down the more comments are inside a sourcecode or not. thanx, mOrP -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact th

[PHP-DEV] Do you know?

2001-01-13 Thread 001WebHost.Com
Do you Guys/Gals know how to send the values of a variable to the Visitor's Browser through the PHP Interpreter. I have a code that says : //First part of HTML $file_pointer=fopen('skeleton_part_one.php','r'); $out_stream=fpassthru($file_pointer); //Fetching the Content Section of thi

[PHP-DEV] PHP 4.0 Bug #8689 Updated: pg_Connect() seems to do some type of caching that doesn't quite work

2001-01-13 Thread matt
ID: 8689 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: PostgreSQL related Description: pg_Connect() seems to do some type of caching that doesn't quite work Previous Comments: --- [2001-01-13 14:08:06] [EMAIL PR

[PHP-DEV] PHP 4.0 Bug #8689: pg_Connect() seems to do some type of caching that doesn't quite work

2001-01-13 Thread matt
From: [EMAIL PROTECTED] Operating system: Linux (2.2.7) PHP version: 4.0.2 PHP Bug Type: PostgreSQL related Bug description: pg_Connect() seems to do some type of caching that doesn't quite work "; // note 1: by commenting out the following line the bug disappears $

[PHP-DEV] PHP 4.0 Bug #8280 Updated: Segmentation violation

2001-01-13 Thread cynic
ID: 8280 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Unknown/Other Function Assigned To: Comments: have you tried that with socket support enabled? did it help? Previous Comments: --

[PHP-DEV] PHP 4.0 Bug #6474 Updated: no unlink() for deleting folders

2001-01-13 Thread cynic
ID: 6474 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: Directory function related Assigned To: Comments: user feedback: seems to work fine so far in win2000 Previous Comments: -

[PHP-DEV] PHP 4.0 Bug #8413 Updated: connection_status() returns 0 on timeout

2001-01-13 Thread cynic
ID: 8413 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Unknown/Other Function Assigned To: Comments: I get no output at all (RH6.2 4.0.4 & NT5 php4-200101130745) Previous Comments: --- [2000-12-25

[PHP-DEV] Re: PHP 4.0 Bug #6537 Updated: mail() does not seem to handle SMTP multi-line responses

2001-01-13 Thread Manuel Lemos
Hello Bug, On 10-Jan-01 03:26:38, you wrote: >ID: 6537 >Updated by: david >Reported By: [EMAIL PROTECTED] >Old-Status: Open >Status: Assigned >Bug Type: Mail related >Assigned To: david >Comments: >I have fixed this, and tested with manual input. Does anyone have a handy >SMTP server that sends

[PHP-DEV] Re: PHP 4.0 Bug #6474 Updated: no unlink() for deleting folders

2001-01-13 Thread Chris
hi welll...yeahseems to work fine so far in win2000I'll let ya know guy if something goes wrong! :-) see ya and good luck, Chris Bug Database wrote: > ID: 6474 > Updated by: cynic > Reported By: [EMAIL PROTECTED] > Old-Status: Analyzed > Status: Feedback > Bug Type: Directory

[PHP-DEV] mysql_fetch_object returns MYSQL_BOTH-type result set

2001-01-13 Thread Roman Neuhauser
This is bug #8656, and should be really easy to fix. As far as I can see, all that is needed to fix it is to change a single call in ext/mysql/php_mysql.c: - php_mysql_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); + php_mysql_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, MYSQL_ASSOC); The wa

[PHP-DEV] mysql_fetch_object returns MYSQL_BOTH-type result set

2001-01-13 Thread Roman Neuhauser
This is bug #8656, and should be really easy to fix. As far as I can see, all that is needed to fix it is to change a single call in ext/mysql/php_mysql.c: - php_mysql_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); + php_mysql_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, MYSQL_ASSOC); The wa

[PHP-DEV] PHP 4.0 Bug #6652 Updated: include() require() add trailing CRLF

2001-01-13 Thread cynic
ID: 6652 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Function Specific Assigned To: Comments: hm... unable to reproduce it on RH6.2 with 4.0.4 does it happen only with include() and require()? does the appended newline appear after the include(

Re: [PHP-DEV] Improved transparent compressor

2001-01-13 Thread Jim Studt
You might hold off on applying the patch. There is an NT porter fixing up my various NT transgressions. (Mostly related to global variable prepration.) I will repost it after it clears NT. -- Jim Studt, President The Fe

[PHP-DEV] PHP 4.0 Bug #6652 Updated: include() require() add trailing CRLF

2001-01-13 Thread kevin
ID: 6652 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: *Function Specific Description: include() require() add trailing CRLF Yes, We are now running 4.0.4 It has the same result. -Kevin Previous Comments:

Re: [PHP-DEV] PHP 4.0.4 patchlevel 1 released

2001-01-13 Thread Phil Driscoll
The Windows binaries are now up on the site. Daniel - I added the Win32 readme.txt file which was missing from your zip. Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP Development Mailing List To uns

[PHP-DEV] Dbase patch

2001-01-13 Thread Geoff Jukema
I've been adding (foxpro25) memo support to dbase - works quite well : http://www.jukeware.com/projects/dbase-01102001.tar.gz I'll compile it into 4.0.4pl1 today -- Geoff Jukema [EMAIL PROTECTED] [EMAIL PROTECTED] www.daemonnews.org -- PHP Development Mailing List

Re: [PHP-DEV] PHP 4.0.4 patchlevel 1 released

2001-01-13 Thread Rasmus Lerdorf
Ok, I deleted the CNAME record and added an A record for lists.php.net instead. Hopefully this will work better in conjunction with the MX. It will take a little while to propogate. -Rasmus On Sat, 13 Jan 2001, Anil Madhavapeddy wrote: > Quoting Phil Driscoll <[EMAIL PROTECTED]>: > > > my

[PHP-DEV] PHP 4.0 Bug Summary Report

2001-01-13 Thread php-dev
PHP 4.0 Bug Database summary - http://bugs.php.net Num Status Summary (1073 total including feature requests) ===[*Configuration Issues] 7666 Feedback PHP4 doesn't read php.ini with NT4/IIS 7695 Feedback Error while accessing php scrip

[PHP-DEV] PHP 3.0 Bug Summary Report

2001-01-13 Thread php-dev
PHP 3.0 Bug Database summary - http://bugs.php.net Num Status Summary (680 total including feature requests) ===[*General Issues]== 4180 Open is_link returns false when target doesnt exist (should return true) 8083 Open 3.0

Re: [PHP-DEV] PHP 4.0.4 patchlevel 1 released

2001-01-13 Thread Anil Madhavapeddy
Quoting Phil Driscoll <[EMAIL PROTECTED]>: > my ISP reckons that the DNS machines for php.net are not > giving authoritative responses. Just to confirm this problem (I have it too) 1 www.php.net 212.100.224.80 ALERT: lame server; refers to net 1 www.php.net 64.39.29.212 ALERT: lame serve

[PHP-DEV] PHP 4.0 Bug #6187 Updated: /usr/libexec/ld.so: Undefined symbol "_PQconnectdb" called from httpd:/usr/lib/

2001-01-13 Thread deicher
ID: 6187 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: PostgreSQL related Description: /usr/libexec/ld.so: Undefined symbol "_PQconnectdb" called from httpd:/usr/lib/ No problem now using the php4 from the OpenBSD ports collection and running OpenBSD 2.8 -stabl

RE: [PHP-DEV] PHP 4.0 Bug #8688: compile error in exec.c

2001-01-13 Thread Sean R. Bright
Looks like Zeev's latest patch caused this. I fixed exec.c locally and then fsock.c barfed with an error about fsock_globals being undefined, and then file.c barfed when I fixed those, etc. Sean > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Saturday,

[PHP-DEV] PHP 4.0 Bug #8548 Updated: PHP ISAPI ends with Internal Server Error

2001-01-13 Thread cynic
ID: 8548 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Open Bug Type: IIS related Assigned To: Comments: user feedback: we are not using MS Visual Studio. But I found something new: when I install 4.04 and replace the isapi.dll with the one from 4.03pl1 everything is fine. So t

Re: [PHP-DEV] PHP 4.0.4 patchlevel 1 released

2001-01-13 Thread Phil Driscoll
>i uploaded a package at http://www.php4win.com/download/php-4.0.4pl1-Win32.zip >maybe phil can up it when he's uploading the installer, i'm out of karma :) Sorry about the delayed response - I've been away at an exhibition and I'm still not getting emails from any of the php lists - my ISP recko

[PHP-DEV] PHP 4.0 Bug #8688: compile error in exec.c

2001-01-13 Thread bjoern
From: [EMAIL PROTECTED] Operating system: Linux 2.2.14 (SuSE 6.2) PHP version: 4.0 Latest CVS (13/01/2001) PHP Bug Type: Compile Failure Bug description: compile error in exec.c Hi, with latest CVS, make fails: exec.c: In function `_Exec': exec.c:202: `ret' undeclared (fir

[PHP-DEV] PHP 4.0 Bug #7079 Updated: mysql_query() and mysql_affected_rows() always return false

2001-01-13 Thread cynic
ID: 7079 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: MySQL related Assigned To: Comments: user feedback: the problem was caused by another apache module (mod_auth_mysql) which was linked against an older version of mysql client libraries I r

Re: [PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-13 Thread Zeev Suraski
At 14:21 13/1/2001, Sascha Schumann wrote: > Shouldn't php.ini entries overwrite defaults and become the > master value? Yep > That is what happens currently: php.ini entries are applied > using zend_alter_ini_entry(), and the default value is stored > in orig_value. On the

Re: [PHP-DEV] Non-GPL readline

2001-01-13 Thread Zeev Suraski
At 14:23 13/1/2001, Stanislav Malyshev wrote: >ZS>> I think the answer for (1) is 'yes'. The answer for (2) depends >ZS>> on how big it is - if it's big, I don't think it makes sense to > >22 files of code in one directory. Around 500K of diskspace. I.e., >comparable to expat, which we have in-tr

[PHP-DEV] CVS Account Request

2001-01-13 Thread root
Full name: Christoph Aigner Email: [EMAIL PROTECTED] ID: chrisu Purpose: Database expert wants to improve certain things -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administ

Re: [PHP-DEV] Non-GPL readline

2001-01-13 Thread Stanislav Malyshev
AM>> Keeping this in sync will might be a pain. We're currently syncing AM>> the NetBSD stuff (mainly by christos), over to OpenBSD as well (as well AM>> as submitting back our security patches to it). Not sure about this. Currently modifications from NetBSD CVS to PHP-compatible code include di

[PHP-DEV] Default INI entries overwrite php.ini entries

2001-01-13 Thread Sascha Schumann
Shouldn't php.ini entries overwrite defaults and become the master value? That is what happens currently: php.ini entries are applied using zend_alter_ini_entry(), and the default value is stored in orig_value. On the next request shutdown, zend_deactivate() calls zend_in

[PHP-DEV] Re: PHP 4.0 Bug #7079 Updated: mysql_query() and mysql_affected_rows() always return false

2001-01-13 Thread Jan Dittberner
the problem was caused by another apache module (mod_auth_mysql) which was linked against an older version of mysql client libraries I resolved the problem by recompiling this module. I don't have the problem now (tested with php-4.0.3pl1) Sorry I forgot to report that ... Regards, Jan Dittbern

Re: [PHP-DEV] Non-GPL readline

2001-01-13 Thread Stanislav Malyshev
ZS>> I think the answer for (1) is 'yes'. The answer for (2) depends ZS>> on how big it is - if it's big, I don't think it makes sense to 22 files of code in one directory. Around 500K of diskspace. I.e., comparable to expat, which we have in-tree. ZS>> include it in PHP, as it's fairly esoteri

Re: [PHP-DEV] Non-GPL readline

2001-01-13 Thread Anil Madhavapeddy
Quoting Stanislav Malyshev <[EMAIL PROTECTED]>: > 2. Can we just rip the code out the NetBSD CVS (like I did) and insert it > into PHP? License seems to allow this, provided all the thing with > advertising clauses, but there might be things more complicated than I > thought of. Keeping this in

Re: [PHP-DEV] Non-GPL readline

2001-01-13 Thread Zeev Suraski
I think the answer for (1) is 'yes'. The answer for (2) depends on how big it is - if it's big, I don't think it makes sense to include it in PHP, as it's fairly esoteric. Including a pointer to where you can download it would be better (assuming you can download it in a way that is then usab

[PHP-DEV] Non-GPL readline

2001-01-13 Thread Stanislav Malyshev
I've been able to make PHP work with libedit from NetBSD. It requires some patching (not much of that) and some features might be missing, but generally it works. Now the questions are: 1. Do we want non-GPL readline implementation? 2. Can we just rip the code out the NetBSD CVS (like I did) and

[PHP-DEV] PHP 4.0 Bug #6187 Updated: /usr/libexec/ld.so: Undefined symbol "_PQconnectdb" called from httpd:/usr/lib/

2001-01-13 Thread avsm
ID: 6187 Updated by: avsm Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: PostgreSQL related Assigned To: avsm Comments: Have you tried this by installing the OpenBSD port of PHP-4.0.4pl1, and seeing if the problem is still there? Just do: $ cd /usr/ports/www/php

[PHP-DEV] PHP 4.0 Bug #7945 Updated: operations on IB 6 crashes php

2001-01-13 Thread derick
ID: 7945 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Closed Bug Type: InterBase related Assigned To: Comments: The user reported that it was his own error Previous Comments: --- [2001-01-

[PHP-DEV] Re: PHP 4.0 Bug #7945 Updated: operations on IB 6 crashes php

2001-01-13 Thread Wojciech Jacko
Hi! Thanks for you reply. It was my fault (error in sql query) , now everything is ok :)) Best regards, Wojtek Jacko Bug Database wrote: > ID: 7945 > Updated by: cynic > Reported By: [EMAIL PROTECTED] > Old-Status: Open > Status: Feedback > Bug Type: InterBase related > Assigned To: > Comments: