Re: [PHP-DEV] [Patch] LDAP Error reporting for 4.2.1

2002-06-25 Thread derick
On Wed, 26 Jun 2002, Stig Venaas wrote: > On Tue, Jun 25, 2002 at 08:13:29PM -0400, Kristofer T. Karas wrote: > > I'm using OpenLDAP 1.x in PHP 4.2.1, and was dismayed that > > $x = @ldap_add(...); > > dumps verbiage to stderr if the add fails, despite the "@". > > > > Figured it'd be faster

Re: [PHP-DEV] [Patch] LDAP Error reporting for 4.2.1

2002-06-25 Thread Stig Venaas
On Tue, Jun 25, 2002 at 08:13:29PM -0400, Kristofer T. Karas wrote: > I'm using OpenLDAP 1.x in PHP 4.2.1, and was dismayed that > $x = @ldap_add(...); > dumps verbiage to stderr if the add fails, despite the "@". > > Figured it'd be faster to fix it than to whine and complain. > > In fixing

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/gd config.m4 gd.c

2002-06-25 Thread Rasmus Lerdorf
Ok, whatever the mapping, my point is that I'd rather see a slightly wrong image than a broken image. Simply removing the function is a bad idea. -Rasmus On Tue, 25 Jun 2002, Marcus [iso-8859-1] Börger wrote: > Defenitly not because if you want to draw a non filled ellipse than > a filled elli

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/gd config.m4 gd.c

2002-06-25 Thread Marcus Börger
Defenitly not because if you want to draw a non filled ellipse than a filled ellipse is very different. As far as i understand the documentation ImageEllipse(x,y,w,h,c) = ImageArc(x,y,w,h,0,360,c) If so we can easiliy map ImageEllipse to ImageArc if ImageEllipse is not present. marcus At 18:3

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/gd config.m4 gd.c

2002-06-25 Thread Rasmus Lerdorf
It might be an idea to alias it to imagefilledellipse instead of just deleting it. Then it wouldn't break stuff. If the current fill colour is set, then it will be slightly wrong, but I think that is slightly better than a broken image. -Rasmus On Tue, 25 Jun 2002, Marcus Börger wrote: > hell

Re: [PHP-DEV] code profiler

2002-06-25 Thread Ivan Ristic
> i am searching for a PHP code profiler DBG (http://dd.cron.ru/dbg/sshot.php) seems to be doing what you need. The link points to the screenshots page, and some screenshots show the profiler in action. -- Best regards, Ivan Ristic, Chief Technology Officer DataGate Network Solutions Ltd.

[PHP-DEV] Has this fp fix been considered?

2002-06-25 Thread George Whiffen
Has the following fix for php's fp decimal arithmetic problems been considered? Fix: --- Numeric rounding to DBL_DIG decimal digits of the results of php's arithmetic operators via a redecimalize function: double redecimalize(double dval) { double f; if (dval == 0) { ret

RE: [PHP-DEV] Re: Switching zlib.output_compression, bug #16109

2002-06-25 Thread Jaime Bozza
Personally, I don't really care to have compression turned off automatically for images. I'd like to be able to make that choice myself. For the browsers that work correctly, an uncompressed generated image will still be able to take advantage of zlib compression. I *DO* like the ability to be

Re: [PHP-DEV] code profiler

2002-06-25 Thread George Schlossnagle
APD (http://apd.communityconnect.com/) is a php code profiler. On Tuesday, June 25, 2002, at 10:26 AM, Tit "Black" Petric wrote: > ok this may be a bit offtopic, but here goes > > i am searching for a PHP code profiler, something to measure key > components of the PHP scripts, tracking how many

[PHP-DEV] code profiler

2002-06-25 Thread Tit \"Black\" Petric
ok this may be a bit offtopic, but here goes i am searching for a PHP code profiler, something to measure key components of the PHP scripts, tracking how many function calls are preformed in the code, the cost of each of the functions in terms of cpu cycles and memory usage, minimal, maximum, a

Re: [PHP-DEV] Re: Switching zlib.output_compression, bug #16109

2002-06-25 Thread Stefan Roehrich
On 2002-06-25 09:36:20, Yasuo Ohgaki wrote: > Yasuo Ohgaki wrote: > >I would suggest turn off compression for image. > I mean turn off compression manually. > >As you already know, turning on and off by header(mime-type) > >does not work always, thus it's confusing. Yes, but we need some kind of

RE: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-25 Thread Jaime Bozza
Unfortunately, in some cases, this won't work for me. The "image" scripts aren't always in their own separate directory. I *have* a workaround, but I just thought it would be nicer to allow using: ini_set("zlib.output_compression", "Off"); at the start of a script. Apparantly, everyone see

Re: [PHP-DEV] Seeking Comments - Regarding header()

2002-06-25 Thread Hartmut Holzgraefe
Mike Hall wrote: >>Chris Shiflett wrote: >> >> >>>I have a few sites where I deliberately violate the HTTP spec in this >>>way to get around a bug in IE (I know, shame on me). I've been using >>>relative URLs in a "Location" header for years with no crashes that I >>>know of. >>> >>>There must be

Re: [PHP-DEV] ZendEngine2 and $argc,$argv

2002-06-25 Thread Marcus Börger
Works now, THX marcus At 06:22 25.06.2002, Andi Gutmans wrote: >Can you try the latest CVS version? It should be fixed there. >Let me know... >Thanks, >Andi > >At 11:04 PM 6/24/2002 +0200, Marcus Boerger wrote: >>Since i use ZendEngine2 i cannot use global $argc,$argv. >> >>Example: >> >>functio

Re: [PHP-DEV] xmlrpc & gd bundled win32 build broken

2002-06-25 Thread derick
On Tue, 25 Jun 2002, Marcus Börger wrote: > GD should work after my last patch (if i understand autoconf etc correct) The patch looked good to me... a minor mistake on my part yesterday :) Derick > > At 11:21 25.06.2002, Edin Kadribasic wrote: > >The details: > > > >http://snaps.php.net/win32

Re: [PHP-DEV] xmlrpc & gd bundled win32 build broken

2002-06-25 Thread Marcus Börger
GD should work after my last patch (if i understand autoconf etc correct) At 11:21 25.06.2002, Edin Kadribasic wrote: >The details: > >http://snaps.php.net/win32/compile.log > >It would be nice if people would check this log file from time to time to >make sure their changes didn't break the buil

[PHP-DEV] xmlrpc & gd bundled win32 build broken

2002-06-25 Thread Edin Kadribasic
The details: http://snaps.php.net/win32/compile.log It would be nice if people would check this log file from time to time to make sure their changes didn't break the build. Edin -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] domxml win32 build broken (HEAD)

2002-06-25 Thread Christian Stocker
On Tue, 25 Jun 2002, Edin Kadribasic wrote: > Configuration: domxml - Win32 > Release_TS > Compiling... > php_domxml.c > c:\php4build\snap\ext\domxml\php_domxml.c(201) : error C2099: initializer is > not a constant > c:\php4build\snap\ext\domxml\php_domxml.

Re: [PHP-DEV] Re: Small CGI Serve

2002-06-25 Thread BB
Does no-one know how I can get the POST vars in there? If I get this done, then my server will be complete and ready to be re-written to be half decent :oP "Bb" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Get vars are working now! > > Just gotta do post and

Re: [PHP-DEV] singleton feature

2002-06-25 Thread BB
I would like to know too, "Purushotham Komaravolu" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Singleton means only one instance.. i.e. instance of a class per > webserver... all application scripts should talk only to that same instance > irrespective of t

[PHP-DEV] domxml win32 build broken (HEAD)

2002-06-25 Thread Edin Kadribasic
Configuration: domxml - Win32 Release_TS Compiling... php_domxml.c c:\php4build\snap\ext\domxml\php_domxml.c(201) : error C2099: initializer is not a constant c:\php4build\snap\ext\domxml\php_domxml.c(203) : error C2099: initializer is not a constant c:\php4

[PHP-DEV] CVS Account Request: sams_virusphp

2002-06-25 Thread SUDHIR SUPATKAR
php4/ext/mysql -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php