Re: [PHP-DEV] [PATCH] bug 12655: datetime format in mssql extension

2002-04-16 Thread derick
Hello Steve, can you please make a unified diff (diff -u)? That is much more readable. Derick On Tue, 16 Apr 2002, steve dillon wrote: > The 4.1.2 (and before) mssql entension returns datetime fields as a locale > specific format eg: Oct 30 2001 7:44PM, which doesn't allow access to the > s

[PHP-DEV] mhash and C++ header (both HEAD and 4.2.0)

2002-04-16 Thread Yasuo Ohgaki
Some recent change(s) must be responsile for this error... In file included from /home/yohgaki/cvs/php/HEAD/ext/mhash/mhash.c:30: /usr/local/include/mhash.h:31: parse error before `MHash' /usr/local/include/mhash.h:35: warning: data definition has no type or storage class /usr/local/include/mhas

Re: [PHP-DEV] PHP 4.2.0 RC4

2002-04-16 Thread derick
Hello Aaron, if this fixes the problem, this patch should also go into PHP_4_2_0. regards, Derick On Tue, 16 Apr 2002, Aaron Bannert wrote: > On Tue, Apr 16, 2002 at 10:56:08AM +0200, Balazs Nagy wrote: > > Excusez moi, I had a hard time in the last D&D3 session when I wrote > > this. Here's

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

2002-04-16 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > I know. But I don't know, what to add there :-/ Stupid me, I did not look at internal_functions_win32.c, but at config.w32.h :-) -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift

[PHP-DEV] Win32 build broken

2002-04-16 Thread Sebastian Bergmann
c:\home\php\php4\main\php_ini.c(271): warning C4013: 'S_ISDIR': undefined php_ini.obj: error LNK2001: Unresolved external symbol _S_ISDIR -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.s

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

2002-04-16 Thread Sebastian Bergmann
"Stig S. Bakken" wrote: > internal_functions_win32.c? I know. But I don't know, what to add there :-/ -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ -- PHP Developme

RE: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dietrich Ayala
here's some reasons why XML in PHP does not compare favorably to XML in the MS platform: 1. None of the XML related extensions work together. SAX, XSLT, DOM, XML Schema are part of the same core in MSXML. There is incredible power and flexibility in that alone. 2. None of the XML extensions be

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread fabwash
and Google uses php for its website yay! - Original Message - From: "Stefan Livieratos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Dave Mertens" <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 8:36 PM Subject: Re: [PHP-DEV] The PHP Platform > Hi, > > Dave Mertens wrote: > > > That

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Stefan Livieratos
Hi, Dave Mertens wrote: > That all great. Almost every company (even google) has a SOAP interface. SOAP relies >for a big part on XML. > We (ISM, the company i work for) write e-commerce, b2c, b2b, extranet and portal >systems. > We have to connect several interface to the website. And SOAP ma

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 07:08:38PM -0400, Ken Egervari wrote: > The issue with the phpclasses repository is that none of the classes really > 'work together' much like the Java and .NET classes. As you have known, > extremephp.org was a project I started awhile back to do such a framework > (well

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Ken Egervari
The issue with the phpclasses repository is that none of the classes really 'work together' much like the Java and .NET classes. As you have known, extremephp.org was a project I started awhile back to do such a framework (well, actually a lot of subframeworks meshed into one). Nonetheless, this

Re: [PHP-DEV] PHP 4.2.0 RC4

2002-04-16 Thread Aaron Bannert
On Tue, Apr 16, 2002 at 10:56:08AM +0200, Balazs Nagy wrote: > Excusez moi, I had a hard time in the last D&D3 session when I wrote > this. Here's the dump: Give the attached patch a try. Looks like we're just trying to use the server_context before it's been initialized. (Thanks for Cliff for

[PHP-DEV] Proposed additional behaviour of str_replace()

2002-04-16 Thread Mårten Gustafsson
Is there anyone else than me that would find it useful to be able to do: 'FOO', 'bar' => 'BAR'); // Prints "FOO BAR" echo str_replace($replacements, $string); ?> With current behaviour one has to do: 'FOO', 'bar' => 'BAR'); // Prints "FOO BAR" echo str_replace(array_keys($

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

2002-04-16 Thread Stig S. Bakken
internal_functions_win32.c? - Stig On Tue, 2002-04-16 at 16:54, Sebastian Bergmann wrote: > Stig Bakken wrote: > > ssb Tue Apr 16 01:37:51 2002 EDT > > > > Modified files: > > /php4/ext/tokenizer config.m4 > > Log: > > * build tokenizer by default > > The following patc

Re: [PHP-DEV] RFC: PG(allow_url_fopen) slight behaviour change

2002-04-16 Thread Wez Furlong
On 16/04/02, "Stig S. Bakken" <[EMAIL PROTECTED]> wrote: > I think this is fine. Good - it's now in HEAD. > > wrapperallow_url_fopen=onallow_url_fopen=off > > > > http allowed disallowed > > ftpallowed

Re: [PHP-DEV] RFC: PG(allow_url_fopen) slight behaviour change

2002-04-16 Thread Stig S. Bakken
I think this is fine. - Stig On Tue, 2002-04-16 at 19:06, Wez Furlong wrote: > There is currently (and probably has been for quite a few releases) a > crash bug where allow_url_fopen can not be set on a per-virtual host basis. > That's because wrappers are only initialized on module init if > P

[PHP-DEV] [PATCH] bug 12655: datetime format in mssql extension

2002-04-16 Thread steve dillon
Title: [PATCH] bug 12655: datetime format in mssql extension The 4.1.2 (and before) mssql entension returns datetime fields as a locale specific format eg:  Oct 30 2001  7:44PM,  which doesn't allow access to the seconds or milliseconds field of datetime.  I patched my copy of mssql to have a

Re: [PHP-DEV] Re: [PHP-EVANGELISM] RE: [PHP-DEV] The PHP Platform

2002-04-16 Thread Daniel Lorch
Hi, > Just a note, that we also have a web server written in PHP ;) > http://nanoweb.si.kz/ and a protocol-independent server framework (which includes a sample webserver, too): http://daniel.lorch.cc/projects/phpserv/ SCNR :) -daniel -- PHP Development Mailing List

[PHP-DEV] CVS Account Request: adir

2002-04-16 Thread Adir Abraham
Hi! I would like to contribute to the PHP delopment by maintaining the documentation (phpdoc). Thanks! -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 11:27:36AM -0400, Robert Cummings wrote: > I keep hearing a lot of "my company this in microsoft" and "my company that" > and "blah blah blah". I'm sorry, but if the fullfillment of all your dreams > are in your company then you live a sad, sad life. The future is what you

RE: [PHP-DEV] The PHP Platform

2002-04-16 Thread James Cox
On Tue, Apr 16, 2002 at 05:09:57PM +0100, James Cox wrote: > I hear you on the call to make PHP more recognisable. That's why we have the > php-evangelism project, where we are putting together documents and facts as > to why choose PHP over other languages. Really advocating PHP. I invite > you

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 05:09:57PM +0100, James Cox wrote: > I hear you on the call to make PHP more recognisable. That's why we have the > php-evangelism project, where we are putting together documents and facts as > to why choose PHP over other languages. Really advocating PHP. I invite > you -

[PHP-DEV] RFC: PG(allow_url_fopen) slight behaviour change

2002-04-16 Thread Wez Furlong
There is currently (and probably has been for quite a few releases) a crash bug where allow_url_fopen can not be set on a per-virtual host basis. That's because wrappers are only initialized on module init if PG(allow_url_fopen) is set, rather than request init. I plan to change it so that wrappe

[PHP-DEV] Re: [PHP-EVANGELISM] RE: [PHP-DEV] The PHP Platform

2002-04-16 Thread Gabor Hojtsy
> It has been mentioned before -- "what is there left to do to PHP?" -- and I > believe that we could just fix up all the bugs left, and then work on > writing add-ons in pecl or pear. Really, lets stop turning this language > into bloat-ware with all the latest plugins and gadgets (that make othe

[PHP-DEV] xslt extension stuff

2002-04-16 Thread Sterling Hughes
Hey, Just a note not to worry to much yet about the xslt extension related stuff... All the new api changes are quite subject to change, my main reason for commiting to cvs is for version histories (I can revert if i screw things up :), I'll send a message when it all ge

RE: [PHP-DEV] The PHP Platform

2002-04-16 Thread James Cox
I hear you on the call to make PHP more recognisable. That's why we have the php-evangelism project, where we are putting together documents and facts as to why choose PHP over other languages. Really advocating PHP. I invite you - and anyone else interested - to join. Secondly, as to why PHP suc

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 11:20:26PM +0800, Alan Knowles wrote: > I know this is going nowhere :) but anyway - its late here and I've got > a few secs to kill > > Ask your boss, how often has he done a project using microsoft tools, > and its been seriously delayed because they found a seriou

Re: [PHP-DEV] Please forward to the list, I'm not a member anymore... (fwd)

2002-04-16 Thread J Smith
I don't know if it's so much a violation of the GPL as it is a clash with PHP's license, which is basically BSD-like. The whole point of the PHP license is that you can basically use PHP without restriction, commercial or otherwise. The GPL doesn't allow that. But I'm just guessing here. It f

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 10:54:33AM -0400, Ken Egervari wrote: > a) no enough are learning php which in itself, says PHP is not doing a good > enough job promoting the language And that's the problem. PHP isn't promoted anymore. Not in the way .NET and Java are. 2 years ago i convinced my boss to u

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Yasuo Ohgaki
Brad Lafountain wrote: > --- Dave Mertens <[EMAIL PROTECTED]> wrote: > >>On Tue, Apr 16, 2002 at 07:27:06AM -0700, brad lafountain wrote: >> And next week i have a special C# traning for PHP developers. Offered >>> >>free by >> Microsoft. >>> >>> alls i have to say is WOW. This is one pat

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Robert Cummings
I keep hearing a lot of "my company this in microsoft" and "my company that" and "blah blah blah". I'm sorry, but if the fullfillment of all your dreams are in your company then you live a sad, sad life. The future is what you make of it, and each and every person has the power to contribute to ch

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Alan Knowles
I know this is going nowhere :) but anyway - its late here and I've got a few secs to kill Ask your boss, how often has he done a project using microsoft tools, and its been seriously delayed because they found a serious bug in the microsoft tools, that had to be worked around.- if he answ

[PHP-DEV] PATCH to zend_list.c

2002-04-16 Thread Thies C. Arntzen
zeev, andi i have to following problem: while the zend_destroy_rsrc_list() is running a _dtor function for one of my resources it (the dtor of the resource) does a zend_list_delete, which does a hash_find on the resource-list again. the problem is that zend_destroy_r

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 07:57:26AM -0700, brad lafountain wrote: > > --- Dave Mertens <[EMAIL PROTECTED]> wrote: > > But the fact the PHP don't have a proper XML parser, only a scripting SOAP > > parser > > Well i currently am working on a soap c extension for php (ext/soap). Its > pretty fast.

RE: [PHP-DEV] php installation in XP

2002-04-16 Thread Joseph Tate
The better forum to ask these kinds of questions is on the php-general list. See http://www.php.net/mailing-lists.php for the complete listing. Make sure that you read through the installation guide again before posting though. > -Original Message- > From: maria [mailto:[EMAIL PROTECTED]

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread brad lafountain
--- Dave Mertens <[EMAIL PROTECTED]> wrote: > On Tue, Apr 16, 2002 at 07:27:06AM -0700, brad lafountain wrote: > > > And next week i have a special C# traning for PHP developers. Offered > free by > > > Microsoft. > > > > alls i have to say is WOW. This is one pathetic attempt by Microsoft. >

Re: [PHP-DEV] Please forward to the list, I'm not a member anymore... (fwd)

2002-04-16 Thread Stefan Esser
Morning, > > It is GPL > > Then we can't use it with PHP... sorry, but I do not see your point. How can optional support for a GPL library in PHP violate the GPL? Stefan Esser -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Ken Egervari
I the fact that you still program says 2 things a) no enough are learning php which in itself, says PHP is not doing a good enough job promoting the language b) there actually needs to be more support for PHP software in comparison to .net and java applications. - Original Message - Fro

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

2002-04-16 Thread Sebastian Bergmann
Stig Bakken wrote: > ssb Tue Apr 16 01:37:51 2002 EDT > > Modified files: > /php4/ext/tokenizer config.m4 > Log: > * build tokenizer by default The following patch makes ext/tokenizer compile by default on Win32, too, but the extension is not 'activated'. Why? Index: ph

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Ken Egervari
I'd have to agree with Dave. PHP is too far behind and for those that didn't agree with earlier post that started this entire topic about developing a a PHP Platform, this is the reality that we all face. I for one have been using Java and .Net for all my applications now. PHP just doesn't come

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 05:40:19PM +0300, Andi Gutmans wrote: > At 07:27 16/04/2002 -0700, brad lafountain wrote: > > > And next week i have a special C# traning for PHP developers. Offered > > free by > > > Microsoft. > > > > alls i have to say is WOW. This is one pathetic attempt by Microsoft.

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Tue, Apr 16, 2002 at 07:27:06AM -0700, brad lafountain wrote: > > And next week i have a special C# traning for PHP developers. Offered free by > > Microsoft. > > alls i have to say is WOW. This is one pathetic attempt by Microsoft. Yeah, but are there any professional tranings for PHP? Do y

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Andi Gutmans
At 07:27 16/04/2002 -0700, brad lafountain wrote: > > And next week i have a special C# traning for PHP developers. Offered > free by > > Microsoft. > > alls i have to say is WOW. This is one pathetic attempt by Microsoft. I wouldn't call it pathetic because these things work. Andi -- PHP D

Re: [PHP-DEV] Please forward to the list, I'm not a member anymore...(fwd)

2002-04-16 Thread David Eriksson
On Tue, 16 Apr 2002, Uwe Steinmann wrote: > On Tue, Apr 16, 2002 at 02:07:01PM +0200, Derick Rethans wrote: > > -- Forwarded message -- > > The homepage of Panda PDF is: > > > > http://www.stillhq.com/cgi-bin/getpage?area=panda&page=index.htm > > > > It offers a spec, the featur

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread brad lafountain
> And next week i have a special C# traning for PHP developers. Offered free by > Microsoft. alls i have to say is WOW. This is one pathetic attempt by Microsoft. - Brad __ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://

[PHP-DEV] Re: Persistent Server Variable - dirty solution using mysql & overload extension

2002-04-16 Thread Andrei Zmievski
Alexander Belyaev wrote: > > Any comments, suggestions? > ... > function __get($prop_name, &$prop_value) > { > if($prop_name=='id' or $prop_name=='version' or $prop_name=='classname' or > $prop_name=='data') > { > $prop_value = $this->$prop_name; >

Re: [PHP-DEV] Please forward to the list, I'm not a member anymore... (fwd)

2002-04-16 Thread Uwe Steinmann
On Tue, Apr 16, 2002 at 02:07:01PM +0200, Derick Rethans wrote: > -- Forwarded message -- > The homepage of Panda PDF is: > > http://www.stillhq.com/cgi-bin/getpage?area=panda&page=index.htm > > It offers a spec, the features are reasonable, the license is: ? It is GPL Uwe --

[PHP-DEV] Please forward to the list, I'm not a member anymore... (fwd)

2002-04-16 Thread Derick Rethans
-- Forwarded message -- The homepage of Panda PDF is: http://www.stillhq.com/cgi-bin/getpage?area=panda&page=index.htm It offers a spec, the features are reasonable, the license is: ? You should look yourself greetings Dennis -- PHP Development Mailing List

Re: [PHP-DEV] panda pdf

2002-04-16 Thread derick
On 16 Apr 2002, Dennis Heuer wrote: > I just wanted to vote for the support for the Panda PDF lib in PHP. The > other libs are both "not really" free, the licenses aren't that nice. > Panda PDF is GPLed. I swear, I am not affiliated with the developers ;) LGPL or GPL? Derick --

Re: [PHP-DEV] panda pdf

2002-04-16 Thread Hartmut Holzgraefe
Dennis Heuer wrote: > I just wanted to vote for the support for the Panda PDF lib in PHP. The > other libs are both "not really" free, the licenses aren't that nice. > Panda PDF is GPLed. I swear, I am not affiliated with the developers ;) how does it compare feature-wise ? -- Hartmut Holzgraef

[PHP-DEV] Persistent Server Variable - dirty solution using mysql & overload extension

2002-04-16 Thread Alexander Belyaev 2147483647
Hello, Bad idea, slow, really.. But it allows to create,modify persistent variables, etc... Any comments, suggestions? Alexander - use test; CREATE TABLE `tbl` ( 'id' mediumint(8) unsigned NOT NULL, 'version' me

[PHP-DEV] panda pdf

2002-04-16 Thread Dennis Heuer
Hi, I just wanted to vote for the support for the Panda PDF lib in PHP. The other libs are both "not really" free, the licenses aren't that nice. Panda PDF is GPLed. I swear, I am not affiliated with the developers ;) Dennis -- PHP Development Mailing List To unsubscri

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Andrey Hristov
Hi > I know that there are RPC and SOAP classes. But that is not the point that i wanted >to make. > What i'm trying to say is that companies never hear about PHP. OK, they hear about >the MIME bug and did you know what my boss said?? > You see, PHP is just as bad as ASP, so why use PHP and not

Re: [PHP-DEV] PHP 4.2.0 RC4

2002-04-16 Thread Balazs Nagy
On Mon, 2002-04-15 at 19:04, [EMAIL PROTECTED] wrote: > can you make a backtrace of this? Excusez moi, I had a hard time in the last D&D3 session when I wrote this. Here's the dump: #0 0x00440397 in php_apache_sapi_log_message ( msg=0xbfffef80 "PHP Warning: Unable to load dynamic librar

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Dave Mertens
On Mon, Apr 15, 2002 at 03:40:15PM +0300, Andrey Hristov wrote: > > > > I really have to fight within the company i work to keep PHP. Do you know what PHP >really needs? Good native XML and SOAP > support.. > > Without that it's very hard to convince my boss that PHP is the right tool for the >j

RE: [PHP-DEV] RE: [Zend Engine 2] ZE2 Test Windows Binaries

2002-04-16 Thread Andi Gutmans
At 20:27 15/04/2002 +0200, phpsurf wrote: >that'd be great ! >don't you have some website somewhere ? > >Andi ? any idea ? > I could put them up. Andi >-Original Message- >From: Sebastian Bergmann [mailto:[EMAIL PROTECTED]] >Sent: lundi 15 avril 2002 19:31 >To: [EMAIL PROTECTED] >Subje

[PHP-DEV] Re: FRC: psv (Persistent Server Variable) module

2002-04-16 Thread Yasuo Ohgaki
Lance Lovette wrote: > Check out the Pwee extension module. It sounds like it might provide some of > the described functionality. > > http://pwee.sourceforge.net/ > It sounds like a nice extension. I'll check it, if it satisfies my requirements. Thank you. -- Yasuo Ohgaki -- PHP Developme