Re: [PHP-DEV] Is this a bug?

2003-03-25 Thread Chris Shiflett
PROTECTED] Good luck. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-15 Thread Chris Field
s it into 'int' storage. Now that's not to say > that the destination IS actually an 'int' but merely that I am keeping > the int at its original width rather than casting it up. It's not a > 'perfect solution', but it's not a 'perfect problem', either. -- Chris Field <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] 64bit PHP on solaris

2003-03-13 Thread Chris Field
I am working off a checkout from about three days ago... On Thu, 2003-03-13 at 11:21, Wez Furlong wrote: > Make sure that you are using the latest stable snapshot from > http://snaps.php.net; a number of 64bit issues have already been addressed. > > --Wez. > > On Thu, 13 Mar

[PHP-DEV] 64bit PHP on solaris

2003-03-13 Thread Chris Field
into len1 and len2, as it seems they should be. Any ideas about why this is, I am kind of at a loss, in the mean time I simply set the lengths of the two strings in php_spn_common_handler after the parse_parameters function returns which fixes it. -- Chris Field [EMAIL PROTECTED] Affinity Solution

Re: [PHP-DEV] Weak references

2003-03-08 Thread Chris Vandomelen
Ack. Helps if I 'chmod a+r ~/public_html/php-ext-weakref.tgz'. Chris On Sat, 8 Mar 2003, Chris Vandomelen wrote: > I've written a simple extension for supporting weak (non-refcounted) > references in PHP, so that object graphs which reference themselves will > function p

[PHP-DEV] Weak references

2003-03-08 Thread Chris Vandomelen
idn't happen to spot during my quick browsing of the source.) It's one of those little things that happens to seem like a good idea (being able to reference parent objects from a child object is a quite handy feature at times, especially when working with stuff that looks like DOM trees a

[PHP-DEV] CVS Account Request: linux521

2003-02-28 Thread chris lee
Learning PHP Program! -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP Bug #17868: Multiple Includes

2003-01-20 Thread Chris Shiflett
misinterpreted the bug (unless I am instead), but Rasmus already responded that the problem lies with Apache 2's filters and that the Apache guys are well aware of the problems with that API. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Connecting to Outlook Data from PHP/MySQL?

2002-12-18 Thread Chris Streeter
Does anyone know of a way to retrieve MS Outlook data via PHP? I am creating an intrant for my company and want to grab data from the MS Oulook contact list on the server to using in my PHP/MySQL intranet project. Any help would be most appreciated. Thank you! Chris Streeter Bethlehem, PA USA

[PHP-DEV] Digest Authentication Extension

2002-12-15 Thread Chris Shiflett
can choose between the two. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Cookie Session Problem

2002-12-06 Thread Chris Shiflett
t; (the way it should be). I don't want the session id > (periodically) showing up in the url this causes me > problems on certain things. It is session.use_trans_sid. Locate it in your php.ini and turn it off like this: session.use_trans_sid = 0 Chris -- PHP Development Mailing Lis

Re: [PHP-DEV] Capturing headers with output buffering?

2002-11-24 Thread Chris Shiflett
You can probably learn a lot by example. There is a pretty complete HTTP server written in PHP available here: http://nanoweb.si.kz/ Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] error reporting for PHP5

2002-11-21 Thread Chris Shiflett
I quite like Maxim's ideas myself. +1 --- Maxim Maletsky <[EMAIL PROTECTED]> wrote: > I will start laying out some my thoughts to hopefully get a > discussion towards working on the complete error reporting logic. > I had an extensive experience implementing custom errors, so > approve or disapp

RE: [PHP-DEV] error handling

2002-11-20 Thread Chris Shiflett
ped Apache hooks stuff that is being worked on that should give even more control to developers who choose to use it. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-11-05 Thread Chris Shiflett
The extension's code would be copyrighted by the author, correct? So, why can't the author decide what terms his/her code is licensed under? Just curious - I've heard this before and have never understood. Chris Rasmus Lerdorf wrote: libsmbclient is gpl'ed, correct? We cannot

Re: [PHP-DEV] I hope this is the last email about this :)

2002-10-27 Thread Chris Shiflett
I vote we leave it on. Chris Zeev Suraski wrote: Thank you for the detailed explanation, I'm sure everybody understands it now. Let's go for the voting phase. I vote we keep PHP-CLI with implicit_flush on by default. You vote against. Can we get some other votes now (no

[PHP-DEV] PHP with FTP support on a Raq4 Server

2002-10-25 Thread Chris Morrow
)' yet when I run it through the browser on my site which is running the same version of PHP just the Apache module it works fine. Does anyone know what causes this strange behaviour or what I can do to get my ftp_connect() function working from the command line on a Raq4 server? Thanks fo

Re: [PHP-DEV] Re: $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-16 Thread Chris Shiflett
While I think it is a bit unintuitive to have $_FILES separate like it is (rather than a part of $_POST, for example), I think it would be much worse to also separate it from $_REQUEST. After all, as Sterling pointed out, it is part of the request. Chris Derick Rethans wrote: >On Wed,

Re: [PHP-DEV] Re: $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-15 Thread Chris Shiflett
Thanks, I see your point now. I like the solution 2, even though it is a bit ugly. Sterling Hughes wrote: >On Wed, 2002-10-16 at 05:35, Chris Shiflett wrote: > > >>Is the thought here that no one will be depending on the weird format of >>the $_REQUEST array as mentio

Re: [PHP-DEV] Re: $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-15 Thread Chris Shiflett
the $_REQUEST array as mentioned in the bug report? If we're worried about BC, I don't see why we should favor one group of people (those using $_FILES) over another (those using $_REQUEST), unless I'm missing something ... Chris Rasmus Lerdorf wrote: >Because there is more

Re: [PHP-DEV] Re: $_GET, $_POST, $_COOKIE, $_FILES == $_REQUEST?

2002-10-15 Thread Chris Shiflett
Out of curiosity, why are files treated differently than all other form variables submitted via POST? We don't have $_TEXT, $_RADIO, etc. Maybe there is a good reason, but it seems counter-intuitive to me. Chris Sterling Hughes wrote: >On Wed, 2002-10-16 at 04:45, Jani Taskin

Re: [PHP-DEV] short_open_tag

2002-10-15 Thread Chris Shiflett
d back rather than something we removed completely. 2. Something that had a significant purpose; it helps inexperienced developers avoid some common security mistakes. Again, -1 from me. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] variables

2002-09-19 Thread Chris Shiflett
You should direct these types of problems to [EMAIL PROTECTED] You will find many people eager to help. As for your problem try this: echo $_GET["action"]; Happy hacking. Chris Sean wrote: >I have inherited the support of a PHP website that doesn't seem to be >recogniz

Re: [PHP-DEV] Reading PDF

2002-08-26 Thread Chris Thompson
pdftotext is a wee app, preinstalled on a lot of linux systems. That might do what you are after. :) On Mon, 26 Aug 2002, David Eriksson wrote: > > Hi, > > > > Is it possible to read the contents of PDF files from PHP? > > PdfLib is only capable of writing PDF files, as far as I know. > > -\- Da

Re: [PHP-DEV] Seeking Comments - Regarding header()

2002-06-22 Thread Chris Shiflett
e you mentioned this to the Apache guys? Chris Mike Hall wrote: >>On Fri, Jun 21, 2002 at 10:48:33AM +0100, Mike Hall wrote : >> >> >>>You could hardly describe it as a bug if Apache crashes because you're >>>sending Headers that violate the spec, su

[PHP-DEV] Seeking Comments - Regarding header()

2002-06-20 Thread Chris Shiflett
he HTTP response. After all, that response is what developers are most interested in, so why not give them all the control over it that we can? Just an idea. I would, of course, volunteer my time to the development of this if it sounds like a good idea. Chris -- PHP Development Mailing Lis

Re: [PHP-DEV] problem with post data

2002-06-18 Thread Chris Shiflett
The reason for this is most likely that your PHP configuration is not setup to create global variables for data contained in a POST. You'll probably find more help on the [EMAIL PROTECTED] mailing list. This list is for the development of PHP only. Chris rang pheng wrote: >Hi.

Re: [PHP-DEV] PECL != Siberia

2002-06-11 Thread Chris Shiflett
so many platforms with so many other products (such as databases) is likely the major reason why it is quickly becoming *the* dominant Web scripting language. Your argument goes against everything the free software movement stands for. Chris -- PHP Development Mailing List <http://ww

Re: [PHP-DEV] errno-13 Persmission Denied

2002-06-05 Thread Chris Shiflett
A directory has to have execute privileges for you to be able to do anything within it. A mode of 666 does not have execute privileges for anyone, while 777 does. Chris --- Anil Garg <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to upload a file in to a > directory(which

Re: [PHP-DEV] PHP web farms (i.e. why msession or something likeit)

2002-05-29 Thread Chris Shiflett
de msession in some way. Chris Steve Meyers wrote: >Well, you didn't try it with MySQL, which is significantly faster than >Oracle and Postgres for most stuff. In any case, I agree that msession is >probably a better solution -- I just think that having built-in MySQL >sessi

Re: [PHP-DEV] PHP web farms (i.e. why msession or something likeit)

2002-05-25 Thread Chris Shiflett
Daniel Lorch wrote: >I'd like to make a suggestion here: What do you think of splitting up >the current PHP Manual into three major parts: > > 1. Developing in PHP ("for PHP users") > 2. Extending PHP > 3. PHP for System Administrators > >Part 3 would cover all topics interesting only to a sys

Re: [PHP-DEV] PHP web farms (i.e. why msession or something likeit)

2002-05-25 Thread Chris Shiflett
r own rogue administration. This system could also allow us to provide a database abstraction layer to PHP without users have to write their own or copy someone else's in the business logic itself. We could leave that type of code in the engine and probably make it much faster. Anyway, so

Re: [PHP-DEV] Safe Mode

2002-05-11 Thread Chris Shiflett
goes both ways - if too many people get bitten by PHP, > they'll switch to other solutions. > > Zeev I gladly volunteer to help with this effort. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Bug #17128 Updated: lstat (mis)behaves exactlylike stat

2002-05-09 Thread Chris Shiflett
obviously... > > Any comments? > > -- > Yasuo Ohgaki Sounds like the Unix philosophy to me. Do one thing and do it well. However, you will probably have to give more details about what you're planning to do before anyone will give much support. +1 for the general idea from me. Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV]

2002-04-26 Thread Chris Shiflett
> Perhaps if it were a computer making these assumptions, yes. But anyone > with half a brain can see that is much easer to > understand for someone with no programming experience, than: > . Agreed, Sterling. I can't understand why this is so difficult to realize. Theo, are you just trying to i

[PHP-DEV] close CVS account

2002-04-04 Thread Chris Newbill
Please close my CVS account cnewbill and unsubscribe me from php-bugs, I’ve already unsubscribed from php-dev.   -Chris

[PHP-DEV] Serving WebDAV with PHP

2002-03-21 Thread Chris Adams
are POSTed to a PHP script. Only #1 seems to be usable for much beyond proof-of-concept work and it's still a kludge, even if the gory parts are sensibly wrapped in an object. I think there has to be an easier way of doing this that I'm missing. Any suggestions? Chris -- PHP

RE: [PHP-DEV] RFC: Small changes in CODING_STANDARD

2002-03-18 Thread Chris Newbill
Except is should be side-effect, not side of effect. :) -Chris -Original Message- From: Yasuo Ohgaki [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 1:23 AM To: Zeev Suraski Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] RFC: Small changes in CODING_STANDARD Zeev Suraski wrote

Re: [PHP-DEV] Socket Rework Complete

2002-03-08 Thread Chris Vandomelen
ke. The changes are untested (I need to actually check out a complete version before making the changes...), but they should compile and work cleanly. (No guarantees.) Chris Index: php_sockets.h === RCS file: /root/src/cvsroot/php4/

Re: [PHP-DEV] cvs: ext/baby

2002-03-06 Thread Chris Shiflett
Woo hoo! Congratulations, Rasmus! Chris On Wed, 6 Mar 2002, Rasmus Lerdorf wrote: > @@ -1,2 +1,6 @@ > Christine Lerdorf > Rasmus Lerdorf > +Buster (working name only) Lerdorf > +Born 13:26 PDT Wednesday March 6, 2002 > +Weight: 9.0 pounds > +Length: 19.25 inch

RE: [PHP-DEV] New Module

2002-03-04 Thread Chris Newbill
PHP already has mcrypt support so doing this in userland wouldn't be much of a challenge at all. See pear.php.net. -Chris -Original Message- From: Keyser Soze [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 5:58 PM To: PHP-DEV Subject: [PHP-DEV] New Module Hi all, I

RE: [PHP-DEV] Parsing File Names

2002-02-28 Thread Chris Newbill
This is really the wrong list for this. PHP-DEV is about developing PHP, not developing WITH PHP. BUT since I like your username 'phpmonkey' here's how ya'd do it. (untested of course, but the general idea) :) -Chris -Original Message- From: Jason Dubya [mai

[PHP-DEV] Take a "close" look at this article

2002-02-28 Thread Chris Newbill
http://news.com.com/2100-1001-847092.html   Look at the author’s last name, sounds familiar doesn’t it? J   (Yes, this is about PHP)   -Chris

Re: [PHP-DEV] FW: Response.redirect!!!

2002-02-22 Thread Chris Shiflett
s a proprietary function. Chris On Fri, 22 Feb 2002, Rodent of Unusual Size wrote: > Sent to the Apache contact address. I told him I was forwarding > it, but that he might not get a reply if his message was considered > too rude.. :-) > > - Forwarded message from To

Re: [PHP-DEV] Override session id creation and cookie creation?

2002-02-18 Thread Chris Shiflett
o look more into the protocol. Chris On Mon, 18 Feb 2002 [EMAIL PROTECTED] wrote: > > > > Try running some tests on this where you have the page you're talking > > about and an additional page that dumps all environment variables you > > can think of. Or, if you have

Re: [PHP-DEV] Override session id creation and cookie creation?

2002-02-18 Thread Chris Shiflett
that you have two cookies named PHPSESSID, but one is lowercase and one is upper. Just a thought. Chris On Mon, 18 Feb 2002 [EMAIL PROTECTED] wrote: > In my module, msession, I have routines that guarentee that a session id > is unique within a cluster of web servers. > > The probl

RE: [PHP-DEV] Newbie help w/ dynamic variables

2002-02-14 Thread Chris Newbill
Why not make an alias for php-general called php-support/php-dev-support?  Maybe people would be more inclined to go there before php-dev.   And I already replied to this person.   -Chris   -Original Message- From: Honey House Designs [mailto:[EMAIL PROTECTED]] Sent

RE: [PHP-DEV] FWD: possible bug in date() function

2002-02-10 Thread Chris Newbill
Ehh...from manual n - month without leading zeros; i.e. "1" to "12" So yeah it would print 2th. Cause today is the 10"th". -Chris -Original Message- From: Yasuo Ohgaki [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 12:47 PM To: [EMAIL PRO

RE: [PHP-DEV] Advanced Search Changes

2002-02-07 Thread Chris Newbill
Looking at the source it seems this is already done to an extent, but I’d still like to make these changes if it’s okay.   -Chris   -Original Message- From: Chris Newbill [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 10:29 PM To: [EMAIL PROTECTED] Subject: [PHP

[PHP-DEV] Advanced Search Changes

2002-02-07 Thread Chris Newbill
selecting All.   My CVS account is cnewbill and I know I don’t have the karma.   If not then does someone else wish to make these changes?   -Chris

Re: [PHP-DEV] Bug #15415: [VOTE] case sensitive function/class namesfor PHP5

2002-02-06 Thread Chris Shiflett
Actually he (read: I) didn't read the whole email; I've developed this habit of ignoring all but the "content" section of emails sent to this list. Sorry :) On 6 Feb 2002, Lars Torben Wilson wrote: > On Wed, 2002-02-06 at 17:34, Chris Shiflett wrote: > > NO

Re: [PHP-DEV] Bug #15415: [VOTE] case sensitive function/class namesfor PHP5

2002-02-06 Thread Chris Shiflett
NO On 7 Feb 2002 [EMAIL PROTECTED] wrote: > From: [EMAIL PROTECTED] > Operating system: ANY > PHP version: 4.1.1 > PHP Bug Type: Feature/Change Request > Bug description: [VOTE] case sensitive function/class names for PHP5 > > Please vote "YES" if you *LIKE* case sensitive

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-04 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: Problem solved in CVS version Previous Com

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-04 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: Open Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: It seems im probally just gonna dump the s

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-04 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: i did remove the LIBS and it did get past the error of cross compile a

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-03 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: configure:2311: result: a.out configure:2316: checking whether the C

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-03 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: Open Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: Ok I ran buildconf and compile with the sa

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-03 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: Open Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: how do i build this there is no ./configur

[PHP-DEV] Bug #15339 Updated: can not run test program while cross compiling

2002-02-03 Thread chris
ID: 15339 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Compile Failure Operating System: RedHat 7.1 PHP Version: 4.1.1 New Comment: The version of gcc is gcc-2.96-85 Kernel version is [root@dcprac php-4

[PHP-DEV] Bug #14255 Updated: setcookie bug (Cookie is destroyed/Inaccessible)

2002-02-03 Thread chris
ID: 14255 Updated by: [EMAIL PROTECTED] -Reported By: [EMAIL PROTECTED] +Reported By: [EMAIL PROTECTED] Status: Analyzed Bug Type: Documentation problem Operating System: Debian 2.2.19 PHP Version: 4.0.6 Assigned To: hholzgra New Co

[PHP-DEV] Bug #14636 Updated: Session variables are lost when redirecting to a url using header() function.

2002-02-03 Thread chris
ID: 14636 Updated by: [EMAIL PROTECTED] -Reported By: [EMAIL PROTECTED] +Reported By: [EMAIL PROTECTED] Status: Assigned Bug Type: Session related Operating System: windows 2000 professional PHP Version: 4.0.6 Assigned To: yohgaki N

[PHP-DEV] CVS Account Request: shiflett

2002-02-03 Thread Chris Shiflett
Initially, I want a CVS account in order to be able to close bugs. Perhaps I can save other developers valuable time by eliminating bogus bugs or better explaining the problem for legitimate ones. I eventually want to contribute regularly to PHP itself, initially dealing with all things sess

[PHP-DEV] Bug #14227 Updated: header(); does not overwrite session cookie

2002-02-03 Thread chris
ID: 14227 Updated by: [EMAIL PROTECTED] -Reported By: [EMAIL PROTECTED] +Reported By: [EMAIL PROTECTED] Status: Open Bug Type: HTTP related Operating System: Linux 2.4.2-2 PHP Version: 4.0.6 New Comment: This is actually not a bug at all

Re: [PHP-DEV] Re: Developer Seeking To Help

2002-02-03 Thread Chris Shiflett
? If it is "open" status, can I safely assume it's not been investigated by a member of the PHP development team? Thanks for the information. Chris > Hello, > > Chris Shiflett wrote: > > I know there are also mundane tasks that need accomplishing, and I > > w

[PHP-DEV] Developer Seeking To Help

2002-02-03 Thread Chris Shiflett
P where a native function could improve performance and ease development, especially for inexperienced developers (see a trend? :)). I know there are also mundane tasks that need accomplishing, and I would be more than willing to help with some of these as well. Best regards. Chris Shiflett [E

[PHP-DEV] Bug #15339: can not run test program while cross compiling

2002-02-01 Thread chris
From: [EMAIL PROTECTED] Operating system: RedHat 7.1 PHP version: 4.1.1 PHP Bug Type: Compile Failure Bug description: can not run test program while cross compiling [root@dcprac php-4.1.1]# LIBS="-lmcrypt -lltdl" ./configure \ > --with-curl \ > --with-apache=../apache_1

RE: [PHP-DEV] Bug #12475 Updated: the variable $PHP_SELF is not set.

2002-01-14 Thread Chris Newbill
(NON-php.net)?? Irc-html, Can you try 4.1.0 or even 4.1.1 (when it's out) or the latest CVS (snaps.php.net)? Use the bug system to respond please. -Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 12:08 AM To: [EMAIL

[PHP-DEV] Bug #14628 Updated: Session functions block on lock

2002-01-07 Thread chris
] I guess your httpd is crashing. Please check your apache log. Do you get core file? [2001-12-22 06:12:34] [EMAIL PROTECTED] Hi No Frames involved. Thanks Chris

RE: [PHP-DEV] new bug viewing/editing form

2002-01-06 Thread Chris Newbill
Just a nit-picky thing but maybe you should have the year with all of the dates. -Chris -Original Message- From: Jim Winstead [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 06, 2002 1:13 PM To: [EMAIL PROTECTED] Subject: [PHP-DEV] new bug viewing/editing form as threatened after i

[PHP-DEV] Bug #14801: my_getwd.c fails to compile with error "No way to get current directory"

2002-01-02 Thread chris . read
From: [EMAIL PROTECTED] Operating system: Solaris 8 Intel PHP version: 4.1.1 PHP Bug Type: MySQL related Bug description: my_getwd.c fails to compile with error "No way to get current directory" ./configure --with-mysql --with-apxs --with-db3=/usr/local/BerkeleyDB.3.3 --wit

[PHP-DEV] Bug #14758: $HTTP_GET_VARS Improper NAME scrambling

2001-12-29 Thread chris
From: [EMAIL PROTECTED] Operating system: Linux 2.4 (Mandrake 6.1) PHP version: 4.0.6 PHP Bug Type: *General Issues Bug description: $HTTP_GET_VARS Improper NAME scrambling This won't work (it should): This will: -- Edit bug report at: http://bugs.php.net/?i

RE: [PHP-DEV] Re: Bug #14653 Updated: Internet Explorer for Macintosh receives bad HTTP header info from PHP Header()

2001-12-22 Thread Chris Newbill
http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.14 This would be a good document to look over for possible workarounds. You should also try http://support.microsoft.com/ and see if they have a KB issue on it. -Chris -Original Message- From: Fred B [mailto:[EMAIL PROTECTED

[PHP-DEV] Bug #14628 Updated: Session functions block on lock

2001-12-22 Thread chris
ID: 14628 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Session related Operating System: Linux PHP Version: 4.1.0 New Comment: Hi No Frames involved. Thanks Chris Previous Comments

[PHP-DEV] Bug #14628 Updated: Session functions block on lock

2001-12-21 Thread chris
ID: 14628 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Session related Operating System: Linux PHP Version: 4.0.6 New Comment: Hi Have installed 4.1, same problem as highlighted below: [root@fweb2 /root]# strace -p 6739 flock(4

[PHP-DEV] Bug #14628: Session functions block on lock

2001-12-20 Thread chris
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Unknown/Other Function Bug description: Session functions block on lock When running php with fastcgi, php gets stuck on call to open session file. Strace output gives following; open("/www/

RE: [PHP-DEV] CVS Account Request: 101973

2001-12-13 Thread Chris Newbill
Aren't we all :) But that's certainly no reason to give you CVS access. -Chris -Original Message- From: Fred Koopmann [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 4:37 PM To: [EMAIL PROTECTED] Subject: [PHP-DEV] CVS Account Request: 101973 Hello! I am wo

RE: [PHP-DEV] multiple inheritance ext

2001-12-08 Thread Chris Newbill
Yeah, Yeah I jumped the gun...but you know you wanna include it :) -Chris -Original Message- From: Zeev Suraski [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 08, 2001 5:16 PM To: Chris Newbill Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-DEV] multiple inheritance

RE: [PHP-DEV] multiple inheritance ext

2001-12-07 Thread Chris Newbill
Zend Engine 2 will have multiple-inheritance among other nice toys. No I don't know when it will be part of PHP) There is a mailing list for the engine, I just don't remember what it is. -Chris -Original Message- From: Matthew J Gray [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: [PHP-DEV] RE: [Zend Engine 2] ZE2 comments 2

2001-12-07 Thread Chris Newbill
>>What is as great as sex is of course multiple inheritance and object >>dereferencing. My God man! I develop for a living and I wouldn't go that far! ;) -Chris -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

RE: [PHP-DEV] Help displaying an image stoed in a MySQL database

2001-12-06 Thread Chris Newbill
server for that file. So what you need to do it make a file that just displays the content of the image. Example. Image.php That's it...then from your html page -Chris -Original Message- From: Christofe DuBois [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 5:11

RE: [PHP-DEV] strange crash

2001-11-20 Thread Chris Newbill
work. Guess extract() doesn't like the recursion of $GLOBALS?? -Chris -Original Message- From: Derick Rethans [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 12:30 AM To: Chris Newbill Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] strange crash On Wed, 21 Nov 2001, Chris New

RE: [PHP-DEV] strange crash

2001-11-20 Thread Chris Newbill
('"','&quot;',$string);       print $string; }   The entire function has to be commented out; only commenting out part of it still allows it to crash.   -Chris -Original Message- From: Chris Newbill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001

[PHP-DEV] strange crash

2001-11-20 Thread Chris Newbill
/erain/st2/commercesys/html/discount_detail.php   Ideas?  This happens with today’s CVS and 4.1.0RC3.   I haven’t broken the script down to something small enough to reproduce….yet.   -Chris   Linux storm.elementalrain.com 2.4.9-6 #1 Thu Oct 18 09:39:55 EDT 2001 i686 unknown Apache 1.3.22

RE: [PHP-DEV] Doubt in Script to Upload

2001-11-20 Thread Chris Newbill
This list is not for people developing WITH PHP it is for people developing PHP itself.   The list you want is [EMAIL PROTECTED].   -Chris   -Original Message- From: Kannan Soundararajan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 10:38 PM To: [EMAIL

[PHP-DEV] Windows Compiler Options

2001-11-20 Thread Chris Newbill
support Borland’s compiler as well?   I’ll mess around with it later (a pizza is calling my name) if no one else has or wants to.   -Chris  

RE: [PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC

2001-11-19 Thread Chris Newbill
But Thursday is TURKEY DAY!!! :) -Chris -Original Message- From: James Moore [mailto:[EMAIL PROTECTED]] Sent: Monday, November 19, 2001 4:06 PM To: [EMAIL PROTECTED]; Zeev Suraski Cc: [EMAIL PROTECTED] Subject: [PHP-DEV] Re: [PHP-QA] 4.1.0 Final RC > www.php.net/~zeev/php-4.1.0

[PHP-DEV] empty("0") issue

2001-11-18 Thread Chris Newbill
What ever came of this issue?  I’m running into a lot of instances lately where this is very annoying.  I’ll check the archives latter just thought I’d ask.   -Chris

RE: [PHP-DEV] md5sum() patch

2001-11-15 Thread Chris Newbill
Nahh I think md5_file() isn't very good. However, overloading md5() doesn't really seem like a good idea either. md5sum() is pretty appropriate, anybody who is going to use this function is probably going to be familiar with the md5sum program. Plus md5sum() is fewer keystrokes.

RE: [PHP-DEV] Random Row From Database

2001-11-10 Thread Chris Newbill
PHP-Dev is not the list for these questions. You should read the MySQL manual. (assuming your using MySQL) Your query should be SELECT * FROM TABLENAME ORDER BY RAND() LIMIT 1 -Chris -Original Message- From: HEW Staff [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 10, 2001 9:19

RE: [PHP-DEV] class xxx extends a_class_from_the_include_path - problem

2001-11-10 Thread Chris Newbill
Works just fine with 4.2.0-dev. However I can verify it on 4.0.6, so I'm guessing this problem was fixed. -Chris -Original Message- From: Wolfram Kriesing [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 10, 2001 11:25 AM To: list; list Subject: [PHP-DEV] class xxx ex

RE: [PHP-DEV] ftp_connect()???

2001-11-02 Thread Chris Newbill
No. He means when compiling PHP you must run 'configure'. [me@somehost /php-source]# ./configure --enable-ftp -Chris -Original Message- From: JIM [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 2:02 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DEV] ftp_connect(

[PHP-DEV] Re: Bug #12629 Updated: small compile errors

2001-10-23 Thread Chris Loelke
password does not work sorry updated info, the bug is in the configure script, if you edit all references to the cflags and change them as per below, getrusage works fine. At 01:53 PM 23/10/01 +, you wrote: >ID: 12629 >Updated by: sniper >Reported By: [EMAIL PROTECTED] >Old Status: Op

[PHP-DEV] CVS Account Request: zenderx

2001-10-23 Thread Chris Jarecki
I am heavily using PHP's XML functionality, but I am only interested in developing the DOM interface. That is php4/ext/domxml in the CVS tree. I have already developed some functions that are quite useful and I would like to share them somehow. I would really like to contribute to the DOM proje

RE: [PHP-DEV] array_init() opinions?

2001-10-22 Thread Chris Newbill
Why not move the syntax to this? array_init( array/mixed indexes, mixed value[, int num]) So then I could do $a = array_init(array("key1", "key2", "key3"), "apple"); or $a = array_init(5, "apple", 6); -Chris -Original Message- Fr

[PHP-DEV] array_merge() and objects

2001-10-05 Thread Chris Newbill
ot;one"]=> int(4) ["two"]=> &int(6) } [4]=> object(test)(2) { ["one"]=> int(5) ["two"]=> &int(6) } [5]=> object(test)(2) { ["one"]=> int(1) ["two"]=> &i

RE: [PHP-DEV] include() like functionality for strings

2001-10-02 Thread Chris Newbill
If it is called HTML mode then yes, but if there happened to be PHP in the string it would be processed as PHP code. I'll assume that is what HTML mode does??? -Chris -Original Message- From: Andi Gutmans [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 2:37 AM To:

Re: [PHP-DEV] Possibility of moving bugs to another list?

2001-10-02 Thread Chris Gardner
would make the discussions a bit more manageable. You have a great point that with the cvs access though. I think have cvs access should REQUIRE you to be a member of the PHP-Bugs list. If you have access, you get the bug reports. It should be hand and hand with that responsibily. Chris Ga

Re: [PHP-DEV] Possibility of moving bugs to another list?

2001-10-02 Thread Chris Gardner
e bug forum, but the general developer threads could get a lot less weakened by other things.  Anyways, I'll quite complaining about this now.   Chris GardnerBook Systems, Inc.[EMAIL PROTECTED]

Re: [PHP-DEV] Possibility of moving bugs to another list?

2001-10-02 Thread Chris Gardner
ind have to two seperate group, because at least then we could tell what we were looking at quickly. Chris Gardner Book Systems, Inc. [EMAIL PROTECTED] -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

RE: [PHP-DEV] include() like functionality for strings

2001-10-01 Thread Chris Newbill
e I/O part of include and going straight to the parsing/executing of the string we pass. This would probably be best as a new function. I'm not sure how it would affect BC if eval was modified to handle this. -Chris -Original Message- From: Andi Gutmans [mailto:[EMAIL PROTECTED]] Se

  1   2   3   >