RE: [PHP-DEV] [PATCH] imagesavealpha()

2003-03-05 Thread Steven Brown
> -Original Message- > From: Ilia A. [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 05, 2003 6:31 AM > To: Steven Brown; Pierre-Alain Joye; [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] [PATCH] imagesavealpha() > > > On March 5, 2003 12:18 am, Steven Brown wrote:

RE: [PHP-DEV] [PATCH] imagesavealpha()

2003-03-04 Thread Steven Brown
> -Original Message- > From: Pierre-Alain Joye [mailto:[EMAIL PROTECTED] > Sent: Sunday, February 23, 2003 3:02 PM > To: Pierre-Alain Joye > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] [PATCH] imagesavealpha() > > > Hello, > > The 1st patch will be

RE: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Steven Brown
> -Original Message- > From: Jukka Holappa [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 20, 2003 10:06 PM > To: Steven Brown > Cc: 'Pierre-Alain Joye'; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] [PATCH] imagesavealpha() > >

RE: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-20 Thread Steven Brown
> -Original Message- > From: Pierre-Alain Joye [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 20, 2003 9:02 PM > To: Jukka Holappa > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] [PATCH] imagesavealpha() > > > On Thu, 20 Feb 2003 22:17:48 +0200 > Jukka Holapp

[PHP-DEV] Patch fixing truecolor transparency issues in libgd/php (against PHP 4.3.0)

2003-01-02 Thread Steven Brown
It seems libgd development has started up again, so I'll toss my truecolor fixes onto the pile. Some were already fixed in the version that comes with PHP-4.3.0 (I had originally patched against gd 2.0.1 beta), so these are the remaining issues I know of against PHP 4.3.0's dist. The patch is here

[PHP-DEV] php_sockets.dll

2002-12-23 Thread Steven
any ever managed to get the socket at work under windows2000 ? any suggestions are welcome when i enable the extension on windows 2000 server is keeps loading the page -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Core files from apache/PHP without -X

2002-12-05 Thread Steven Roussey
Hi all, I need someone's help. I am trying desperately to find a segfault bug in PHP's output compression. I can not make it happen on a test server as it is just me hitting the site and what I do doesn't cause a segfault. So running it in gdb doesn't work. And using the httpd -X option to create

RE: [PHP-DEV] PHP 4.3 ToDo

2002-11-22 Thread Steven Roussey
ally don't care either way. But in my haste to get rid of that function, I don't want to be responsible for the removal of other unrelated fixes. Sincerely, Steven Roussey http://Network54.com/ > -Original Message- > From: Georg Richter [mailto:[EMAIL PROTECTED]]

RE: [PHP-DEV] URL for segfaults

2002-11-21 Thread Steven Roussey
27;ll have to turn it back on and live with the segfaults for now until I find the problem with zLib 1.1.4. :( Luckily, I happen to have one string saved away that I know crashes it. Hopefully it will be enough to figure things out. Sincerely, Steven Roussey http://Network54.com/ > > O

RE: [PHP-DEV] URL for segfaults

2002-11-21 Thread Steven Roussey
Yes. Ideally such that you can grep for the failed URLs. I can see this as being very helpful to a lot of people. Debug modes don't work for production servers and it is only there that it is showing itself. BTW - Easy for you maybe! Sincerely, Steven Roussey http://Network5

RE: [PHP-DEV] URL for segfaults

2002-11-21 Thread Steven Roussey
ing simple... Sincerely, Steven Roussey http://Network54.com/ > -Original Message- > From: Vergoz Michael [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 21, 2002 8:47 am > To: Steven Roussey; [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] URL for segfaults > > Hi ! >

[PHP-DEV] URL for segfaults

2002-11-21 Thread Steven Roussey
d pid 12672 exit signal Segmentation fault (11) Sincerely, Steven Roussey http://Network54.com/ -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] PHP Database

2002-11-14 Thread Steven Priddy
I am looking into how I can make a database like this one that is MySql controlled. http://www.uhlfans.com/uhlstats/ That is one of my partners sites but the guy that created the database can't or won't tell me how to build one myself for a different subject. Thanks for your help! -- PHP Develo

Re: [PHP-DEV] PHP 4.3 ToDo

2002-11-14 Thread Steven Roussey
Personally, I'd like to see the MySQL extension work again. The issue: persistent connections are broken when used heavily. Simple fix: _restore_connection_defaults() can be eliminated until fixed properly. So if the simple fix is implemented then all users of MySQL not using transactions will w

[PHP-DEV] Changes to PHP/MySQL extension

2002-10-08 Thread Steven Roussey
amp;link->conn)->user); strcpy (passwd, (char *)(&link->conn)->passwd); mysql_change_user(&link->conn, user, passwd, ""); #endif return 0; } And change the two copies of this: if (connect_timeout != -1) to if (connect_timeout <= 0) My 2 cents

Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Steven J. Sobol
oo. I think it's pretty cool, but then I'm a bit of an oddball... > -Rasmus > > On Mon, 4 Mar 2002, Steven J. Sobol wrote: > > > On Sun, 3 Mar 2002, Rasmus Lerdorf wrote: > > > > > Make sure you have: > > > > > > PHP_

Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Steven J. Sobol
On Sun, 3 Mar 2002, Rasmus Lerdorf wrote: > Make sure you have: > > PHP_EXTENSION(exif, $ext_shared) > > in your config.m4 and then simply do: > > ./configure --with-foo=shared > > You will find it in your ./modules directory. I haven't tried this yet. I will later. I did find phpize, whic

Re: [PHP-DEV] PHP module creation

2002-03-04 Thread Steven J. Sobol
On Sun, 3 Mar 2002, Steven J. Sobol wrote: > > I've followed the instructions at http://www.zend.com/apidoc/ > and generated test code for a php extension, and can get it to compile > into a PHP binary, but I'm having difficulty finding the info I need to > get it to co

Re: [PHP-DEV] PHP module creation

2002-03-03 Thread Steven J. Sobol
On 3 Mar 2002, Lars Torben Wilson wrote: > On Sun, 2002-03-03 at 17:30, topside wrote: > > Where can I get information/documentation on creating my own PHP modules in > > C? I basicly just want to use some C functions within PHP - so I figure I > > can write a PHP module with functions which use

[PHP-DEV] RE: Proposed updates and extensions to the MySQL extension

2002-01-07 Thread Steven Roussey
number of child servers Apache will run. Sincerely, Steven Roussey http://Network54.com/?pp=e -- 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]

[PHP-DEV] Bug #14803: Call to SQLGetInfo in odbc_cursor gives empty cursor name

2002-01-02 Thread steven . gould
From: [EMAIL PROTECTED] Operating system: Sybase ODBC (QNX and Win2k) PHP version: 4.1.1 PHP Bug Type: ODBC related Bug description: Call to SQLGetInfo in odbc_cursor gives empty cursor name This bug appears to have been in the code for several versions - definitely 4.0.5 th

[PHP-DEV] Bug #14713: php_oracle.dll

2001-12-26 Thread steven
From: [EMAIL PROTECTED] Operating system: win2000 PHP version: 4.1.0 PHP Bug Type: Dynamic loading Bug description: php_oracle.dll when I config my websystem:php4.1.0+win2000 professional using CGI mode, I found browser tell me:"PHP Warning: Unable to load dynamic library

[PHP-DEV] What happened to lxr.php.net?

2001-06-25 Thread Steven Roussey
What happened to lxr.php.net? Will it return? Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact th

[PHP-DEV] Object Constructors in PHP

2001-04-05 Thread Steven Roussey
Don't ask why it is this way, but say we have these files: :: inc1.php :: :: inc2.php :: :: inc3.php :: ForumStyle(); } } ?> :: test.php :: http://network54.com/?pp=e -- PHP Development M

RE: [PHP-DEV] 4.0.5 Comments change (leads to inappropriate parseerror based on contents of comments)

2001-04-05 Thread Steven Roussey
e to hand convert all the ASP tags to more PHP like tags (and maybe eliminate short tags too) and then turn those options off so the (very common) scenario above doesn't drive people nuts later... Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e > > This was fixed

[PHP-DEV] 4.0.5 Comments change (leads to inappropriate parse error based oncontents of comments)

2001-04-04 Thread Steven Roussey
g. We can clean up our code to fix it (and will), but.... Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

Re: [PHP-DEV] Re: About arg_separator..

2001-04-04 Thread Steven Roussey
or so... Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e -- 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] Re: About arg_separator..

2001-04-04 Thread Steven Roussey
Hi, 4.0.5RC6 breaks our website due to the arg_separator change (we have special meanings for it). My $0.02... Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

RE: [PHP-DEV] RE: 4.0.5RC1 static build with Apache 1.3.19 problem

2001-03-23 Thread Steven Roussey
RC2 builds fine with my rebuild script (always good for testing :). Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e > -Original Message- > From: Steven Roussey [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 21, 2001 6:40 PM > To: [EMAIL PROTECTED] &

RE: [PHP-DEV] RE: 4.0.5RC1 static build with Apache 1.3.19 problem

2001-03-21 Thread Steven Roussey
Yes, I have tried it both ways. I configure Apache a second time after making php and it still does not work. :( Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e > Subject: Re: [PHP-DEV] RE: 4.0.5RC1 static build with Apache 1.3.19 > problem > > > Did you c

[PHP-DEV] RE: 4.0.5RC1 static build with Apache 1.3.19 problem

2001-03-16 Thread Steven Roussey
> Subject: 4.0.5RC1 static build with Apache 1.3.19 problem Also happens in Apache 1.3.12 Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e cd apache_1.3.12 CC=gcc CFLAGS="-O6 -march=i686 " CXX=gcc CXXFLAGS="-O6 -march=i686 " \ ./configure \ --acti

[PHP-DEV] 4.0.5RC1 static build with Apache 1.3.19 problem

2001-03-16 Thread Steven Roussey
bmodphp4.a libphp4.module mod_php4.c mod_php4.exp mod_php4.h mod_php4.lo mod_php4.o No Makefile. Is this an error with PHP or Apache? Sincerely, Steven Roussey Network54.com http://network54.com/?pp=e Build commands given .tar.gz files: gunzip < openssl-0.9.6.tar.gz | tar xvf - cd openssl-0

[PHP-DEV] RE: mysql_pconnect still broken (was: RE: What does this mean ?)

2001-01-16 Thread Steven Roussey
ved): > So, I think it's not fixed yet. Steven, you wrote about 99,8. I suppose > every Apache process here makes this error while ending. I just see it. :) Andi, I hope you are reading this. I looked at the CVS, and my patch was not properly applied. Andi has it looking through the non-

[PHP-DEV] RE: What does this mean ?

2001-01-16 Thread Steven Roussey
in CVS. If you are using Apache (most of us are with PHP), note that persistent connections are per process, not per machine. Mod_ssl can use an Apache extension to keep shared memory across processes, but PHP does not. Read the docs (or the PHP list) to find out more. Sincerely, Steven Roussey