Re: [PHP-DEV] Re: cgi and mod_php

2002-08-28 Thread Mike Hall
I'm sure PHP 4.3.0 builds the CLI as well as any other SAPI you specify, doesn't it? - Original Message - From: "George Schlossnagle" <[EMAIL PROTECTED]> To: "Daniel Lorch" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 28, 20

Re: [PHP-DEV] PHP 4.2.3 release.

2002-09-04 Thread Mike Hall
Would the syntax work? That should give an identical array, if I'm seeing what you're doing right. Mike - Original Message - From: <[EMAIL PROTECTED]> To: "Xavier Spriet" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, September 04, 2002 6:47 PM Subject: Re: [PHP-DEV] PHP 4

Re: [PHP-DEV] PHP 4.2.3 release.

2002-09-04 Thread Mike Hall
Beat me to it! :-) - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: "Xavier Spriet" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, September 04, 2002 6:50 PM Subject: Re: [PHP-DEV] PHP 4.2.3 release. > This is not a bug. Your syntax is wrong. It shoul

[PHP-DEV] Re: session_register warnings

2002-10-11 Thread Mike Hall
Now I'm not really anyone special - just another user, as it were, but I do use the session module on a daily basis as part of my job. FWIW, I agree with Sascha on this one. A user should be able to work with a session variable in global scope all the time, or not at all. Not some mish-mash of bot

Re: [PHP-DEV] short_open_tag

2002-10-17 Thread Mike Hall
I would have no problem - as a user - with the removal of short_tags IF was allowed!! Because the http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] hebrew patch for jewish calendar

2002-10-28 Thread Mike Hall
I received the attachment... you sure it's his mailer playing up? ;-) Mike --- Original Message --- From:Derick Rethans <[EMAIL PROTECTED]> To: moshe doron <[EMAIL PROTECTED]> Date:Mon, 28 Oct 2002 14:37:05 +0100 (CET) Subject: Re: [PHP-DEV] he

Re: [PHP-DEV] strpos() suggestion

2002-11-13 Thread Mike Hall
Why couldn't you just strrev() the string and then strpos() for it? Mike --- Original Message --- From:Monte Ohrt <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date:13 Nov 2002 16:02:54 -0600 Subject: [PHP-DEV] strpos() suggestion Hi, I had a lit

[PHP-DEV] Mailparse extension

2002-11-19 Thread Mike Hall
Is this going to be production stable in 4.3.0? Cheers, Mike -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Safe Mode Off

2002-12-21 Thread Mike Hall
You don't... for that would be a profoundly stupid feature, defeating the point of safe mode. And I suspect [EMAIL PROTECTED] would be a better place for this question --- Original Message --- From:"Shashwat Nagpal" <[EMAIL PROTECTED]> To: [EMAIL P

[PHP-DEV] Serial Extensions

2002-05-20 Thread Mike Hall
Is there a PHP extension for communicating with serial ports? If not, would there be interest in one should I develop it? --Mike -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-06-21 Thread Mike Hall
The HTTP/1.1 spec says that anything sent as a location header must be an absolute URI. Apache will sometimes segfault if you don't. If a specific redirect() function were to be implemented, would it be worth examining the URL passed into the function to see if it is absolute (e.g. if it contains

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

2002-06-21 Thread Mike Hall
> On Fri, Jun 21, 2002 at 09:50:01AM +0100, Mike Hall wrote : > > The HTTP/1.1 spec says that anything sent as a location header must be an > > absolute URI. Apache will sometimes segfault if you don't. > > Eh ?! If it is really apache which crashes, the apache g

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

2002-06-21 Thread Mike Hall
> 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, surely? > > Hmm ... I'm not sure. I don't think apache should crash. but

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

2002-06-24 Thread Mike Hall
> Chris Shiflett wrote: > > > I have a few sites where I deliberately violate the HTTP spec in this > > way to get around a bug in IE (I know, shame on me). I've been using > > relative URLs in a "Location" header for years with no crashes that I > > know of. > > > > There must be something unique

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-24 Thread Mike Hall
I would venture that this is a bug in Netscape, not a bug in PHP and therefore not PHP's responsibility to fix. Netscape is reporting to PHP that it accepts zipped content, when it clearly doesn't accept zipped images. Mike - Original Message - From: "Stefan Roehrich" <[EMAIL PROTECTED]>

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-24 Thread Mike Hall
I simply don't use output compression for images - Original Message - From: "Jaime Bozza" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "'Stefan Roehrich'" <[EMAIL PROTECTED]>; "'Mike Hall'" <[EMAIL PROT

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-24 Thread Mike Hall
I never set it in the ini, only set it at runtime. - Original Message - From: "Jaime Bozza" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "'Mike Hall'" <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 4:31 PM Subject: RE: [PHP-DEV] Swit

[PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-24 Thread Mike Hall
ob_start('ob_gzhandler'); Shouldn't this be on php-general by now? ;-) > let me get this straight.. you can turn off output_buffering = on inside > php? > > then whats the problem with zlib, just make it output_buffer, and AFTER that > check the ini value, weather to compress that data or not..

Re: [PHP-DEV] Switching zlib.output_compression, bug #16109

2002-06-24 Thread Mike Hall
Well write your own callback function for ob_start then! ;-) > Perhaps. :) But it seems you're missing the point. Read here: > > http://www.php.net/manual/en/function.session-start.php > > Specifically, the second note: > > Note: Use of zlib.output_compression is recommended rather than > ob

Re: [PHP-DEV] serial port communication

2002-07-02 Thread Mike Hall
It's something I need to look into for a project I'm putting together at work. I just haven't got the time at the moment to do it, sadly -- Mike -- "Zac Hillier" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On the

Re: [PHP-DEV] serial port communication

2002-07-02 Thread Mike Hall
As far as I know, nobody has looked at this before. So you'd be starting from scratch. - Original Message - From: "Zac Hillier" <[EMAIL PROTECTED]> To: "Mike Hall" <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 9:40 AM Subject: Re: [PHP-DEV] serial

[PHP-DEV] Bug #13261: Restricting file system access

2001-09-12 Thread mike . hall
From: [EMAIL PROTECTED] Operating system: Any PHP version: 4.0.6 PHP Bug Type: Feature/Change Request Bug description: Restricting file system access echo `ls /home`; In a virtual host situation, this is very dangerous. On my own host - as an experiment - I was able to br

[PHP-DEV] Bug #13261 Updated: Restricting file system access

2001-09-12 Thread mike . hall
ID: 13261 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Operating System: Any PHP Version: 4.0.6 New Comment: Just to clarify, a method of specifying open_basedir dynamically would be nice. Sorry I didn't make that clear first tim