Re: [PHP-DEV] dev vs conf

2001-11-27 Thread Derick Rethans
Hello Daniel, it's indeed on Developing PHP, but sometimes, just before a release, some things like this can change a little :) Derick On Tue, 27 Nov 2001, Daniel Lorch wrote: Hey guys, I signed up here just recently, and I'm really wondering whether this list is about CONFIGURING PHP or

[PHP-DEV] strange behaviour of each() on references

2001-11-27 Thread Christophe VG
Hi, I just ran into some strange behaviour, and I was hoping anyone of you could confirm this ... Take a look at the following code snippet ... ? $a = 'a'; $b = 'b'; $c = 'c'; $ar = array( 'a' = $a, 'b' = $b, 'c' = $c ); function p( $v ) { $v = 'x'; } while( list( $k, $v ) = each( $ar )

[PHP-DEV] Class Struggle

2001-11-27 Thread l0t3k
im having a tough time getting PHP to execute a method of a function defined in an extension. the extension compiles fine, shows up in phpinfo(), and calling get_declared_classes() returns the class names as expected. in addition, calling get_class_methods(class_name) lists the method im

Re: [PHP-DEV] Class Struggle

2001-11-27 Thread Markus Fischer
On Tue, Nov 27, 2001 at 03:36:58AM -0500, l0t3k wrote : do i get to wear the dunce cap, or should i file a bug report ? Bug report because your own code is faulty? ... No one can help you if you don't show the code that is definitely WRONG. Maybe I understood it wrong but you

[PHP-DEV] Bug #14244 Updated: A bug about integer operation /

2001-11-27 Thread poolshark
ID: 14244 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Variables related Operating System: linux PHP Version: 4.0.6 New Comment: Bug Database [EMAIL PROTECTED] Did you see my program?,and dir you run them? obviously, the two operands are

[PHP-DEV] Bug #11391 Updated: No uninstaller

2001-11-27 Thread phildriscoll
ID: 11391 Updated by: phildriscoll Reported By: [EMAIL PROTECTED] Old Status: Assigned Status: Closed Bug Type: Feature/Change Request Operating System: Win 98 PHP Version: 4.0.5 Assigned To: PhilDriscoll New Comment: Fixed. As of php 4.1.0, the widows installer has an uninstall facility.

[PHP-DEV] Bug #14244 Updated: A bug about integer operation /

2001-11-27 Thread derick
ID: 14244 Updated by: derick Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Variables related Operating System: linux PHP Version: 4.0.6 New Comment: Again: If either operand is a floating-point value, or the operation results in a non-integer value, a floating-point value is

[PHP-DEV] Bug #12029 Updated: --with-apxs can cause the error MySQL: Unable to save result set in

2001-11-27 Thread mfischer
ID: 12029 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Suspended Bug Type: MySQL related Operating System: Linux PHP Version: 4.0.6 and 4.1.0RC3 New Comment: Suspended at user request. Previous Comments:

[PHP-DEV] Bug #14244 Updated: A bug about integer operation /

2001-11-27 Thread cnewbill
ID: 14244 Updated by: cnewbill Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Variables related Operating System: linux PHP Version: 4.0.6 New Comment: Yes, did you read the part in ? Obviously not. If either operand is a floating-point value, or the operation results in a

[PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread bartvb
From: [EMAIL PROTECTED] Operating system: Linux 2.4.13-ac5 PHP version: 4.0.5 PHP Bug Type: Unknown/Other Function Bug description: uniqid() is extremely slow (20ms per call) A call to uniqid() seems to take approximately 20ms. In all that time the processor seems to be

Re: [PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread Teodor Cimpoesu
Hi bartvb! On Tue, 27 Nov 2001, [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] Operating system: Linux 2.4.13-ac5 PHP version: 4.0.5 PHP Bug Type: Unknown/Other Function Bug description: uniqid() is extremely slow (20ms per call) A call to uniqid() seems to take

[PHP-DEV] Bug #14248 Updated: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread derick
ID: 14248 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Unknown/Other Function Operating System: Linux 2.4.13-ac5 PHP Version: 4.0.5 New Comment: The implementation of uniqid is as fast as it could be, so speeding it up is not really possible

Re: [PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread Derick Rethans
On Tue, 27 Nov 2001, Teodor Cimpoesu wrote: I guess it gets entropy from /dev/[u]random, but when it is exhausted it cannot do much but to wait for more entropy. Wrong guess, it does not. It gets it from time() and the php_combined_lcg (which is feeded by the the PID/thread id and some time

[PHP-DEV] Bug #13831 Updated: Assigning to multi-dimensional $HTTP_SESSION_VARS array not restored

2001-11-27 Thread cnewbill
ID: 13831 Updated by: cnewbill Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Session related Operating System: FreeBSD 4.2 PHP Version: 4.0.6 New Comment: Yes, it is the way he and most of the people who volunteer their time goes about it. The source is constantly changing and chances

Re: [PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread Andrey Hristov
I looked at php_combined_lcg() and saw that it uses LCG, it looks like a macro but I've found anywhere else in the source. I looked at the source to view how session_id is generated (using seconds, microseconds, and php_combined_lcg - standard/lcg.c) Thanks in advance Andrey Hristov -

Re: [PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread Derick Rethans
On Tue, 27 Nov 2001, Andrey Hristov wrote: I looked at php_combined_lcg() and saw that it uses LCG, it looks like a macro but I've found anywhere else in the source. I looked at the source to view how session_id is generated (using seconds, microseconds, and php_combined_lcg -

[PHP-DEV] Bug #9131 Updated: PHP_AUTH* empty with Caudium

2001-11-27 Thread sander
ID: 9131 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Other web server Operating System: Linux PHP Version: 4.0 Latest CVS (06/02/2001) New Comment: I think this has been fixed. You can try the latest stable build (4.0.6) or the latest RC

[PHP-DEV] Bug #10652 Updated: payflow pro support core dumps ftp

2001-11-27 Thread sander
ID: 10652 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Verisign Payflow Pro related Operating System: Linux 6.2 EE PHP Version: 4.0 Latest CVS (03/05/2001) New Comment: Does this problem still occur with the latest RC?

[PHP-DEV] Bug #9131 Updated: PHP_AUTH* empty with Caudium

2001-11-27 Thread derick
ID: 9131 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Closed Status: Open Bug Type: Other web server Operating System: Linux PHP Version: 4.0 Latest CVS (06/02/2001) New Comment: It's not fixed. There are no references to auth_user in that file. Derick Previous Comments:

[PHP-DEV] Bug #9171 Updated: Query Timeout

2001-11-27 Thread sander
ID: 9171 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Sybase (dblib) related Operating System: FreeBSD PHP Version: 4.0.0 New Comment: This is probably not a bug in PHP. You should upgrade ask for help at [EMAIL PROTECTED] Previous Comments:

[PHP-DEV] Bug #7848 Updated: IMAP is very slow in CGI version

2001-11-27 Thread sander
ID: 7848 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: IMAP related Operating System: NetBSD, Linux, Windows 2k PHP Version: 4.0 Latest CVS (16/11/2000) New Comment: Does this problem still occur with the 4.0.6, the latest

[PHP-DEV] Bug #9131 Updated: PHP_AUTH* empty with Caudium

2001-11-27 Thread derick
ID: 9131 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Other web server Operating System: Linux PHP Version: 4.0 Latest CVS (06/02/2001) New Comment: Can you possibly send a patch, or where this code needs to be added. I don't have access to

[PHP-DEV] Bug #6275 Updated: ODBC_Prepare/ODBC_Execute fails with parameters

2001-11-27 Thread sander
ID: 6275 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Analyzed Status: Feedback Bug Type: ODBC related Operating System: Windows 98 PHP Version: 4.0.1pl2 Assigned To: kalowsky New Comment: Does this problem still occur with 4.0.6, the latest RC

[PHP-DEV] Bug #6294 Updated: Strange behaviour when using DB2

2001-11-27 Thread sander
ID: 6294 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: ODBC related Operating System: RedHat Linux 6.2 PHP Version: 4.0.1pl2 New Comment: Does this problem still occur with 4.0.6, the latest RC (http://download.php.net/~zeev/php-4.1.0RC3.tar.gz)

[PHP-DEV] Bug #8151 Updated: Restart apache server, FreeTDS stop running ? Help 911 !!!

2001-11-27 Thread sander
ID: 8151 Updated by: sander Reported By: baonguyenx @yahoo.com Old Status: Open Status: Bogus Bug Type: Sybase-ct (ctlib) related Operating System: Linux 6.1 PHP Version: 4.0.2 New Comment: Probably not a bug in PHP. Ask support questions on the appropriate mailinglist. Previous Comments:

[PHP-DEV] Bug #7282 Updated: No input file specified. when run as a CGI

2001-11-27 Thread sander
ID: 7282 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Other web server Operating System: HP-UX 10.20 PHP Version: 4.0.3pl1 New Comment: Does this problem still occurs with the latest version (4.0.6) or the latest RC

[PHP-DEV] Bug #13831 Updated: Assigning to multi-dimensional $HTTP_SESSION_VARS array not restored

2001-11-27 Thread jmoore
ID: 13831 Updated by: jmoore Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Session related Operating System: FreeBSD 4.2 PHP Version: 4.0.6 New Comment: Firstly we are here as voulenteers, we ask for your help as if you have reported a bug and we ask you to test

[PHP-DEV] Bug #7848 Updated: IMAP is very slow in CGI version

2001-11-27 Thread cahagn_o
ID: 7848 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: IMAP related Operating System: NetBSD, Linux, Windows 2k PHP Version: 4.0 Latest CVS (16/11/2000) New Comment: I can't reproduce this with 4.0.6, latest CVS or 4.1.0RC3 as they

[PHP-DEV] Bug #8677 Updated: dbase module built with phpize doesn't work.

2001-11-27 Thread sander
ID: 8677 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: dBase related Operating System: Debian GNU/Linux (woody) PHP Version: 4.0.4 New Comment: Does this problem still occur with 4.0.6, the latest RC

[PHP-DEV] Bug #8574 Updated: Berkeley DB (dba) support

2001-11-27 Thread sander
ID: 8574 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: DBM/DBA related Operating System: RedHat Linux 6.2 PHP Version: 4.0.4 New Comment: Does this problem still occur with 4.0.6, the latest RC (http://download.php.net/~zeev/php-4.1.0RC3.tar.gz)

[PHP-DEV] Patch: Nested comments

2001-11-27 Thread Anders Johannsen
This patch allows for nested 'C-style' comments, which can be useful especially while debugging. ?php /* comments /* now /* nest */ */ /*/*/*/* */*/*/*/ */ ? Since comments are handled purely lexical, there should be virtually no

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Markus Fischer
Although my vote doesn't count much here :-) I'm for it... ... but it would be a problem for 4.x I guess because this horribly breaks BC when/if there's a new 4.x release and people start using it. But it would be nice to have it in ZE2. my 2c - Markus On Tue, Nov 27,

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread James Moore
Although my vote doesn't count much here :-) I'm for it... ... but it would be a problem for 4.x I guess because this horribly breaks BC when/if there's a new 4.x release and people start using it. But it would be nice to have it in ZE2. my 2c - Markus Its

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Markus Fischer
On Tue, Nov 27, 2001 at 11:23:19AM -, James Moore wrote : Although my vote doesn't count much here :-) I'm for it... ... but it would be a problem for 4.x I guess because this horribly breaks BC when/if there's a new 4.x release and people start using it.

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Martin Jansen
On Tue, 27 Nov 2001 12:15:39 +0100, Markus Fischer wrote: Although my vote doesn't count much here :-) I'm for it... ... but it would be a problem for 4.x I guess because this horribly breaks BC when/if there's a new 4.x release and people start using it. But it would be

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Andrey Hristov
Better introduce new type of comments so one type can include the other type : Example from pascal : { a comment (* another nested *) } Andrey - Original Message - From: Martin Jansen [EMAIL PROTECTED] To: Markus Fischer [EMAIL PROTECTED] Cc: Anders Johannsen [EMAIL PROTECTED];

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Hartmut Holzgraefe
James Moore wrote: ... could we make some other changes to how comments are handeled too? // ? would not switch out of PHP mode, /* ? Html code ?php */ Would comment out the html code too.. I dont know if this is a good or bad idea.. IMHO it is a very bad idea to mask

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Hartmut Holzgraefe
Markus Fischer wrote: Although my vote doesn't count much here :-) I'm for it... ... but it would be a problem for 4.x I guess because this horribly breaks BC when/if there's a new 4.x release and people start using it. should be no problem to introduce it with 4.2 as we

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Anders Johannsen
/* ? Html code ?php */ Would comment out the html code too.. I believe the Html code is ignored. Best regards, Anders Johannsen -- [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Markus Fischer
On Tue, Nov 27, 2001 at 01:01:17PM +0100, Hartmut Holzgraefe wrote : Markus Fischer wrote: Although my vote doesn't count much here :-) I'm for it... ... but it would be a problem for 4.x I guess because this horribly breaks BC when/if there's a new 4.x release and

[no subject]

2001-11-27 Thread
Title: °Ù´óǧÀïÂí ÏàÖªÔÚ°Ù´ó

[PHP-DEV] Re: Bug #6275 Updated: ODBC_Prepare/ODBC_Execute fails with parameters

2001-11-27 Thread jlim
I agree with kowalsky, it is probably a limitation in the access odbc driver. Sorry for confusing everyone (including myself!). Regards, John ATTENTION! Do NOT reply to this email! To reply, use the web interface found at http://bugs.php.net/?id=6275edit=2 ID: 6275 Updated by:

[PHP-DEV] Bug #14249: odbc_num_rows

2001-11-27 Thread aidal
From: [EMAIL PROTECTED] Operating system: Win98 PHP version: 4.0.6 PHP Bug Type: ODBC related Bug description: odbc_num_rows odbc_num_rows keeps returning -1 (I'm aware of the statement in the online documentation, but will this be fixed?) Will odbc_num_rows ever be

[PHP-DEV] Bug #14243 Updated: make install generates errors from shtool in pear subdir

2001-11-27 Thread sniper
ID: 14243 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Old Bug Type: *Compile Issues Bug Type: Compile Failure Operating System: Linux 2.4.14 Redhat 7.0 PHP Version: 4.0.6 New Comment: These are fixed in CVS and PHP 4.1.0. And if you're not running 'make

[PHP-DEV] Bug #13831 Updated: Assigning to multi-dimensional $HTTP_SESSION_VARS array not restored

2001-11-27 Thread sniper
ID: 13831 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Closed Bug Type: Session related Operating System: FreeBSD 4.2 PHP Version: 4.0.6 New Comment: I asked to test the latest CVS as I _assume_ this was a bug that was just recently FIXED there. I had tested it

[PHP-DEV] Bug #14015 Updated: Can't install (make install)

2001-11-27 Thread sniper
ID: 14015 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: Compile Failure Operating System: UNIXWARE 7 PHP Version: 4.0.6 New Comment: You're not pointing to the apache SOURCE directory here. If you do that, it will work. Previous Comments:

[PHP-DEV] Bug #14015 Updated: Can't install (make install)

2001-11-27 Thread sniper
ID: 14015 Updated by: sniper Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Compile Failure Operating System: UNIXWARE 7 PHP Version: 4.0.6 New Comment: You're not pointing to the apache SOURCE directory here. If you do that, it will work. Previous Comments:

Re: [PHP-DEV] Class Struggle

2001-11-27 Thread Andrei Zmievski
On Tue, 27 Nov 2001, l0t3k wrote: im having a tough time getting PHP to execute a method of a function defined in an extension. the extension compiles fine, shows up in phpinfo(), and calling get_declared_classes() returns the class names as expected. in addition, calling

Re: [PHP-DEV] Re: [PEAR-DEV] PHPDoc Development Status

2001-11-27 Thread Ulf Wendel
Stig S. Bakken wrote: [EMAIL PROTECTED] wrote: phpdoc itself or just this extension ? Just this extension. Hurry up and apply for a CVS account at http://php.net/cvs-php.php :-) Ok, now that everybody commented on it, let me add my 2 Cents. I never stopped beliving in the importance

[PHP-DEV] Re: [PEAR-DEV] Re: [PHP-DEV] Re: [PEAR-DEV] PHPDoc Development Status

2001-11-27 Thread James Moore
Q: What about DocBook? A: I don't have the neccessary knowledge for this, but I know some guys that actually have it. Means, I've send some pizza's and beer crates to send to them and make them feel guilty to help us ;). Help is very much appreciated. What needs doing on this front?? -

[PHP-DEV] unserialze_callback_function (description)

2001-11-27 Thread root
ho derick... could you read over this mail, i plan to send to php-dev-ml. i'm not sure if i used the correct words.. you know.. my english :)) thanx... hello... i'm new here on this ML. some of you might know me. but thats

[PHP-DEV] XSLT Probs.

2001-11-27 Thread Karl Austin
Hi, I just got round to testing some of my more complex scripts and it appear they are running fine under RC3 (Same as release build I believe), including the XSLT stuff, which is good stuff. Thank, Karl -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL

[PHP-DEV] CVS Account Request: 007

2001-11-27 Thread Wilko Miletic
Translating the manual to Dutch -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] unserialze_callback_function (description)

2001-11-27 Thread Bernd Roemer
rehi... sorry for sending the false email-text and that as root... i confuse my sreens :(( regards ---bernd roemer--- -- 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

[PHP-DEV] Bug #13831 Updated: Assigning to multi-dimensional $HTTP_SESSION_VARS array not restored

2001-11-27 Thread shelby
ID: 13831 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Session related Operating System: FreeBSD 4.2 PHP Version: 4.0.6 New Comment: You know what they about ASSUME. For example, several people here ASSUME that it takes me 20 minutes to test the

[PHP-DEV] PHPDoc Future

2001-11-27 Thread Ulf Wendel
James Moore wrote: Q: What about DocBook? A: I don't have the neccessary knowledge for this, but I know some guys that actually have it. Means, I've send some pizza's and beer crates to send to them and make them feel guilty to help us ;). Help is very much appreciated. What

[PHP-DEV] Bug #14200 Updated: remote navigation problem

2001-11-27 Thread sander
ID: 14200 Updated by: sander Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: *General Issues Operating System: Windows XP Pro PHP Version: 4.0.6 New Comment: I might be mistaken, but AFAIK you point Apache via httpd.conf to php4apache.dll. You can put that dll anywhere you want, as

[PHP-DEV] Re: PHPDoc Future

2001-11-27 Thread James Moore
James Moore wrote: Q: What about DocBook? A: I don't have the neccessary knowledge for this, but I know some guys that actually have it. Means, I've send some pizza's and beer crates to send to them and make them feel guilty to help us ;). Help is very much appreciated.

[PHP-DEV] Bug #14250: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
From: [EMAIL PROTECTED] Operating system: Cobalt RAQ 3-Red Hat 5 PHP version: 4.1.0 PHP Bug Type: Compile Failure Bug description: From cvs, ./buildconf reports errors Been following up on the apxs -s problem (14035), so got php from cvs, and had errors when executing

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread sander
ID: 14250 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.1.0 New Comment: Giving advise is will be very hard if you don't give us any further information. What errors did you

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread derick
ID: 14250 Updated by: derick Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 Old PHP Version: 4.1.0 PHP Version: 4.2.0 dev (CVS) New Comment: What is the error exactly? And which on date did you grab the CVS? Previous Comments:

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
ID: 14250 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: Yes I have installed all the latest, doing ./buildconf wont rebuild, is there

[PHP-DEV] Re: [PEAR-DEV] PHPDoc Future

2001-11-27 Thread Alexander Merz
1.) C: ext/phpdoc = simple XML (doc comments unparsed) 2.) PHP: standard_doctool = generates standard_intermediate XML What would be the different between this two types of XML? And how compatible will the xml-output to the existing xml-output? -- PHP Development Mailing List

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
ID: 14250 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: got php from cvs today Previous Comments:

[PHP-DEV] Bug #14200 Updated: remote navigation problem

2001-11-27 Thread cnewbill
ID: 14200 Updated by: cnewbill Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: *General Issues Operating System: Windows XP Pro PHP Version: 4.0.6 New Comment: By default the firewall is not enabled. But JIC you can check by doing this (may be faster way) Control Panel-Network

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread derick
ID: 14250 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: rm configure; ./buildconf and then paste the output you get. Derick Previous Comments:

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
ID: 14250 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: Obvious when you know how. Results from the ./buildconf configure.in:88:

Re: [PHP-DEV] Class Struggle

2001-11-27 Thread l0t3k
Andrei, i tried your suggestion, and it promptly crashed PHP, so i think you're onto something g anyone have some PHP debugging tips for MSVC++. i want to be able to step through my extension code when a request is executed? thanks - Original Message - From: Andrei Zmievski [EMAIL

[PHP-DEV] Re: [PEAR-DEV] PHPDoc Future

2001-11-27 Thread Ulf Wendel
Alexander Merz wrote: 1.) C: ext/phpdoc = simple XML (doc comments unparsed) 2.) PHP: standard_doctool = generates standard_intermediate XML What would be the different between this two types of XML? And how compatible will the xml-output to the existing xml-output? Certain

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
ID: 14250 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: Just a though, It is version 4.1 thats available from cvs? Previous Comments:

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread sander
ID: 14250 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: No, by default you get 4.2.0 You can find 4.1.0RC3 at

Re: [PHP-DEV] Class Struggle

2001-11-27 Thread Markus Fischer
Start debugging with 'F5' ? Look at build / start debug. - Markus On Tue, Nov 27, 2001 at 11:05:40AM -0500, l0t3k wrote : Andrei, i tried your suggestion, and it promptly crashed PHP, so i think you're onto something g anyone have some PHP debugging tips for MSVC++. i want to

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread sander
ID: 14250 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: Sorry... I didn't see that ;) Previous Comments:

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
ID: 14250 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: Thanks for that. wget didnt get it, so its a long haul to download to my pc then back to the

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread sander
ID: 14250 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: Is it now fixed or not? Previous Comments:

[PHP-DEV] Bug #14250 Updated: From cvs, ./buildconf reports errors

2001-11-27 Thread k . davies
ID: 14250 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Compile Failure Operating System: Cobalt RAQ 3-Red Hat 5 PHP Version: 4.2.0 dev (CVS) New Comment: dont know, will take 30mins to get to my pc, another 30mins to get to server

[PHP-DEV] Re: unserialze_callback_function (description)

2001-11-27 Thread Dr. Volker M. Göbbels
Hi, ho derick... could you read over this mail, i plan to send to php-dev-ml. i'm not sure if i used the correct words.. you know.. my english :)) thanx... [lots of funny english and good ideas deleted ;) ] i hope you understood description (bad english) and are agree with my

[PHP-DEV] Bug #14251: register_shutdown_function bug

2001-11-27 Thread se
From: [EMAIL PROTECTED] Operating system: Linux Mandrake 8.0 PHP version: 4.1.0 PHP Bug Type: Unknown/Other Function Bug description: register_shutdown_function bug Current directory in main program body and into shutdown function is not same. Sometimes its changes to '/'

[PHP-DEV] Bug #14252: build fails using AIX C 4.4 on AIX 4.3.3 box

2001-11-27 Thread paulo . martins
From: [EMAIL PROTECTED] Operating system: AIX 4.3.3 PHP version: 4.0CVS-2001-11-27 PHP Bug Type: *Compile Issues Bug description: build fails using AIX C 4.4 on AIX 4.3.3 box Hi i am having trouble compiling the latest CVS with AIX C 4.4 on AIX 4.3.3. The same problem have

[PHP-DEV] Bug #14253: build fails using AIX C 4.4 on AIX 4.3.3 box

2001-11-27 Thread paulo . martins
From: [EMAIL PROTECTED] Operating system: AIX 4.3.3 PHP version: 4.0CVS-2001-11-27 PHP Bug Type: *Compile Issues Bug description: build fails using AIX C 4.4 on AIX 4.3.3 box Hi i am having trouble compiling the latest CVS with AIX C 4.4 on AIX 4.3.3. The same problem have

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Andi Gutmans
I don't think this should be changed and we should stick to the way it is in C. (It is also not BC and even if I thought it's a good idea, which I don't, I don't think it's worth it). Andi At 11:48 AM 11/27/2001 +0100, Anders Johannsen wrote: This patch allows for nested 'C-style' comments,

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Adam Wright
But in C, you can #if 0 whole blocks out regardless. I'm in favour of a change like this (if not this specific one) in 4.2. adamw - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Anders Johannsen [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, November 27, 2001 5:21 PM

[PHP-DEV] Bug #14254: SQLERROR -439

2001-11-27 Thread cedric . boudin
From: [EMAIL PROTECTED] Operating system: Solaris 8 PHP version: 4.0.6 PHP Bug Type: Informix related Bug description: SQLERROR -439 Similarly to Bugs 13459 and 8267 we do get error 439. on php 3.0.18 and 4.0.6 http://marc.theaimsgroup.com/?l=php-devm=97812975300057w=2

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread John Donagher
Sorry, why can't you do that in php? On Tue, 27 Nov 2001, Adam Wright wrote: But in C, you can #if 0 whole blocks out regardless. I'm in favour of a change like this (if not this specific one) in 4.2. adamw - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Anders

[PHP-DEV] Bug #14255: setcookie bug (Cookie is destroyed/Inaccessible)

2001-11-27 Thread kris . wilkinson
From: [EMAIL PROTECTED] Operating system: Debian 2.2.19 PHP version: 4.0.6 PHP Bug Type: HTTP related Bug description: setcookie bug (Cookie is destroyed/Inaccessible) The problem is simple, in the older versions of php, you could set a cookie and have it available for your

[PHP-DEV] Bug #14253 Updated: build fails using AIX C 4.4 on AIX 4.3.3 box

2001-11-27 Thread sniper
ID: 14253 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *Compile Issues Operating System: AIX 4.3.3 PHP Version: 4.0CVS-2001-11-27 New Comment: submitted twice. Previous Comments:

[PHP-DEV] Segmentation faults still :(

2001-11-27 Thread Eric Terstegen
Hello all, I am still having some problems with segmentation faults (making an extension), and this is with the latest release (4.1.0RC3) ... Maybe I am just stupid and the code is screwed up, but if anyone would take a look at this I would greatly apprectiate it.. Bascially i am making a

[PHP-DEV] Bug #14251 Updated: register_shutdown_function bug

2001-11-27 Thread sniper
ID: 14251 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Analyzed Old Bug Type: Unknown/Other Function Bug Type: Scripting Engine problem Operating System: Linux Mandrake 8.0 PHP Version: 4.1.0 New Comment: Reproduced. Seems like cwd changes to / always. Previous

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Jani Taskinen
PHP != C --Jani On Tue, 27 Nov 2001, Adam Wright wrote: But in C, you can #if 0 whole blocks out regardless. I'm in favour of a change like this (if not this specific one) in 4.2. adamw - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: Anders Johannsen [EMAIL

[PHP-DEV] Bug #14252 Updated: build fails using AIX C 4.4 on AIX 4.3.3 box

2001-11-27 Thread sniper
ID: 14252 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Assigned Bug Type: Compile Failure Operating System: AIX 4.3.3 PHP Version: 4.0CVS-2001-11-27 Old Assigned To: Assigned To: sniper New Comment: I will try with a AIX 4.3.3 account I got. Previous Comments:

Re: [PHP-DEV] status of openssl fn in php 4.1

2001-11-27 Thread Wez Furlong
On 23/11/01, Stig Venaas [EMAIL PROTECTED] wrote: On Fri, Nov 23, 2001 at 10:19:17AM +0100, Pavol Cvengros wrote: please I need to know the status (functionality) of openssl support in next version of php ( php-4.1 ??? ) (because I work on new free national CA) There are more

[PHP-DEV] Bug #14253 Updated: build fails using AIX C 4.4 on AIX 4.3.3 box

2001-11-27 Thread paulo . martins
ID: 14253 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: *Compile Issues Operating System: AIX 4.3.3 PHP Version: 4.0CVS-2001-11-27 New Comment: sorry, clicked twice on the button... Previous Comments:

[PHP-DEV] Bug #14255 Updated: setcookie bug (Cookie is destroyed/Inaccessible)

2001-11-27 Thread hholzgra
ID: 14255 Updated by: hholzgra Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Debian 2.2.19 PHP Version: 4.0.6 New Comment: setcookie (myCookie,Blah,time()+7201); ^ ^ do you realy have quotes here? -

[PHP-DEV] Bug #14255 Updated: setcookie bug (Cookie is destroyed/Inaccessible)

2001-11-27 Thread hholzgra
ID: 14255 Updated by: hholzgra Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: HTTP related Operating System: Debian 2.2.19 PHP Version: 4.0.6 New Comment: (switched to feedback status) Previous Comments:

[PHP-DEV] Bug #14254 Updated: SQLERROR -439

2001-11-27 Thread sniper
ID: 14254 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Informix related Operating System: Solaris 8 PHP Version: 4.0.6 New Comment: Can you please add a short PHP script with which you can reproduce this ? Also, please try PHP 4.1.0 (to be

[PHP-DEV] RE: Bug #14255 Updated: setcookie bug (Cookie is destroyed/Inaccessible)

2001-11-27 Thread Kris Wilkinson
Yes, there are quotes there. If you remove the quotes, the cookie doesn't not set itself. People have been commenting on this under your setcookie function information. The cookie will not actually initializate if you remove the quotes!! -Original Message- From: Bug Database

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread James Moore
But in C, you can #if 0 whole blocks out regardless. I'm in favour of a change like this (if not this specific one) in 4.2. if(0) { } - James -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP-DEV] Bug #14255 Updated: setcookie bug (Cookie is destroyed/Inaccessible)

2001-11-27 Thread kris . wilkinson
ID: 14255 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: HTTP related Operating System: Debian 2.2.19 PHP Version: 4.0.6 New Comment: yes there are quotes in the line. If you remove the quotes, the cookie doesn't initialize at

[PHP-DEV] Bug #14255 Updated: setcookie bug (Cookie is destroyed/Inaccessible)

2001-11-27 Thread kris . wilkinson
ID: 14255 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Debian 2.2.19 PHP Version: 4.0.6 New Comment: Setting a pre-defined value for the time aspect works, however ... just to let you guys know, if you put setcookie

[PHP-DEV] Bug #14256: libphp4.la Won't Compile on OS X v10.1

2001-11-27 Thread dahnke
From: [EMAIL PROTECTED] Operating system: Mac OS X PHP version: 4.1.0 PHP Bug Type: Compile Failure Bug description: libphp4.la Won't Compile on OS X v10.1 Mac OS X 10.1 development tools default to a two-level namespace, whereas 10.0 tools defaulted to a flat

  1   2   >