Re: [PHP-DEV] Re: cvs: php4 /ext/mbstring mbstring.c

2002-06-21 Thread Brian France
directory, otherwise configuring other modules that depend upon it will fail. Not a problem, all headers are install by our packaging system even if the extension is not compiled into our core PHP package. Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

Re: [PHP-DEV] Re: cvs: php4 /ext/mbstring mbstring.c

2002-06-21 Thread Brian France
mbstring and it doesn't call php_treat_data which was what mbstring was overwriting. Cheers, Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: cvs: php4 /ext/mbstring mbstring.c

2002-06-21 Thread Brian France
At 9:56 PM +0200 6/21/02, Marcus Börger wrote: At 20:29 21.06.2002, Brian France wrote: At 7:23 PM +0200 6/21/02, Marcus Börger wrote: What i wanted to stree out is that exif uses functions from mbstring if present. That means if mbstring is not present it does not use these and the user has

[PHP-DEV] session can't be built shared with PHP

2002-06-24 Thread Brian France
? Comments? Thanks, Brian BTW, ./configure --with-layout=GNU --enable-session=shared --with-mm=no and ./configure --with-layout=GNU --enable-session=shared --without-mm will not build it shared either, but I am not worried about that. Patch --- php-4.2.1/configure Mon Jun 24 14

Re: [PHP-DEV] patch for ext/session

2002-06-26 Thread Brian France
Great! Once the patch is checked in feel free to close the bug report or let me know and I will close it. Thanks! Brian At 9:59 PM +0300 6/26/02, Jani Taskinen wrote: On Wed, 26 Jun 2002, Brian France wrote: Does this fix the problem with configure? http://bugs.php.net/bug.php?id=17977

[PHP-DEV] Key values starting with .

2002-06-27 Thread Brian France
then if I do print_r($_REQUEST) prints it out as .value and not _value. Any reason for being able to do one, but not the other? Also what is the (not binary safe) part of a variable with a . in its name? Thanks, Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

[PHP-DEV] IIS Bugs???

2002-07-10 Thread Brian McGarvie
OK This is a followon from my Browser thread... on [EMAIL PROTECTED]; [EMAIL PROTECTED] I have switched the application to run from Apache, and the Browsers that were having trouble now seem (I think - will be doing more testing later) to have dissapeared. So, is there a problem with IIS or

Re: [PHP-DEV] mbstring

2002-07-17 Thread Brian France
would rather see the module change a function pointer to its handler, add its function handler to a list of function handlers or have the default code handle multi-byte strings, as long as there is not a large size, speed or memory increase doing it. Just my 2 cents. :-) Brian -- PHP

[PHP-DEV] Re: Moving away from ASP to PHP

2002-07-31 Thread Brian McGarvie
to make 'modules' you could look into PHP Pear... Anthony Kauffmann [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi all, I've recently joined a new company and we're doing all of our web development (server-side) in ASP at the moment. We have to create a

[PHP-DEV] New config.m4 for ext/xmlrpc

2002-08-26 Thread Brian France
it. Is this the best way to handle it? Comments? Should I open a bug and submit this? For the new config.m4 to work, xmlrpc-epi-php.c needs this changed: #ifndef PHP_WIN32 #include php_config.h #endif to: #ifdef HAVE_CONFIG_H #include config.h #endif Also what does PHP_FAST_OUTPUT do? Thanks, Brian

Re: [PHP-DEV] mbstring

2002-09-01 Thread Brian France
it can only be compiled into PHP statically and building it as .so means hacking the PHP source and the mbstring module (which I have already done with a small patch). Just my 2 cents. Thanks, Brian BTW, sorry if this has been already done in the CVS tree and I didn't catch it. -- PHP

RE: [PHP-DEV] mbstring

2002-09-01 Thread Brian France
code in mbstring. Thanks, Brian -- diff -rc php-4.2.2/ext/mbstring/mbstring.c php-4.2.2/ext/mbstring/mbstring.c *** php-4.2.2/ext/mbstring/mbstring.c Wed Apr 24 02:46:23 2002 --- php-4.2.2/ext/mbstring/mbstring.c Mon Jun 10 14:10:58 2002 *** *** 93,98 --- 93,100

RE: [PHP-DEV] mbstring

2002-09-01 Thread Brian France
At 8:47 PM +0200 9/1/02, Marcus Börger wrote: At 20:38 01.09.2002, Brian France wrote: At 6:29 PM +0100 9/1/02, James Cox wrote: Where is your patch? The patch basically renames php_treat_data to php_treat_data_default, creates a function pointer called php_treat_data that is defaulted

Re: [PHP-DEV] mbstring

2002-09-01 Thread Brian France
should be loaded before this one in the php.ini ext_enabled = 0; } The second call with a underscore is to handle Openbsd and old version of FreeBSD, I think a.out things. I am sure this can be handled differently, but you get the point. Cheers, Brian At 9:19 AM +0900 9/2/02, Yasuo

Re: [PHP-DEV] mbstring

2002-09-01 Thread Brian France
) Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Default extensions (extensions in general)

2002-09-02 Thread Brian France
not all extension can do this. It would be nice to make the above a requirement to get into the ext directory and recommended for things in pear/pecl. That's just my opinion, I could be wrong. Brian BTW, Thanks to Jani Taskinen for putting up with me while fixing a few extensions. At 10

[PHP-DEV] sockets extension

2002-09-06 Thread Brian Lalor
Do the maintainers of the PHP sockets extension ever intend to get their act together and cement the API, or are people who need this functionality going to be forced to rewrite their code everytime there's a new point-release of PHP? -- Brian Lalor |http

[PHP-DEV] [TEST] Delete me!

2002-09-08 Thread Brian France
This is just a ping test to see if my co-location company got off of the spews.org black list. Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: sockets extension

2002-09-09 Thread Brian Lalor
applictations that use the extension. I am unable to keep up. B -- Brian Lalor |http://introducingthelalors.org/ [EMAIL PROTECTED] (email) | [EMAIL PROTECTED] (jabber) N33°27.369' W111°56.304' (Earth) -- PHP Development Mailing List http

[PHP-DEV] php.ini include directive

2002-09-11 Thread Brian France
Has anybody looked into doing a include directive for the php.ini file? Something like what Apache has? http://httpd.apache.org/docs/mod/core.html#include Thoughts? Cheers, Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] php.ini include directive

2002-09-11 Thread Brian France
= php-mysql.ini directory = include/ --- Brian At 1:59 PM -0400 9/11/02, [EMAIL PROTECTED] wrote: I see how this could be useful, possibly for custom session handlers or including something at the top of every file for free hosted customers or something (so that they can't get around the ads

[PHP-DEV] Re: sockets extension...pecl it

2002-09-11 Thread Brian Lalor
to be done to make this extension non-experimental for the next release of PHP? Can we at least finalize the API so that *I* can work on a migration path for my own work? What help do you need? -- Brian Lalor [EMAIL PROTECTED] [EMAIL PROTECTED] (v) 480-333-3196 (f) 480-760-9298 -- PHP Development

[PHP-DEV] [RFC] include_ini and include_ini_dir

2002-09-11 Thread Brian France
me how to do this so I can use the search paths and relative directories names. Yes, it is based off of the 4.2.3 release, but I am looking for more input on fixing current problems then getting into the next release. Cheers, Brian --- php-4.2.3.org/main/php_ini.cMon Mar 4 16:21

[PHP-DEV] Re: [RFC] include_ini and include_ini_dir

2002-09-11 Thread Brian France
and one that if engineers change our security team will beat them with a big stick. This also helps when installing/removing extensions because we could just add/remove a .ini file in the include directory instead of editing the php.ini Make sense? Brian -- PHP Development Mailing List http

[PHP-DEV] Re: [RFC] include_ini and include_ini_dir

2002-09-11 Thread Brian France
Sorry that should have been: - [PHP] include_ini_dir = include - Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] include_ini and include_ini_dir

2002-09-11 Thread Brian France
in README.SUBMITTING_PATCH), as most of php-dev have HEAD ready-to-hack; not all of us have the 4.2 branch handy, and our policy is not to add new features to it. Sorry, I will do a little work on this and get it ported to cvs HEAD. Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

[PHP-DEV] Re: sockets extension...pecl it

2002-09-12 Thread Brian Lalor
a look at those so I can start working on my abstraction library (bona-fide Socket class) and get a feel for how the extension's *supposed* to work (without having to resort to looking at the source). The best thing I can do is start using it and see what breaks. Thanks, B -- Brian Lalor [EMAIL

[PHP-DEV] Re: sockets extension...pecl it

2002-09-12 Thread Brian Lalor
Markus Fischer [EMAIL PROTECTED] writes: On Thu, Sep 12, 2002 at 10:41:47AM -0700, Brian Lalor wrote : Where are the current docs? [...] php.net/sockets By which you mean the source? I asked if there was documentation outside of the source files. -- Brian Lalor [EMAIL PROTECTED

[PHP-DEV] process in README.SELF-CONTAINED-EXTENSIONS broken?

2002-09-12 Thread Brian Lalor
, save for the last line; finally: ./configure configure dies with: configure: error: can not find sources in . or .. I've tried running buildconf and configure in the cvs working directory, but still no dice. Can anyone help? B -- Brian Lalor [EMAIL PROTECTED] [EMAIL

Re: [PHP-DEV] process in README.SELF-CONTAINED-EXTENSIONS broken?

2002-09-12 Thread Brian France
I have seen the configure error before. Don't know if this is what you are doing, but for me it was using phpize from 4.2.x and trying to build 4.3 extensions. Hope this helps, Brian At 11:27 AM -0700 9/12/02, Brian Lalor wrote: I just grabbed PHP from CVS and tried to go through

[PHP-DEV] documentation revisioning (was Re: sockets extension...pecl it)

2002-09-12 Thread Brian Lalor
iota if the documentation on php.net reflects cvs. [1] http://www.php.net/manual/en/function.socket-connect.php [2] http://cvs.php.net/co.php/php4/ext/sockets/sockets.c?r=1.121 -- Brian Lalor [EMAIL PROTECTED] [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe

[PHP-DEV] Re: sockets extension...pecl it

2002-09-12 Thread Brian Lalor
Jon Parise [EMAIL PROTECTED] writes: On Thu, Sep 12, 2002 at 10:54:14AM -0700, Brian Lalor wrote: On Thu, Sep 12, 2002 at 10:41:47AM -0700, Brian Lalor wrote : Where are the current docs? [...] php.net/sockets By which you mean the source? I asked

[PHP-DEV] Re: documentation revisioning (was Re: sockets extension...pecl it)

2002-09-12 Thread Brian Lalor
, it sure would be nice to have documentation on hand for the version I'm using without having to refer to caveats about which version the array commands were changed in (another real-world example). -- Brian Lalor [EMAIL PROTECTED] [EMAIL PROTECTED] -- PHP Development Mailing List http

[PHP-DEV] Re: process in README.SELF-CONTAINED-EXTENSIONS broken?

2002-09-12 Thread Brian Lalor
that this procedure can be used for packaging up a module for release independent of the PHP source code. Am I mis-reading it? -- Brian Lalor [EMAIL PROTECTED] [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Return array in parameter from extension

2002-09-24 Thread Brian France
); zend_hash_next_index_insert( HASH_OF(return_value), val_str, sizeof(zval *), NULL ); } In your php file do this: list($ret,$str) = your_ext_func(); Just a simple example, edit as needed. Brian At 6:21 PM +0200 9/24/02, Ole Stakemann wrote: How do I do that in an extension? I want to adhere

[PHP-DEV] CVS Account Request: bfrance

2002-09-27 Thread Brian France
Working with Rasmus on PHP bug fixes -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Sybase_ct and tli lib

2002-11-12 Thread Brian Foddy
of the tli library. Anyway I thought I would post this info in hopes it might lead to a better solution in the future. Thanks, Brian PS: my configure line is: ./configure --with-apxs=/apps/soc/apache/bin/apxs \ --prefix=/apps/soc/apache/php4 --with-sybase-ct=/apps/soc/sybase/OCS-12_0 \ --enable-track

Re: [PHP-DEV] Sybase_ct and tli lib

2002-11-13 Thread Brian Foddy
/libgen.so.1 libmp.so.2 =/usr/lib/libmp.so.2 /usr/platform/SUNW,Ultra-2/lib/libc_psr.so.1 All the Sybase libs are coming from the same version/directory. I'm doing a system search for other possible locations of these libs, but I don't think there are any. Brian Timm Friebe wrote

Re: [PHP-DEV] Sybase_ct and tli lib

2002-11-14 Thread Brian Foddy
Timm Friebe wrote: On Wed, 2002-11-13 at 18:03, Brian Foddy wrote: Timm, I've seen it used for 10 years on Solaris, and I spent about a year working on Irix and Informix, and there were some references to it there also. strings libtli.so | grep ^Sybase Sybase TCP/IP TLI Library/12.0/P

Re: [PHP-DEV] Sybase_ct and tli lib

2002-11-15 Thread Brian Foddy
. Hope this helps. Brian Brian Foddy wrote: Timm Friebe wrote: On Wed, 2002-11-13 at 18:03, Brian Foddy wrote: Timm, I've seen it used for 10 years on Solaris, and I spent about a year working on Irix and Informix, and there were some references to it there also. strings libtli.so | grep

[PHP-DEV] GD segfault in 4.3.0RC1

2002-11-17 Thread Brian Havard
When trying out the RC1 code I found that my GD test segfaults every time. I traced the problem to the fact that efree is used on memory that was allocated with strdup. See the fontlist variable in ext\gd\libgd\gdft.c:fontFetch() This started happening when gdhelpers.c was changed to use

Re: [PHP-DEV] GD segfault in 4.3.0RC1

2002-11-18 Thread Brian Havard
Derick Rethans wrote: On Sun, 17 Nov 2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Brian Havard wrote: When trying out the RC1 code I found that my GD test segfaults every time. I traced the problem to the fact that efree is used on memory that was allocated with strdup. See

Re: [PHP-DEV] GD segfault in 4.3.0RC1

2002-11-18 Thread Brian Havard
On Mon, 18 Nov 2002 13:31:58 +0100, Marcus Börger wrote: At 13:07 18.11.2002, Derick Rethans wrote: On Mon, 18 Nov 2002, Brian Havard wrote: Derick Rethans wrote: On Sun, 17 Nov 2002, Derick Rethans wrote: On Sun, 17 Nov 2002, Brian Havard wrote: When trying out the RC1 code

[PHP-DEV] register_shutdown_function = register_offline_function

2002-12-05 Thread Brian Moon
mysql_fetch_assoc, got it commited and never looked back on that one. Thanks for the time. Brian Moon dealnews.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] register_shutdown_function = register_offline_function

2002-12-05 Thread Brian Moon
Ok, I reopened the bug. It fails with latest CVS. [root@dealnews php4-200212051430]# ./sapi/cgi/php-cgi csv.php Content-type: text/html X-Powered-By: PHP/4.4.0-dev Array ( [0] = 6 [1] = 7 [2] = 8 [3] = line1 ) Segmentation fault Brian Moon dealnews.com - Original Message

[PHP-DEV] fgetcsv problems was: register_shutdown_function = register_offline_function

2002-12-05 Thread Brian Moon
Well, this goes back to my original problem with fgetcsv then. I can not find another application that will accept a CSV file that will allow mutliline quoted fields. They stop at the newline regardless. Brian Moon dealnews.com - Original Message - From: Ilia A. [EMAIL PROTECTED

[PHP-DEV] Single quotes VS. Double quotes

2002-12-13 Thread Brian Moon
; we basically identical. Andi, Zeev, if you want waste some energy on exanding on why this is and if anything in ZE2 will change it I would find it a good read. Brian Moon dealnews.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Single quotes VS. Double quotes

2002-12-13 Thread Brian Moon
Man, I wish that answered my question, but it does not address string concatenation vs. variables in double quoted strings anywhere on there. Thanks for trying. Brian Moon dealnews.com - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: Brian Moon [EMAIL PROTECTED]; [EMAIL

Re: [PHP-DEV] Single quotes VS. Double quotes

2002-12-13 Thread Brian Moon
I am using 4.2.2-dev. Must be a stable build from snaps.php.net. I will read the archives. Brian Moon dealnews.com - Original Message - From: George Schlossnagle [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: Brian Moon [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday

[PHP-DEV] zlib + register_shutdown_function

2002-12-23 Thread Brian Moon
I just put a comment on the register_shutdown_function bug, but I am not sure if comments go to the list or not. Here was the comment: -- The following script will cause IE to stop loading the page when zlib.output_compression is used.

Re: [PHP-DEV] [PATCH]apache_register_shutdown_function final version

2002-12-30 Thread Brian Moon
So, is this going to get added? I have seen very little response to Joseph from the list. I would very much like to see this as register_shutdown_function is/was crucial to us in it previous form. Brian Moon dealnews.com - Original Message - From: Joseph Tate [EMAIL PROTECTED] To: Php

[PHP-DEV] Re: [PHP-WIN] PHP 4.3.0 no gif support?

2003-01-05 Thread Brian Weil
So... WIll gif support ever be available on win32? Can a patched gd.dll be found somewhere with readonly gif support or will we have to re-install php when the binary is updated? I've been (patiently) waiting for this since GD1.6. Thanks, Brian Rasmus Lerdorf [EMAIL PROTECTED] wrote in message

RE: [PHP-DEV] Re: [PHP-WIN] PHP 4.3.0 no gif support?

2003-01-06 Thread Brian Weil
Thanks a million, Can you tell me which gif functions are available in this build? Thanks Again, Brian -Original Message- From: Edin Kadribasic [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 05, 2003 5:59 PM To: Brian Weil; Rasmus Lerdorf Cc: PHP developer list Subject: Re: [PHP-DEV

Re: [PHP-DEV] Designing for PHP4 with PHP5 in mind...

2003-01-06 Thread Brian Moon
From what I understand, all OO code will have to be modified for PHP5. Constructors for example and no longer named the same as the class name. That alone means every class must be changed. I don't recall anyone saying it would be BC either, but I could be wrong. Brian Moon

Re: [PHP-DEV] Designing for PHP4 with PHP5 in mind...

2003-01-06 Thread Brian Moon
| I don't recall anyone saying | it would be BC either, but I could be wrong. | | You're wrong. | | Of course, I could be too. | | but you're not. so its ok... | So current PHP4 classes will still work in ZE2? Brian. -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] when PHP code causes crash due to bad input, is it a bug?

2003-01-10 Thread Brian Moon
| I have worked as Sr. SQA engineer for many years and have always worked | under the understanding that crashes are unacceptible - no matter what | caused them: code should be able to handle bad data and not crash. Agreed, IMO, if it in fact crashes, it is not bogus. Brian Moon dealnews.com

[PHP-DEV] sapi/embed ?

2003-01-17 Thread Brian Moon
I just noticed sapi/embed. Where can I find out more about what this is? I am hoping it is a sapi that will create a generic library that can be used from any C application. Is this true? Brian Moon dealnews.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

[PHP-DEV] CVS Account Request: hitweb

2003-01-21 Thread Brian FRAVAL
Because I want a mail @php.net. And I want help you for translating the documentation. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Distributing Extensions

2003-01-22 Thread Brian Moon
the code, run buildconf, etc., but I wondered if there was a preferred way of handling C extensions. Is PECL ready for this stuff? Thanks, Brian Moon dealnews.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Register Shutdown Function for Apache

2003-01-23 Thread Brian Moon
+1 for me too. It seems a lot of people (like us at dealnews) built large time consuming applications around the concept of register_shutdown_function working like this. I would love to have this back. Brian Moon dealnews.com - Original Message - From: Joseph Tate [EMAIL PROTECTED

Re: [PHP-DEV] roadmap of PHP - where? PHP 5 - when?

2003-01-23 Thread Brian Moon
| Imagine a company office where the programmers get paid per hour while | spending tons of time at the round table of a meeting room throwing into | each other what they like better and why. In open source this happens a | lot. hey, who let you in to the dealnews dev room? Brian. dealnews.com

Re: [PHP-DEV] Re: Register Shutdown Function for Apache

2003-01-28 Thread Brian Moon
It also does not send the headers if there is not content. ?php header(Location: http://spidey.dealnews.com/;); exit(); ? Document Contains No Data. Brian. dealnews.com - Original Message - From: Brian Moon [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Joseph Tate [EMAIL PROTECTED

Re: [PHP-DEV] Re: Register Shutdown Function for Apache

2003-01-28 Thread Brian Moon
Give me a patch and I will tell you. ;) Brian Moon dealnews.com - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Joseph Tate [EMAIL PROTECTED] Cc: Brian Moon [EMAIL PROTECTED]; Php-Dev List [EMAIL PROTECTED]; PHP Group [EMAIL PROTECTED] Sent: Tuesday, January 28, 2003 4:03

Re: [PHP-DEV] Register Shutdown Function for Apache

2003-02-03 Thread Brian Moon
Hmm, there is #define MOD_PHP4_H in sapi/apache/mod_php4.h. Not real descriptive, but seems to be unique to the Apache sapi. Brian Moon dealnews.com - Original Message - From: Joseph Tate [EMAIL PROTECTED] To: Brian Moon [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL

Re: [PHP-DEV] [PATCH] new idate() - sunrise() - sunset() functions

2003-02-06 Thread Brian Foddy
pretty fast. Our apps perform this sequence tens of thousands times per day at least. I always felt if I had the time I'd try and re-write it to do something along the same you describe, but never got there. Brian David Gillies wrote: In a similar itch-scratching moment I whipped up a trivial PHP

Re: [PHP-DEV] Register Shutdown Function for Apache

2003-02-11 Thread Brian Moon
Well, it is not just apxs is it? The same would be true if --with-apache was used. Brian Moon dealnews.com - Original Message - From: Joseph Tate [EMAIL PROTECTED] To: Jani Taskinen [EMAIL PROTECTED] Cc: Php-Dev List [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 9:04 AM Subject

Re: [PHP-DEV] Announcement: New MySQL-Extension for PHP 5: ext/mysqli

2003-02-11 Thread Brian Moon
Do you have some sample code or a function list? Brian Moon dealnews.com - Original Message - From: Georg Richter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 6:08 PM Subject: [PHP-DEV] Announcement: New MySQL-Extension for PHP 5: ext/mysqli | Hi

Re: [PHP-DEV] Register Shutdown Function for Apache

2003-02-11 Thread Brian Moon
Jani, are you volunteering to add it? If so, please do so at your earliest convience. Brian Moon dealnews.com - Original Message - From: Jani Taskinen [EMAIL PROTECTED] To: Joseph Tate [EMAIL PROTECTED] Cc: Php-Dev List [EMAIL PROTECTED] Sent: Monday, February 10, 2003 6:16 PM Subject

Re: [PHP-DEV] Announcement: New MySQL-Extension for PHP 5: ext/mysqli

2003-02-12 Thread Brian Moon
my bad, forgive me. Brian Moon dealnews.com - Original Message - From: Sebastian Bergmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 11:47 PM Subject: Re: [PHP-DEV] Announcement: New MySQL-Extension for PHP 5: ext/mysqli | Brian Moon wrote: | Do you have

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Brian Moon
| -1. | | The list could be renamed so that it is less confusing for | newbie PHP developers. | | - Sascha I agree. Brian. dealnews.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Moderate PHP-DEV

2003-03-12 Thread Brian Foddy
watch this list and on some occasions post a new note or followup to one of the main members comments. But without any CVS access. Having us ask for special permission or send posts through a special moderator seems a little heavy handed to me. Brian -- PHP Development Mailing List http

[PHP-DEV] Re: PHP 4.0 Bug #10143 Updated: need a tweak to ldap_add to set a binary flag

2001-04-03 Thread Brian S. Craigie
data as-is. Silly me! I never thought to try it without encoding it first. Working example: $info["postalAddress"] = "address line\r\naddress line 2\r\n"; ldap_add($ds,"cn=something", $info); Thanks and sorry for being so stupid. Time for a coffee or ten

[PHP-DEV] Known limitations on error_log?

2002-08-15 Thread M. Brian Dunson
issue? Any help would be greatly appreciated. I rely on these log files for accurate reporting of what is being processed by whom and when! Thanks, M. Brian Dunson -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Global HashTables access violations

2002-10-21 Thread Brian 'Bex' Huff
of memory leaks that dont make any sense... the leaks are worse in php 4.2.3 than in 4.2.2. I have no clue why that would be. Any hints on the right way to use a HashTable or Zend object in C for a global PHP mini-cache would be greatly appreciated... -- Brian 'Bex' Huff [EMAIL PROTECTED

[PHP-DEV] libtool aclocal.m4 problems (4.3)

2002-11-11 Thread Brian J. France
enough about aclocal.m4 to know if just removing the []'s around AC_DEFUN([AC_PROG_LIBTOOL], (Line 1831) will break other things. Or is there another way to fix it? libtool-1.4.2 FreeBSD 4.x Thanks, Brian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

[PHP-DEV] Feature Request: Auto Include a Function

2003-01-13 Thread Brian T. Allen
. One possibility for implementation is just prior to the undeclared function error message, try to auto include the function prior to generating the error message. Thanks, Brian Allen [EMAIL PROTECTED] -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

RE: [PHP-DEV] Feature Request: Auto Include a Function

2003-01-13 Thread Brian T. Allen
. If this was a compilable language then sure it would of been nice, like C does searching through .h files, but since its not I don't think its a good idea. Andrew Thanks for the reply! Brian - Original Message - From: Brian T. Allen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January

[PHP-DEV] Unsupported Operand Types

2003-01-18 Thread Brian T. Allen
: Array - How can $date be an array, when it gets assigned right above where it gets called? What am I missing in this new version of PHP that is making my scripts seemingly incompatible? Thanks, Brian Allen -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

<    1   2   3