Re: [PHP-DEV] use indent instead of fixing whitespace by hand?

2001-08-13 Thread Stig Sæther Bakken
[Thies C. Arntzen [EMAIL PROTECTED]] guys, it's really time to setup our own indent(1L) profile and simply run everything in php4/ thru it. i'll spend some time playing with it (while i'm on vacation) unless: does anybody see a reason *not* to swicht to indent

[PHP-DEV] Re: use indent instead of fixing whitespace by hand?

2001-08-13 Thread Zeev Suraski
At 14:31 12-08-01, Thies C. Arntzen wrote: guys, it's really time to setup our own indent(1L) profile and simply run everything in php4/ thru it. i'll spend some time playing with it (while i'm on vacation) unless: does anybody see a reason *not* to swicht to indent

[PHP-DEV] Bug #12711: crashing on clean install including the php_mssql.dll

2001-08-13 Thread kim_andersen
From: [EMAIL PROTECTED] Operating system: Windows 2000 Server PHP version: 4.0.6 PHP Bug Type: MSSQL related Bug description: crashing on clean install including the php_mssql.dll Installing PHP4.0.6 on a clean IIS5.0 machine. Including the php_mssql.dll (which exists on

Re: [PHP-DEV] use indent instead of fixing whitespace by hand?

2001-08-13 Thread Markus Fischer
On Mon, Aug 13, 2001 at 09:05:36AM +0200, Stig Sæther Bakken wrote : [Thies C. Arntzen [EMAIL PROTECTED]] guys, it's really time to setup our own indent(1L) profile and simply run everything in php4/ thru it. i'll spend some time playing with it (while i'm on

[PHP-DEV] Re: [PHP-DOC] Bug #12550 Updated: rand() and mt_rand() don't behave as documented

2001-08-13 Thread eschmid+sic
On Mon, Aug 13, 2001 at 07:29:16AM +0200, Jani Taskinen wrote: Now you assume that you need to pass arguments to these functions. Which is not the case. Here's the proto: /* {{{ proto int rand([int min, int max]) Returns a random number */ So revert that patch. mt_rand() / rand()

[PHP-DEV] Bug #12710 Updated: Warning: imap_mail() is not supported in this PHP build

2001-08-13 Thread sniper
ID: 12710 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: IMAP related Operating System: Win2K PHP Version: 4.0.5 New Comment: Not a bug. Use mail(). Previous Comments:

[PHP-DEV] Bug #12712: a little suggestion

2001-08-13 Thread martin
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.6 PHP Bug Type: *General Issues Bug description: a little suggestion Good day. It is not a really bug report but a little suggestion for new PHP relase. I'll be good thing to add to PHP language

Re: [PHP-DEV] use indent instead of fixing whitespace by hand?

2001-08-13 Thread Heikki Korpela
On Mon, 13 Aug 2001, Jani Taskinen wrote: Hehe..last time I tried indent with PHP c-sources they made it segfault. --Jani Hey people, did you remember there are other options than (g)indent out there? http://www.iua.upf.es/~mdeboer/astyle_on_commit/ -- PHP Development Mailing

[PHP-DEV] Bug #12699 Updated: opendir() fails when used on read-only devices

2001-08-13 Thread phildriscoll
ID: 12699 Updated by: phildriscoll Reported By: [EMAIL PROTECTED] Status: Critical Bug Type: Directory function related Operating System: Win32 PHP Version: 4.0CVS-2001-08-11 New Comment: Just updating with a couple of comments that were emailed rather than going via the bug tracking system:

[PHP-DEV] Bug #12699 Updated: opendir() fails when used on read-only devices

2001-08-13 Thread sebastian
ID: 12699 Updated by: sebastian Reported By: [EMAIL PROTECTED] Old Status: Critical Status: Feedback Bug Type: Directory function related Operating System: Win32 PHP Version: 4.0CVS-2001-08-11 New Comment: Okay, here's the news: ?php echo $dh = opendir('g:/'); ? gives Resource id #1

[PHP-DEV] associative arrays

2001-08-13 Thread Thomas Wentzel
Hi! I was wondering if someone would be so nice as to post a code snippet that returns an associative array... I'm writing an extension and am only able to return an ordinary array... Alternatively I would be very interested if someone could point me to some documentation on the zend_hash_xxx

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Rasmus Lerdorf
I was wondering if someone would be so nice as to post a code snippet that returns an associative array... I'm writing an extension and am only able to return an ordinary array... Alternatively I would be very interested if someone could point me to some documentation on the zend_hash_xxx

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Rasmus Lerdorf
add_assoc_double(return_value, another one, your_long_var); uh, confused double/long here. Should have said: your_double_var but you get the idea. -Rasmus -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP-DEV] Newbie writing a PHP extension

2001-08-13 Thread Thomas Wentzel
Hi Chris! I suggest you go out and by the book Web Application Development with PHP 4.0 which contains the same documents you are referring to... /Thomas -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Rasmus Lerdorf
Ah, ok. It's not much harder: pval *tmp_arr; array_init(return_value); MAKE_STD_ZVAL(tmp_arr); array_init(tmp_arr); add_assoc_string(tmp_arr, string index, foo, 1); zend_hash_index_update(Z_ARRVAL_P(return_value), 5, tmp_arr, sizeof(tmp_arr), NULL); This will create

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Markus Fischer
go Rasmus go! :-) Some more examples and we seriously can extend zend.com/apidoc . Such examples are of great value to anyone who is new to writing php extension. - Markus On Mon, Aug 13, 2001 at 02:14:01AM -0700, Rasmus Lerdorf wrote : Ah, ok. It's not much harder: pval *tmp_arr;

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Thomas Wentzel
That simple, huh? What can I say - You are the man! Thanx Rasmus Lerdorf wrote: Ah, ok. It's not much harder: pval *tmp_arr; array_init(return_value); MAKE_STD_ZVAL(tmp_arr); array_init(tmp_arr); add_assoc_string(tmp_arr, string index, foo, 1);

[PHP-DEV] FW: Re: OPENSSL Integration

2001-08-13 Thread Wez Furlong
[I'm pointing this here so that it gets archived in case it gets lost in my inbox. Sorry if it is a little long; future replies will be trimmed.] Hi Daniel, Yes; we should Cc this to php-dev. The ssl_turned_on flag would belong to the implementation of a socket based stream. The streams

[PHP-DEV] Bug #12699 Updated: opendir() fails when used on read-only devices

2001-08-13 Thread phildriscoll
ID: 12699 Updated by: phildriscoll Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Directory function related Operating System: Win32 PHP Version: 4.0CVS-2001-08-11 New Comment: Just tested with Apache (version 1.3.12) on my NT box, and it's still ok. It's a mystery to me what the

[PHP-DEV] Bug #12699 Updated: opendir() fails when used on read-only devices

2001-08-13 Thread phildriscoll
ID: 12699 Updated by: phildriscoll Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Directory function related Operating System: Win32 PHP Version: 4.0CVS-2001-08-11 New Comment: Sorry - that last line should read: *if* you set up DocumentRoot to point to it. Previous Comments:

[PHP-DEV] Re: Bug #11934 Updated: failure to configure --with-imap-ssl

2001-08-13 Thread Daniele Arduini
Bug fixed! imap+openssl has been successfully configured. Tested with CVS release 2001-08-12. Thank you very much! Best Regards, Daniele Arduini Bug Database wrote: ID: 11934 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: IMAP related

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Markus Fischer
I was just kidding, really. I'm using the docs there all day long .. But his neested example was just nice. - Markus On Mon, Aug 13, 2001 at 12:38:18PM +0300, Zeev Suraski wrote : Actually, this is quite well documented, if you actually try to look the documentation up...

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Zeev Suraski
At 12:47 13-08-01, Markus Fischer wrote: I was just kidding, really. You sure have fooled me ;) Zeev -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail:

Re: [PHP-DEV] profiler?

2001-08-13 Thread Olivier Bourgeois
Le Fri, 10 Aug 2001 12:10:26 -0700 (PDT) Brian Moore [EMAIL PROTECTED] a ecrit : hello, i'd like to begin work on a php profiler, as my employer needs one, and i couldn't find one. have i not looked hard enough or in the right place? my employer is committed to allowing me to open source

[PHP-DEV] Bug #12713: felix

2001-08-13 Thread ba-ok
From: [EMAIL PROTECTED] Operating system: linux PHP version: 4.0.6 PHP Bug Type: Feature/Change Request Bug description: felix It seems that the function addslashes() donesn't work correctly now. I write a program with the sql: insert into member(membername,photo)

[PHP-DEV] CVS Account Request

2001-08-13 Thread CVS Account Request
Full name: Mika Tuupola Email: [EMAIL PROTECTED] ID:tuupola Purpose: Allready have an account. Have lost / forgotten the password during summer. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP-DEV] Re: profiler?

2001-08-13 Thread Harald Radi
http://dd.cron.ru/dbg this is a debugger and profiler for win and linux harald. Brian Moore [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED]... hello, i'd like to begin work on a php profiler, as my employer needs one, and i couldn't find one. have i not looked hard enough

[PHP-DEV] Bug #12711 Updated: crashing on clean install including the php_mssql.dll

2001-08-13 Thread kim_andersen
ID: 12711 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: MSSQL related Operating System: Windows 2000 Server PHP Version: 4.0.6 New Comment: *blush* well, rather admit being lame than wasting precious time. It seems that it for some

[PHP-DEV] Bug #12711 Updated: crashing on clean install including the php_mssql.dll

2001-08-13 Thread cynic
ID: 12711 Updated by: cynic Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Bogus Bug Type: MSSQL related Operating System: Windows 2000 Server PHP Version: 4.0.6 New Comment: user error - bogus Previous Comments:

[PHP-DEV] Bug #12714: error on compiling with oracle8i

2001-08-13 Thread bardal
From: [EMAIL PROTECTED] Operating system: SunOS 5.7 PHP version: 4.0.6 PHP Bug Type: Compile Warning Bug description: error on compiling with oracle8i ./configure --prefix=/local/home/php --with-apache=../apache_1.3.20 --with-oci8=../../oracle/app/oracle/product/8.0.3/

[PHP-DEV] Bug #12715: IE download file twice when serve from DB.

2001-08-13 Thread miki
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Output Control Bug description: IE download file twice when serve from DB. When I download file stored on DB using IE, Its take me double the time then Netscape takes. I discovered that IE

Re: [PHP-DEV] associative arrays

2001-08-13 Thread Andrei Zmievski
On Mon, 13 Aug 2001, Rasmus Lerdorf wrote: Ah, ok. It's not much harder: pval *tmp_arr; array_init(return_value); MAKE_STD_ZVAL(tmp_arr); array_init(tmp_arr); add_assoc_string(tmp_arr, string index, foo, 1); zend_hash_index_update(Z_ARRVAL_P(return_value), 5, tmp_arr,

[PHP-DEV] Bug #12713 Updated: felix

2001-08-13 Thread swm
ID: 12713 Updated by: swm Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Feature/Change Request Operating System: linux PHP Version: 4.0.6 New Comment: More information is required here. Can we see some output data? ie, echo your sql query string. (It looks like this

[PHP-DEV] Reserved keywords in PHP

2001-08-13 Thread teo
Are there any reserved keywords in PHP put aside for future development? I am looking for some guidelines of avoiding name clashes with future PHP development. For example, if I write a function named import() and then suddenly the import() becomes a language construct it will suck. So, any

[PHP-DEV] Bug #12715 Updated: IE download file twice when serve from DB.

2001-08-13 Thread sniper
ID: 12715 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Output Control Operating System: Linux PHP Version: 4.0.6 New Comment: Not a bug. Ask further support questions on the appropriate mailing list: http://www.php.net/support.php Previous

Re: [PHP-DEV] PHP vs. Zend paranoia?

2001-08-13 Thread Andi Gutmans
At 11:46 PM 8/12/2001 +0300, Alexander Bokovoy wrote: I've took some time to read Zend2 specs and also would like to propose additions in a month or so if it isn't so far from deadline. Unfortunately, there is not much time to do so right now... Just getting the basic infrastructure for the new

[PHP-DEV] CVS Account Request

2001-08-13 Thread CVS Account Request
Full name: Sander Roobol Email: [EMAIL PROTECTED] ID:sander Purpose: Maintaining the bug database: closing bugs, testing bugs on new versions, etc... -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

[PHP-DEV] Bug #12620 Updated: PHP.exe is causing access violations when shutting down

2001-08-13 Thread peterd
ID: 12620 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Reproducible crash Operating System: Windows NT 4 Server PHP Version: 4.0.6 New Comment: PHP is still crashing in shutdown_memory_manager() although I've now found that if I compile PHP with

[PHP-DEV] Bug #12716: Add the imagecopyresizedbicubic function

2001-08-13 Thread jonathan
From: [EMAIL PROTECTED] Operating system: Red Hat Linux 7.1 PHP version: 4.0.6 PHP Bug Type: Feature/Change Request Bug description: Add the imagecopyresizedbicubic function Hi, I would very much like to see you add the imagecopyresizedbicubic function to the list of PHP/GD

[PHP-DEV] Bug #12717: apache 1.3.20 with PHP 4.0.6 and oci8 DSO crashes on startup

2001-08-13 Thread andrew
From: [EMAIL PROTECTED] Operating system: Compaq Tru64 UNIX V5.1 PHP version: 4.0.6 PHP Bug Type: Dynamic loading Bug description: apache 1.3.20 with PHP 4.0.6 and oci8 DSO crashes on startup LIBS set to -pthread in environment ./configure --prefix=/local \

[PHP-DEV] CVS Account Request

2001-08-13 Thread CVS Account Request
Full name: Maxim Derkachev Email: [EMAIL PROTECTED] ID:maxud Purpose: Committing to the PEAR CVS -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP-DEV] Bug #12718: com_invoke always seems to return false

2001-08-13 Thread n . morse
From: [EMAIL PROTECTED] Operating system: Win 2k PHP version: 4.0.6 PHP Bug Type: COM related Bug description: com_invoke always seems to return false I created a simple COM objecj in Vis C++. It has a method hello on it that does nothing except return S_OK, and a property

[PHP-DEV] Bug #12719: extract($array, EXTR_PREFIX_ALL, .$int) fails

2001-08-13 Thread jpb1
From: [EMAIL PROTECTED] Operating system: Solaris 2.8 PHP version: 4.0.5 PHP Bug Type: Arrays related Bug description: extract($array, EXTR_PREFIX_ALL, .$int) fails Under PHP 3.0.16, I could use the extract function to append extract variables from an array and attach a

Re: [PHP-DEV] Bug #12716: Add the imagecopyresizedbicubic function

2001-08-13 Thread Sander Roobol
I can't close this bug yet but I'm sure somebody will... It's a duplicate of 9875... Thanks, Sander - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 13, 2001 5:23 PM Subject: [PHP-DEV] Bug #12716: Add the imagecopyresizedbicubic function From:

[PHP-DEV] Bug #12719 Updated: extract($array, EXTR_PREFIX_ALL, .$int) fails

2001-08-13 Thread andrei
ID: 12719 Updated by: andrei Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Arrays related Operating System: Solaris 2.8 PHP Version: 4.0.5 New Comment: Prefixing it with a number would create an invalid variable name according to PHP rules, so that is why it fails.

[PHP-DEV] Bug #12716 Updated: Add the imagecopyresizedbicubic function

2001-08-13 Thread cynic
ID: 12716 Updated by: cynic Reported By: [EMAIL PROTECTED] Old Status: Open Status: Duplicate Bug Type: Feature/Change Request Operating System: Red Hat Linux 7.1 PHP Version: 4.0.6 New Comment: #9875 Previous Comments:

Re: [PHP-DEV] Patch for ext/java/java.c

2001-08-13 Thread Andi Gutmans
At 04:19 AM 8/13/2001 +0200, Alexander Wirtz wrote: Good morning (or evening ? ;-)), I made another patch, because java.c ran into difficulties with ZE2. Let's hope, that everything is ok, cause I'm really tired... Wirtz, I don't have the Java build setup here. I commited a patch similar to

[PHP-DEV] Bug #12720: An unnecessary extra slash

2001-08-13 Thread pulstar
From: [EMAIL PROTECTED] Operating system: Linux RedHat 7.1 PHP version: 4.0.6 PHP Bug Type: Session related Bug description: An unnecessary extra slash input type=hidden name=PHPSESSID value=28d352f895d1d14d2121e32d80a69299 / When cookies are not available, PHP auto

[PHP-DEV] Bug #12720 Updated: An unnecessary extra slash

2001-08-13 Thread swm
ID: 12720 Updated by: swm Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Session related Operating System: Linux RedHat 7.1 PHP Version: 4.0.6 New Comment: The extra slash is so that PHP is in compliance with XHTML 1.0. See http://www.w3.org/MarkUp/ for more

[PHP-DEV] Bug #12718 Updated: com_invoke always seems to return false

2001-08-13 Thread n . morse
ID: 12718 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: COM related Operating System: Win 2k PHP Version: 4.0.6 New Comment: Just to add to this: If I make the return value a retval in the IDL then I can use com_invoke and it works (for the same reason

Re: [PHP-DEV] Patch for ext/java/java.c

2001-08-13 Thread Alexander Wirtz
Hi Andi, Wirtz, I don't have the Java build setup here. I commited a patch similar to yours so please check it and let me know if it fixes your problems. yup, looking good...and my name's Alexander :-) Wirtz is my surname... Cheers, Alex -- | Alexander Wirtz | eMail: [EMAIL

[PHP-DEV] Bug #12700 Updated: 502 Gateway Error/Failed to Return Headers

2001-08-13 Thread paul . burden
ID: 12700 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: IIS related Operating System: Windows 2000 Server PHP Version: 4.0.6 New Comment: Apologies, After further searching though your bug database this appears to be a duplicate of #12562 and

[PHP-DEV] Bug #12721: PHP crashes at any code-highlight related command

2001-08-13 Thread chris
From: [EMAIL PROTECTED] Operating system: Redhat/7.0, kernel 2.2.16 PHP version: 4.0.6 PHP Bug Type: Reproducible crash Bug description: PHP crashes at any code-highlight related command I have (over several versions of apache and php) noticed a very strange bug: PHP keeps

[PHP-DEV] Bug #12722: Re: extra slash / auto appending session ID

2001-08-13 Thread pulstar
From: [EMAIL PROTECTED] Operating system: Red Hat 7.1 PHP version: 4.0.6 PHP Bug Type: Session related Bug description: Re: extra slash / auto appending session ID The extra slash is so that PHP is in compliance with XHTML 1.0. See http://www.w3.org/MarkUp/ for more

[PHP-DEV] Bug #12716 Updated: Add the imagecopyresizedbicubic function

2001-08-13 Thread jonathan
ID: 12716 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Duplicate Bug Type: Feature/Change Request Operating System: Red Hat Linux 7.1 PHP Version: 4.0.6 New Comment: Ok I checked there but I don't really see an answer!? Status is still open although the request is

[PHP-DEV] Bug #12723: Addition to bug 12507

2001-08-13 Thread pixl
From: [EMAIL PROTECTED] Operating system: RedHat 6.2 (2.2.19) PHP version: 4.0.6 PHP Bug Type: Scripting Engine problem Bug description: Addition to bug 12507 I have noticed the same problem as the user in bug #12507. [root@www libexec]# mtrace ./libphp4.so.bak

[PHP-DEV] Bug #12723 Updated: Addition to bug 12507

2001-08-13 Thread pixl
ID: 12723 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Scripting Engine problem Operating System: RedHat 6.2 (2.2.19) PHP Version: 4.0.6 New Comment: You may notice the the file is libphp4.so.bak - it is the same file as libphp4.so that the server is

[PHP-DEV] Bug #12723 Updated: Addition to bug 12507

2001-08-13 Thread pixl
ID: 12723 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Scripting Engine problem Operating System: RedHat 6.2 (2.2.19) PHP Version: 4.0.6 New Comment: You may notice the the file is libphp4.so.bak - it is the same file as libphp4.so that the server is

[PHP-DEV] Bug #12724: persistent connections with postgres

2001-08-13 Thread peter
From: [EMAIL PROTECTED] Operating system: Linux (RH 7.1) PHP version: 4.0.4pl1 PHP Bug Type: Unknown/Other Function Bug description: persistent connections with postgres I created a persistent connection to postgres (7.03). I establish a connection for every page opened.

[PHP-DEV] Third snapshot of Universe

2001-08-13 Thread David Eriksson
(Universe is a PHP Extension for accessing and creating CORBA objects.) Hi! Universe now compiles and runs on Windows. You don't need to compile MICO yourself, all you need is in the MICO download I provide. Just extract it with the same parent directory as the php-4.0.6 directory.

[PHP-DEV] Bug #12725: header (Location: index.php) ; does not work in Netscape6 on the Mac

2001-08-13 Thread four_the_web
From: [EMAIL PROTECTED] Operating system: PHP version: 4.0.6 PHP Bug Type: HTTP related Bug description: header (Location: index.php) ; does not work in Netscape6 on the Mac header (Location: index.php) ; exit; The above does NOT work on Netscape 6 on the Mac(only).

Re: [PHP-DEV] Bug #12725: header (Location: index.php) ; does not work in Netscape6 on the Mac

2001-08-13 Thread Christian Joergensen
On Monday 13 August 2001 22:25, [EMAIL PROTECTED] wrote: header (Location: index.php) ; exit; The above does NOT work on Netscape 6 on the Mac(only). Try using the full path including hostname and protocol, as described in the RFC, in your header. -- Christian Jørgensen | Ford, you're

[PHP-DEV] Bug #12718 Updated: com_invoke always seems to return false

2001-08-13 Thread phanto
ID: 12718 Updated by: phanto Reported By: [EMAIL PROTECTED] Old Status: Open Status: Assigned Bug Type: COM related Operating System: Win 2k PHP Version: 4.0.6 Old Assigned To: Assigned To: phanto New Comment: ok, i'll check this just beeing nosily, what does $svr = new

[PHP-DEV] Bug #12685 Updated: make install problem

2001-08-13 Thread mpespinoza
ID: 12685 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Compile Failure Operating System: Linux PHP Version: 4.0.5 New Comment: Which linux version EXACTLY is this? linux 2.0.34 slckware On which platform? libc5 What was

[PHP-DEV] Extra parameters for strtoupper(), strtolower()

2001-08-13 Thread J Smith
string strtoupper(string string [, int start [, int length]]) string strtolower(string string [, int start [, int length]]) The additional parameters would work in much the same fashion as substr(). I've implemented it in the latest cvs just for the hell of it. Am I the only one who thinks

[PHP-DEV] Bug #12724 Updated: persistent connections with postgres

2001-08-13 Thread peter
ID: 12724 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Old Bug Type: Unknown/Other Function Bug Type: PostgreSQL related Operating System: Linux (RH 7.1) PHP Version: 4.0.4pl1 New Comment: I rechecked the bug database and there are other reports which seem to

[PHP-DEV] Bug #12724 Updated: persistent connections with postgres

2001-08-13 Thread derick
ID: 12724 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: PostgreSQL related Operating System: Linux (RH 7.1) PHP Version: 4.0.4pl1 New Comment: This should be fixed in php 4.0.6. Please reopen if it still does not work correctly for you. Derick

[PHP-DEV] Bug #12727: Bad subdirs assumed in configure and in make

2001-08-13 Thread php-bug
From: [EMAIL PROTECTED] Operating system: Solaris 7 PHP version: 4.0.6 PHP Bug Type: PostgreSQL related Bug description: Bad subdirs assumed in configure and in make reproduceable - probably an easy fix during ./configure and later (after I thought I fixed things) in the

[PHP-DEV] AW: Re[3]: [Zend Engine 2] RFD: call backtrace

2001-08-13 Thread Harald Radi
However, I think that even a simple dump will be a blessing as most PHP programmers must be quite used to print() style debugging now ;) debugger like the http://dd.cron.ru/dbg are able to show you the call stack and variable scopes even with actual php versions. so speed is more important

[PHP-DEV] Bug #12728: PHP4DLL project fails to compile

2001-08-13 Thread jerry
From: [EMAIL PROTECTED] Operating system: Win32 PHP version: 4.0.6 PHP Bug Type: Compile Failure Bug description: PHP4DLL project fails to compile Using the project files directly from php-4.0.6.tar.gz I get the following compilation errors: Please note that this is

[PHP-DEV] odbc_fetch_into and odbc_error problem

2001-08-13 Thread Tomas V.V.Cox
Hi, I'm having some problems with the Pear DB odbc extension, here is the talk about them with an Easysoft developer, if it can help on resolving the bug. Thanks, Tomas V.V.Cox PS.- Please request me any extra info you need. Martin J. Evans wrote: Tomas V.V.Cox wrote: I'm trying this

[PHP-DEV] Bug #12718 Updated: com_invoke always seems to return false

2001-08-13 Thread phanto
ID: 12718 Updated by: phanto Reported By: [EMAIL PROTECTED] Old Status: Assigned Status: Closed Bug Type: COM related Operating System: Win 2k PHP Version: 4.0.6 Assigned To: phanto New Comment: fixed in cvs Previous Comments:

[PHP-DEV] Bug #12729: Wrong parameters for odbc_fetch_into

2001-08-13 Thread ajmarks195
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.6 PHP Bug Type: ODBC related Bug description: Wrong parameters for odbc_fetch_into odbc_fetch_into($results, number, $array) expects a variable to be passed by reference for the second argument. An

[PHP-DEV] Bug #12713 Updated: felix

2001-08-13 Thread ba-ok
ID: 12713 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Feature/Change Request Operating System: linux PHP Version: 4.0.6 New Comment: some information can be seen at here: http://www.windrose-cn.com/error.txt sanx. :) Previous

[PHP-DEV] Bug #12730: enable mem limit patch via zip please

2001-08-13 Thread coxfamily
From: [EMAIL PROTECTED] Operating system: NT 4 PHP version: 4.0.6 PHP Bug Type: Feature/Change Request Bug description: enable mem limit patch via zip please Hi, Request that memory-enable-limit patch for 4.0.6 also be available in zip format please for NT 4.0 Server

Re: [PHP-DEV] AW: Re[3]: [Zend Engine 2] RFD: call backtrace

2001-08-13 Thread George Schlossnagle
The APD debugger was designed specifically to do this sort f debugging/profiling by writing trace files to a specified dir. http://apc.communityconnect.com/sources/apd-cvs.tar.gz On Monday, August 13, 2001, at 06:47 PM, Harald Radi wrote: However, I think that even a simple dump will be a

[PHP-DEV] Re: [PHP-DOC] Bug #12550 Updated: rand() and mt_rand() don't behave as documented

2001-08-13 Thread Jeroen van Wolffelaar
Now you assume that you need to pass arguments to these functions. Which is not the case. Here's the proto: /* {{{ proto int rand([int min, int max]) Returns a random number */ So revert that patch. mt_rand() / rand() accecpt either 2 parameters or none at all. It was at least LESS