[PHP-DEV] Bug #13380: PHP 4.0.6 could not be downloaded from your site.

2001-09-21 Thread vanavil
From: [EMAIL PROTECTED] Operating system: PHP version: 4.0.6 PHP Bug Type: *General Issues Bug description: PHP 4.0.6 could not be downloaded from your site. PHP 4.0.6 could not be downloaded from your site. -- Edit bug report at: http://bugs.php.net/?id=13380edit=1 --

[PHP-DEV] Bug #13382: PHP - MySQL select statement

2001-09-21 Thread tranxuan . thuyen
From: [EMAIL PROTECTED] Operating system: windows2000 PHP version: 4.0.6 PHP Bug Type: Output Control Bug description: PHP - MySQL select statement Dear supporter, My name is Thuyen Tran (KPMG CT Information) and I am working now with PHP and MySQL. I just have a

[PHP-DEV] [] php-dev ?

2001-09-21 Thread
¾È³çÇϼ¼¿ä. kkmoon¿î¿µÀÚÀÔ´Ï´Ù. º»¸ÞÀÏÀÌ ÇÊ¿ä¾øÀ¸½Ã¸é ¸ÞÀϼö½Å°ÅºÎ¼³Á¤À» ÇϽðųª [EMAIL PROTECTED] ·Î ¼ö½Å°ÅºÎ¸ÞÀϹٶø´Ï´Ù. ¾ÕÀ¸·Î ¹ß¼Û ÇÏÁö ¾Ê°Ú½À´Ï´Ù ÀúÀÇ È¨ÆäÀÌÁökkmoonÀÌ »õ·Ó°Ô °³ÆíµÇ¾ú½À´Ï´Ù.

[PHP-DEV] Bug #13383: The specified CGI application misbehaved by not returning a complete set of HTT

2001-09-21 Thread smanish
From: [EMAIL PROTECTED] Operating system: Windows 2000 with IIS 5.0 PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: The specified CGI application misbehaved by not returning a complete set of HTT ?php //header (Content-type: image/gif) ; ? html

[PHP-DEV] Bug #13384: Enctype multipart/form-date

2001-09-21 Thread arwinux
From: [EMAIL PROTECTED] Operating system: Linux hurricane 2.2.19-5tr PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: Enctype multipart/form-date I'm not sure it's a bug. But I have checked all of my configuration system and I think the problem is

[PHP-DEV] Seeding rand() at process start?

2001-09-21 Thread mlwmohawk
Does it make sense for PHP to seed rand() with srand() when it starts up, during MINIT in basic_functions.c? It just seems that there is no good way to ensure you have a good seed for random, and if rand() were ready to use, out of the box a lot of people would not be pulling their hair out

[PHP-DEV] Bug #13384 Updated: Enctype multipart/form-date

2001-09-21 Thread hholzgra
ID: 13384 Updated by: hholzgra Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: Unknown/Other Function Operating System: Linux hurricane 2.2.19-5tr PHP Version: 4.0.6 New Comment: Is Linux hurricane a RedHat based distribution and you are using the distributions PHP

[PHP-DEV] enable truetype string function in gd

2001-09-21 Thread Thomas Wentzel
Hi! I try to get the above mentioned to work with the 4.0.6 release on Linux! But even though I provide the configure script with the --enable-gd-native-ttf switch, it reports that the feature is a no go ./configure --enable-modules=so --without-mysql --with-pgsql=/usr/local \

[PHP-DEV] Bug #13384 Updated: Enctype multipart/form-date

2001-09-21 Thread jeroen
ID: 13384 Updated by: jeroen Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Unknown/Other Function Operating System: Linux hurricane 2.2.19-5tr PHP Version: 4.0.6 New Comment: Can you provide a short script which is showing this problem? And you should use

[PHP-DEV] Bug #13385: nl2br hangs on specific strings

2001-09-21 Thread bbonev
From: [EMAIL PROTECTED] Operating system: Linux glibc 2.2 PHP version: 4.0CVS-2001-09-21 PHP Bug Type: Strings related Bug description: nl2br hangs on specific strings bbonev@orange:~/php/php4$ ./php ? echo nl2br(asd\n\ndsa\r\rqwe\r\n\newq\n\r\r) ? X-Powered-By:

Fwd: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous (fwd)

2001-09-21 Thread Andi Gutmans
Guys, I think this is the last problem which is holding up RC3 and hopefully 4.0.7. Does anyone here know the code in rfc1867? I don't know it well enough in order to decide if this patch is OK or not. If no one answers I'll apply it and we should as the QA guys to test file uploads

Re: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous (fwd)

2001-09-21 Thread Boian Bonev
please check bug id 13385, i hope that this is my mistake or inappropriate build, but if i am not wrong, it is a serious thing... in short ? echo nl2br(asd\n\ndsa\r\rqwe\r\n\newq\n\r\r) ? hangs with latest cvs. b. - Original Message - From: Andi Gutmans [EMAIL PROTECTED] To: [EMAIL

Re: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous (fwd)

2001-09-21 Thread Andi Gutmans
Seems like boyer_str_to_str() is buggy. If I change it to php_str_to_str() it seems to work. I think Sascha added this function but I might be wrong. Andi At 06:46 PM 9/21/2001 +0300, Boian Bonev wrote: please check bug id 13385, i hope that this is my mistake or inappropriate build, but if i

Re: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous(fwd)

2001-09-21 Thread Sascha Schumann
On Fri, 21 Sep 2001, Andi Gutmans wrote: Seems like boyer_str_to_str() is buggy. If I change it to php_str_to_str() it seems to work. I think Sascha added this function but I might be wrong. I did not change nl2br though. I probably would have noticed that, if the commit message

Re: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous (fwd)

2001-09-21 Thread Boian Bonev
currently i am rewriting the nl2br stuff. two reasons: 1. current ver does not handle nicely text with mixed dos/unix/mac line endings 2. using generic str_replace for exactly 1 or 2 chars is really slower (IMHO this is used too often to pay the 200-500 bytes code overhead) when it is stable,

Re: [PHP-DEV] Re: Seeding rand() at process start?

2001-09-21 Thread mlwmohawk
That's not the point. If PHP seeds the random number generator at MINIT time, with a pretty good random seed it will save a lot of work for devlopers tying to use rand() to come up with a good random number. As it is now, they need some sort of flag that indicates that they have seeded the

Re: [PHP-DEV] Re: Seeding rand() at process start?

2001-09-21 Thread Sterling Hughes
On Fri, 21 Sep 2001 [EMAIL PROTECTED] wrote: That's not the point. If PHP seeds the random number generator at MINIT time, with a pretty good random seed it will save a lot of work for devlopers tying to use rand() to come up with a good random number. As it is now, they need some sort of

Re: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous(fwd)

2001-09-21 Thread Derick Rethans
On Fri, 21 Sep 2001, Andi Gutmans wrote: Seems like boyer_str_to_str() is buggy. If I change it to php_str_to_str() it seems to work. I think Sascha added this function but I might be wrong. When I added some support for MAC line endings, I was told boyer_str_to_Str() was the faster

[PHP-DEV] Bug #13007 Updated: is there such meaning of unsigned long in PHP?

2001-09-21 Thread derick
ID: 13007 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *General Issues Operating System: FreeBSD PHP Version: 4.0.6 New Comment: PHP does not support unsigned longs, and will not provide them in the near future. Previous Comments:

[PHP-DEV] Bug #13386: problem supressing errors by '@' and including files

2001-09-21 Thread kapp
From: [EMAIL PROTECTED] Operating system: SuSE Linux 7.1 PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: problem supressing errors by '@' and including files Hi Folks! Pls. look at the following problem: I have a database application which

Re: [PHP-DEV] Bug id #11998 - source code patch - Dont Use Previous (fwd)

2001-09-21 Thread Boian Bonev
indeed boyer-moore is slower for short strings... anyway i have made a patch that addresses both mac/unix/dos line endings and also works with files that have different endings inside (imagine a file created on *nix edited under windows), which is a very common case. it is slightly slower than

[PHP-DEV] Bug #13387: Parser chokes on first case in switch statement if seperately script-delimited

2001-09-21 Thread macro
From: [EMAIL PROTECTED] Operating system: Mandrake Linux PHP version: 4.0.5 PHP Bug Type: *Compile Issues Bug description: Parser chokes on first case in switch statement if seperately script-delimited Description: The parser chokes on the first case in switch statment if

[PHP-DEV] Bug #13388: Could not connect to server

2001-09-21 Thread dean . gossi
From: [EMAIL PROTECTED] Operating system: PHP version: 4.0.6 PHP Bug Type: IIS related Bug description: Could not connect to server Configuration: 1. Windows 2000 Server (SP2) with PHP 4.0.6 using php4isapi.dll 2. Problem: Warning: Failed to Connect

[PHP-DEV] Bug #13388 Updated: Could not connect to server

2001-09-21 Thread derick
ID: 13388 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: IIS related Operating System: PHP Version: 4.0.6 New Comment: This all makes no sense, please reopen with real information. (And read www.php.net/bugs-dos-and-donts.php before posting).

Re: [PHP-DEV] RISC OS port

2001-09-21 Thread Alex Waugh
On 11/9/2001 I wrote: James Moore [EMAIL PROTECTED] wrote: There's only a handful of small patches to various files, and a new SAPI module. Should I post the changes to this list, mail them to someone, or apply for a CVS account? I don't envisage too many more changes, but

Re: [PHP-DEV] enable truetype string function in gd

2001-09-21 Thread Rasmus Lerdorf
I try to get the above mentioned to work with the 4.0.6 release on Linux! But even though I provide the configure script with the --enable-gd-native-ttf switch, it reports that the feature is a no go There was a slight buglet in 4.0.6. Use --enable-gd-native-tt instead. -Rasmus --

[PHP-DEV] ZEND_INIT_MODULE_GLOBALS problem

2001-09-21 Thread Andrei Zmievski
I've run into the following problem recently: PHP_MINIT(foo) { ZEND_INIT_MODULE_GLOBALS(foo, NULL, NULL); } If ZTS is not defined then the compilation aborts with called object is not a function because ZEND_INIT_MODULE_GLOBALS tries to call NULl as a function name. How should this be

[PHP-DEV] RE: Bug #13388 Updated: Could not connect to server

2001-09-21 Thread Gossi, Dean
How could you say this is bogus? What does this mean? Do you reject the bug? On what grounds. This is very simple. 1. Windows 2000 server with SP2 running IIS 5.0. 2. There are 2 ways to setup PHP with IIS. First way: a) IIS manager b) Select Website properties

[PHP-DEV] Bug #13389: mail() function will not connect SMTP server when IIS config w/ php4isapi.dll

2001-09-21 Thread dean . gossi
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.6 PHP Bug Type: *General Issues Bug description: mail() function will not connect SMTP server when IIS config w/ php4isapi.dll I read your www.php.net/bugs-dos-and-donts.php file. Here is your

[PHP-DEV] Bug #13389 Updated: mail() function will not connect SMTP server when IIS config w/ php4isapi.dll

2001-09-21 Thread derick
ID: 13389 Updated by: derick Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus Bug Type: *General Issues Operating System: Windows 2000 PHP Version: 4.0.6 New Comment: Ok, one more time: This is probably not a bug, please ask for support questions on the [EMAIL PROTECTED] mailing

Re: [PHP-DEV] RE: Bug #13388 Updated: Could not connect to server

2001-09-21 Thread derick
Hello, please use the webform to update your reports. On Fri, 21 Sep 2001, Gossi, Dean wrote: How could you say this is bogus? What does this mean? Do you reject the bug? On what grounds. Too less information. This is very simple. 1. Windows 2000 server with SP2 running IIS 5.0. 2.

RE: [PHP-DEV] RE: Bug #13388 Updated: Could not connect to server

2001-09-21 Thread Gossi, Dean
What information are you looking for..I just told you how to reproduce it. What me to fix it for you... I guess I should just use asp. With this type of developer support (2-5 word responses to your emails) I don't think php will cause any stir in the marketplace

Re: [PHP-DEV] RE: Bug #13388 Updated: Could not connect to server

2001-09-21 Thread Joao Prado Maia
As I said, too less information, and this is probably not a bug. Please try to ask on the [EMAIL PROTECTED] or [EMAIL PROTECTED] for support questions. This is probably not a bug ? Are you kidding me ? I hope you are not closing any real nasty bugs because of this reasoning :) How can

Re: [PHP-DEV] RE: Bug #13388 Updated: Could not connect to server

2001-09-21 Thread Jeroen van Wolffelaar
How can you determine it is bogus within 2 minutes, please provide your rational. (...) This is probably not a bug ? Are you kidding me ? I hope you are not closing any real nasty bugs because of this reasoning :) From http://www.chiark.greenend.org.uk/~sgtatham/bugs.html Give the

[PHP-DEV] Bug #11945 Updated: ignore

2001-09-21 Thread jeroen
ID: 11945 Updated by: jeroen Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Unknown/Other Function Operating System: ugly bug PHP Version: 4.0.6 New Comment: Test timing settings of www.php.net (off by approx. 9 or 10 hours) Previous Comments:

[PHP-DEV] Time of www.php.net incorrect

2001-09-21 Thread Jeroen van Wolffelaar
I posted a bug-update 5 minutes ago, and from the mail headers: Date: 22 Sep 2001 10:34:57 - It is now GMT/UTC 21 sep 2001 22:30 or something. That means that bugs.php.net is off-time by 12 hours, which is very annoying. (chronology of posts is completely wrong). Can someone please fix

Re: [PHP-DEV] RE: Bug #13388 Updated: Could not connect to server

2001-09-21 Thread Alexander Wagner
Gossi, Dean wrote: What information are you looking for..I just told you how to reproduce it. What me to fix it for you... The information you provided boils down to that on Win2k SP2, IIS, mail() works for you when PHP runs as CGI, but not as a module. Since only mail() doesn't

Re: [PHP-DEV] parsing

2001-09-21 Thread Markus Fischer
On Fri, Sep 21, 2001 at 01:09:49AM +0200, Dries Plessers wrote : Hello, [suuport question skipped] This is not a support forum, try asking on [EMAIL PROTECTED] . - Markus -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP-DEV] Zend CVS doesn't compile

2001-09-21 Thread mlwmohawk
Tried latest cvs update from zend and yy_state_type is typedef'ed in multiple places. Attached is a patch which should allow you to compile. I'm not sure what the procedure is for getting the fix back to zend. patch.zend -- PHP Development Mailing List http://www.php.net/ To unsubscribe,