[PHP-DEV] Re: CVS Account Request: thdhuynh

2002-05-22 Thread Yasuo Ohgaki
Diep Huynh wrote: Study PHP and develope a project using PHP You don't need CVS account to study and/or develop with PHP. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Patch for file.c

2002-05-22 Thread Yasuo Ohgaki
Dean Richard Benson wrote: Ok, here is my first try! :) (please let me know if its ok). It seems you are using 5 spaces for indent while we use tabs. I suggest you to read README.SUBMITTING_PATCH. -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe,

Re: [PHP-DEV] Errors when building HEAD

2002-05-22 Thread Markus Fischer
autoconf 2.53 isn't supposed to work. Try with 2.13 On Tue, May 21, 2002 at 10:24:30PM +0200, Martin Jansen wrote : When running ./buildconf in latest CVS, I get the following errors: buildconf: checking installation... buildconf: autoconf version 2.53 (ok)

Re: [PHP-DEV] Tip of the day: embedding php code in scripts

2002-05-22 Thread Jonathan Sharp
Also it could be usefull in creating a wrapped suid exec that would be completely self-contained... -js - Original Message - From: Stig S. Bakken [EMAIL PROTECTED] To: Preston L. Bannister [EMAIL PROTECTED] Cc: Stig S. Bakken [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, May 20,

Re: [PHP-DEV] Tip of the day: embedding php code in scripts

2002-05-22 Thread Roberto Berto
Maybe there is a easy way to embed PHP into Zope. On Wed, 22 May 2002 00:24:32 -0700 Jonathan Sharp [EMAIL PROTECTED] wrote: Also it could be usefull in creating a wrapped suid exec that would be completely self-contained... -js - Original Message - From: Stig S.

Re: [PHP-DEV] Errors when building HEAD

2002-05-22 Thread Martin Jansen
On Wed, 22 May 2002 09:21:47 +0200, Markus Fischer wrote: autoconf 2.53 isn't supposed to work. Try with 2.13 After downgrading to 2.13, I now get the error messages on can find in the attached buildconf_errors.txt. After running ./configure then results in: checking whether to include

Re: [PHP-DEV] Errors when building HEAD

2002-05-22 Thread Markus Fischer
No clue. You probably didn't cleanly remove the old 2.53 files used by autoconf? There's no problem with current HEAD: $ ./buildconf buildconf: checking installation... buildconf: autoconf version 2.13 (ok) buildconf: automake version 1.4 (ok) buildconf: libtool version 1.4 (ok)

[PHP-DEV] Smart Navigation

2002-05-22 Thread Fred Forsyth
Is there any way to emulate ASP.NET's smartNavigation trick? What it does it to maintain control state and scroll position between postbacks, as well as stopping the page from flickering when reloading. It makes a mostly static page look very cool. Anyone done this in PHP, or know how to use

[PHP-DEV] Patch for file.c

2002-05-22 Thread Dean Richard Benson
Apologies for my previous attempt at submitting the patch for file.c. Here is the new patch file. Basically it adds a fourth optional parameter to fgetcsv which means you can specify the enclosure character (currently assumes a double quote). This is only my first attempt at contributing code

[PHP-DEV] Full-duplex communication

2002-05-22 Thread Vinod Panicker
Hi, I had a peculiar requirement. I need the ability to send asynchronous data from my web server to the client (COM component). I know that the first thing ppl will say is not to be using a web server, and to use a TCP solution. Thing is that the system is in a production environment and

[PHP-DEV] Feature Request

2002-05-22 Thread Roberto Berto
Can you take a look on bug #12669 and #14712? Its about auto-globals user definied variables - ie: user can set some variables to be global in all scopes, allways global. Quick link: http://bugs.php.net/bug.php?id=12669 Atenciosamente,

Re: [PHP-DEV] Full-duplex communication

2002-05-22 Thread Dave Mertens
On Wed, May 22, 2002 at 10:16:23AM -, Vinod Panicker wrote: The client calls a script on the server - script_a.php using a keep-alive connection. The script gets the socket from the web server (this is the unknown), and stores it in a database. Script finishes execution, client

[PHP-DEV] classes example

2002-05-22 Thread fabwash
Hello, what is the best example to use to write classes? The documentation is clear about functions, but not really about classes or I missed something. I need to find out how to define an object and its methods, and make them visible to the scripts. Fab.

Re: [PHP-DEV] classes example

2002-05-22 Thread derick
Hello, this is the wrong list for user questions, you'd want the [EMAIL PROTECTED] mailinglist. Derick On Wed, 22 May 2002, fabwash wrote: Hello, what is the best example to use to write classes? The documentation is clear about functions, but not really about classes or I missed

[PHP-DEV] [PATCH] Sybase error handling

2002-05-22 Thread Dave Brotherstone
Attached is a patch for error handling with Sybase/MSSQL databases. Basically it picks up the message and the error number from the dberrhandler() call. This means that MSSQL/Sybase RAISERROR calls can be caught properly in the PHP script. Any chance of someone committing it in? Dave.

[PHP-DEV] Unofficial patches

2002-05-22 Thread Andrei Zmievski
I've started putting up some unofficial patches to PHP/Zend on my site. Feel free to use them and submit feedback. http://www.gravitonic.com/software/php -Andrei -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] classes example

2002-05-22 Thread fabwash
sorry wasn't clear enough. I'm writing an extension and I want it to be used as a class. Fab. - Original Message - From: [EMAIL PROTECTED] To: fabwash [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 9:42 AM Subject: Re: [PHP-DEV] classes example Hello, this is

Re: [PHP-DEV] classes example

2002-05-22 Thread brad lafountain
you can look at ext/domxml ext/COM ext/java ... this should do it zend_class_entry obj; INIT_CLASS_ENTRY(obj, class, internal_functions); zend_register_internal_class(obj); --- fabwash [EMAIL PROTECTED] wrote: sorry wasn't clear enough. I'm writing an extension and I want it to be used as

[PHP-DEV] Re: [PHP-CVS] cvs: php4 / makedist.ZendEngine2

2002-05-22 Thread Sebastian Bergmann
Andi Gutmans wrote: - Hopefully we can get a preview out in the next few days. Be sure to check if all recent changes to Zend/ were merged to ZendEngine2/. I doubt that the multi-byte stuff was merged, for starters... -- Sebastian Bergmann http://sebastian-bergmann.de/

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / makedist.ZendEngine2

2002-05-22 Thread Sebastian Bergmann
Andi Gutmans wrote: It wasn't and the author is still working on refinements. There's no reason not to release a preview without those changes. Ah, I see. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift:

Re: [PHP-DEV] Crasher in 4.2.1 - debugging advice needed

2002-05-22 Thread Zeev Suraski
Wild guess, but did you load an extension using dl() in the file that crashed? Zeev At 15:23 21/05/2002, Dave Brotherstone wrote: Hi, I've got a particular script that seg-faults when certain parts of it run (tested with 4.1.0 and 4.2.1, both CGI and Apache module). I've done a back trace,

[PHP-DEV] CVS Account Request: dali

2002-05-22 Thread Daniel BODEA
Generic bug fixing, feature completion, cosmetic and more bug fixing hopefully (as I continue to work on large and complex PHP based projects, and as it seems there's a lack of developers - and dedicated time - in this area) -- PHP Development Mailing List http://www.php.net/ To unsubscribe,

[PHP-DEV] CVS Account Request: djworld

2002-05-22 Thread Víctor Fernández Martínez
I'm a spanish webmaster and I would like to contribute by translating some parts of the PHP manual into spanish. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Tokenizer weirdness

2002-05-22 Thread Sebastian Bergmann
Why do I get Array ( [0] = Array ( [0] = T_OPEN_TAG [1] = Array ( [0] = T_STRING [1] = phpinfo ) [2] = ( [3] = ) [4] = ; [5] = Array

[PHP-DEV] Licensing and contributing. (New extension for Isis databases.)

2002-05-22 Thread Braulio José Solano Rojas
Hello! I have sent yesterday an e-mail to the list offering a new extension and I have not received any feedback. Is it to soon to ask again if the php group is interested? If it is or it isn't may I have some opinions please? I'll be very thankful. Also, I want to ask, what is the licensing

Re: [PHP-DEV] Warnings in glob.c

2002-05-22 Thread Edin Kadribasic
glob.c(508) : warning C4090: 'function' : different 'const' qualifiers glob.c(508) : warning C4028: formal parameter 1 different from declaration glob.c(508) : warning C4090: 'function' : different 'const' qualifiers glob.c(508) : warning C4028: formal parameter 2 different from declaration

[PHP-DEV] [PATCH] Allow preg_split to capture offsets

2002-05-22 Thread David Brown
Hi: Enclosed is a patch to allow PCRE's preg_split to return an array of (match, offset) pairs, if PREG_SPLIT_OFFSET_CAPTURE is or'd into the flags parameter. Submitted for inclusion, rejection, extensive flaming, or suggestions. :) This is a re-send of a previous patch; the last one didn't

[PHP-DEV] Re: Tokenizer weirdness

2002-05-22 Thread Andrei Zmievski
Why do I get Array ( [0] = Array ( [0] = T_OPEN_TAG [1] = Array ( [0] = T_STRING [1] = phpinfo ) [2] = ( [3] = ) [4] = ; [5]

[PHP-DEV] [PATCH] Allow preg_split to capture offsets

2002-05-22 Thread David Brown
Hi: Enclosed is a patch to allow PCRE's preg_split to return an array of (match, offset) pairs, if PREG_SPLIT_OFFSET_CAPTURE is or'd into the flags parameter. Submitted for inclusion, rejection, extensive flaming, or suggestions. :) A bit of background: I'm currently working on a

[PHP-DEV] Re: Licensing and contributing. (New extension for Isis databases.)

2002-05-22 Thread Yasuo Ohgaki
How about apply a CVS account? If karma granters liked your extension, your application will be accepted. I don't read your source, but it sounds your extension is sutable for PECL. -- Yasuo Ohgaki Braulio josé solano rojas wrote: Hello! I have sent yesterday an e-mail to the list offering