Re: [PHP-DEV] Enabling ext/zlib by default

2002-05-21 Thread Stig S. Bakken
On Tue, 2002-05-21 at 08:57, Sebastian Bergmann wrote: > Shane Caraveo wrote: > > Hmm, I couldn't make the pear command work on windows until I loaded > > the zlib extension. > > Same here on *NIX when I tried a 'pear package'. Try "pear package -Z". I'll make the -Z option default when zlib

Re: [PHP-DEV] Enabling ext/zlib by default

2002-05-21 Thread Stig S. Bakken
On Tue, 2002-05-21 at 08:54, Martin Jansen wrote: > On 21 May 2002 08:46:54 +0200, Stig S. Bakken wrote: > > >On Tue, 2002-05-21 at 08:13, Sebastian Bergmann wrote: > >> I think we should make '--with-zlib' the default, and add > >> '--disable-zlib', for the PHP 4.3.0 release, since the PEAR

Re: [PHP-DEV] Enabling ext/zlib by default

2002-05-21 Thread Martin Jansen
On 21 May 2002 09:29:05 +0200, Stig S. Bakken wrote: >Does the bzip2 extension work in Windows? Yup, it seems so. - Martin -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: segfault in version_compare

2002-05-21 Thread Stig S. Bakken
On Tue, 2002-05-21 at 07:45, Rasmus Lerdorf wrote: > Stig, I was going to fix this, but then I saw your code... > > So here you go. "pear install XML_RSS" ends up causing this call: > > version_compare('', '1.0', 'ge'); > > This tosses php_version_compare() into an infinite recursive loop >

Re: [PHP-DEV] Enabling ext/zlib by default

2002-05-21 Thread Edin Kadribasic
> Oh, I don't mind enabling zlib by default, maybe I got too caught up in > explaining why this wouldn't solve the problem completely. ;-) +1 on > enabling zlib by default, but the "disable" option should be > --without-zlib. I don't think that we have enabled by default anything that is not bun

[PHP-DEV] Re: [PEAR-DEV] ITX.php require_once error

2002-05-21 Thread Dan Allen
> The require_once is wrong in both IT.php and ITX.php Yes, I had mentioned the other in an eariler e-mail. Okay, I am way confused. I thought that PEAR was using a flat directory structure, but everyone keeps saying how all the '_' should be '/' when you install it. What is it, flat or deep?..

Re: [PHP-DEV] Re: [PEAR-DEV] ITX.php require_once error

2002-05-21 Thread Stig S. Bakken
On Tue, 2002-05-21 at 09:25, Dan Allen wrote: > > The require_once is wrong in both IT.php and ITX.php > Yes, I had mentioned the other in an eariler e-mail. Okay, I am way > confused. I thought that PEAR was using a flat directory structure, > but everyone keeps saying how all the '_' should be

Re: [PHP-DEV] Re: [PEAR-DEV] ITX.php require_once error

2002-05-21 Thread Dan Allen
Sorry, I just want to confirm because obviously in the early stages here many of us have just been running our /pear directories like the CVS, so I just wanted to get things straight and then fix it all up. Thanks! Dan Stig S. Bakken ([EMAIL PROTECTED]) wrote: > On Tue, 2002-05-21 at 09:25, Da

[PHP-DEV] Re: [PEAR-DEV] patch for IT.php

2002-05-21 Thread Dan Allen
Honestly, I have to keep fighting this because I think that the points you guys are making are proving the opposite point. If I am a web-designer and I want to change the look of the page, I am presented with a template which is using a certain seperator. Now, as the designer I want to change th

Re: [PHP-DEV] mime_magic broken in CVS?

2002-05-21 Thread Hartmut Holzgraefe
Magnus M wrote: > Is mime_magic broken, or am I doing something wrong ? > fixed in CVS i hope (ZTS issues... :( ) -- Hartmut Holzgraefe [EMAIL PROTECTED] http://www.six.de/ +49-711-99091-77 Wir stellen für Sie aus, auf der INTERNET WORLD in Berlin. Besuchen Sie uns vom 4. bis 6. Juni 200

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

2002-05-21 Thread Dave Brotherstone
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, included below. Linux 2.4.18 (Redhat 7.0). I'm not sure what to do next, as if it is something not free'ing properly, or free'ing tw

Re: [PHP-DEV] Enabling ext/zlib by default

2002-05-21 Thread Dan Kalowsky
On Tue, 21 May 2002, Sebastian Bergmann wrote: > I think we should make '--with-zlib' the default, and add > '--disable-zlib', for the PHP 4.3.0 release, since the PEAR Installer > relies on it. -1 on this. We have a configure script for a reason, why do we want to take away it's usefulne

Re: [PHP-DEV] PHP linux binary and Super global variables

2002-05-21 Thread [EMAIL PROTECTED]
After a few hours of head bashing it was the simplest thing of all - the cgi was installed in /usr/local/bin/php and I was calling /usr/bin/php. This was the version that came with the linux installation Ori > On Tue, 2002-05-21 at 05:16, Ori Staub wrote: >> After compiling PHP 4.2.1 as a C

[PHP-DEV] Patch for file.c

2002-05-21 Thread Dean Richard Benson
Hi all I have been working on a system recently that has been using the fgetcsv function. It works a treat except that the code "assumes" that the enclosure character will always be a double quote. This caused me a little bit of a problem as many of the csv files that I work with use the single

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

2002-05-21 Thread Stig S. Bakken
On Tue, 2002-05-21 at 17:28, Dean Richard Benson wrote: > Hi all > > I have been working on a system recently that has been using the fgetcsv > function. > > It works a treat except that the code "assumes" that the enclosure > character will always be a double quote. This caused me a little bit

[PHP-DEV] dbase extension - Contributing Code

2002-05-21 Thread Geoff
I've enhanced Jim Winstead's dbase extension about a year ago by adding [some] memo support. Over time have kept it up to date with the latest PHP distribution. I've recently migrated this code into the PHP 4.2.1 release. What I'd like is to have my code placed in the default PHP distribution, so

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

2002-05-21 Thread Dean Richard Benson
On Tue, May 21, 2002 at 05:32:10PM +0200, Stig S. Bakken wrote: > > I wasn't sure if I could just attach my file.c.patch file to this email > > or not? > > That's fine, but make sure the MIME type for the attachment is > text/plain or the mailing list software will remove it. Ok, here is my firs

[PHP-DEV] CVS Account Request: phpnovice

2002-05-21 Thread Michael Piskol
I'm a bit dumb but nevertheless motivated enough to find out what's the secret behind PHP-Programming. ;-)) -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-05-21 Thread derick
On 21 May 2002, Michael Piskol wrote: > I'm a bit dumb but nevertheless motivated enough to find out what's the secret >behind PHP-Programming. You don't need too be dumb for this, just use the anon cvs (see for more information: http://www.php.net/anoncvs.php) Derick ---

Re: [PHP-DEV] dbase extension - Contributing Code

2002-05-21 Thread derick
On Mon, 20 May 2002, Geoff wrote: [...] > > So, how do I get my enhanced code into the regular PHP distribution? > Whatever needs to be done, please let me know. The best thing would be to make a patch (diff -u) against the main CVS branch. This allows us for easy reviewing of the code. Deric

Re: [PHP-DEV] dbase extension - Contributing Code

2002-05-21 Thread Vlad Krupin
this would be nice to have - I've written some code for that a while back, but never got to finishing or committing it, so it's all abandoned now. I briefly looked at your code and have a couple of comments. First, writing to dbase is optional for most people (because it's not safe to write f

Re: [PHP-DEV] dbase extension - Contributing Code

2002-05-21 Thread Geoff Jukema
You'd be suprised how many people are actually using dbase as a common-file for transferring small chunks of data - this is why I needed to write the write code for our company. The dbase_open() and dbase_close() work in the 'buggy' version that reads memo data. I can add it to the current 'rele

[PHP-DEV] Gibberish returned from forms

2002-05-21 Thread Gwen Fremonti
Hi - I don't know whether I'm looking in the right place for information, but I figured it couldn't hurt. We have our website hosted at a place that uses PHP. We have several forms that users submit information to us with. Just lately the email that we receive is completely unreadable. Here's a sa

Re: [PHP-DEV] dbase extension - Contributing Code

2002-05-21 Thread Vlad Krupin
no, I just expressed my opinion, which was that: 1. read access should be committed to CVS before write access. 2. write access makes sense when it's more or less complete (e.g. if you add you should also be able to delete it properly; otherwise you add a record, then delete a record and the two

[PHP-DEV] New extension for Isis databases.

2002-05-21 Thread Braulio José Solano Rojas
Hello. I wrote some days ago an e-mail asking how to use the trim function into an extension. Remember me? Well some people helped me. Now I would like to contribute... I am working as a consultant (also known as a programmer) for Asociados Galileo Beyle S.A. (http://www.galileobiz.com) in Co

[PHP-DEV] CVS account

2002-05-21 Thread Roberto Berto
I'm new here and I cant login in CVS account. I changed my password at master.php.net and the account looks not working. I'm doing something wrong? export CVS_RSH=ssh cvs -d:ext:[EMAIL PROTECTED]:/repository co php4 Roberto. msg38312/pgp0.pgp Description: PGP signature

Re: [PHP-DEV] CVS account

2002-05-21 Thread derick
On Tue, 21 May 2002, Roberto Berto wrote: > I'm new here and I cant login in CVS account. > > > I changed my password at master.php.net and the account looks not > working. > > I'm doing something wrong? > > export CVS_RSH=ssh > cvs -d:ext:[EMAIL PROTECTED]:/repository co php4 We don't use

[PHP-DEV] Errors when building HEAD

2002-05-21 Thread Martin Jansen
When running ./buildconf in latest CVS, I get the following errors: buildconf: checking installation... buildconf: autoconf version 2.53 (ok) buildconf: automake version 1.4 (ok) buildconf: libtool version 1.4.2 (ok) rebuilding configure configure.i

[PHP-DEV] CVS Account Request: thdhuynh

2002-05-21 Thread Diep Huynh
Study PHP and develope a project using PHP -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: dbase extension - Contributing Code

2002-05-21 Thread Tomas V.V.Cox
Perhaps you might want to take a look at the xbase lib (http://linux.techass.com/projects/xdb/). They seem to support a wide range of dbase formats. Tomas V.V.Cox Geoff wrote: > > I've enhanced Jim Winstead's dbase extension about a year ago by adding > [some] memo support. Over time have kept

[PHP-DEV] CVS Account Request: rivalhw

2002-05-21 Thread WeiHe
no purpose! -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-05-21 Thread derick
On 22 May 2002, WeiHe wrote: > no purpose! Then don't request one :) Derick --- Did I help you? http://www.jdimedia.nl/derick/link.php?url=giftlist Frequent ranting: http://www.jdimedia.nl/derick/ -

[PHP-DEV] Warnings in ext/mbstring

2002-05-21 Thread Sebastian Bergmann
\home\php\php4\ext\mbstring\mbstring.c(1541) : warning C4133: 'function' : incompatible types - from 'int *' to 'mbfl_no_encoding *' \home\php\php4\ext\mbstring\mbstring.c(2263) : warning C4133: 'function' : incompatible types - from 'int *' to 'mbfl_no_encoding *' \home\php\php4\ext\mbstring\mbst

[PHP-DEV] Warnings in glob.c

2002-05-21 Thread Sebastian Bergmann
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] Warning in filestat.c

2002-05-21 Thread Sebastian Bergmann
\home\php\php4\ext\standard\filestat.c(556) : warning C4090: 'function' : different 'const' qualifiers -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ -- PHP Development

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

2002-05-21 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 To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-05-21 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 To unsubscribe, vi