Re: [PHP-DEV] how to make nasty code less nasty (obtaining sqlite db handle)

2005-02-04 Thread l0t3k
i found this http://www.zend.com/lists/php-dev/200204/msg01083.html "Wez Furlong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > The extension deps framework (that orders the initialization done in > internal_functions.c) is already in HEAD; I was talking about the > extension "

Re: [PHP-DEV] how to make nasty code less nasty (obtaining sqlite db handle)

2005-02-04 Thread Wez Furlong
The extension deps framework (that orders the initialization done in internal_functions.c) is already in HEAD; I was talking about the extension "interfaces" idea I proposed a fairly long time ago now (long enough that I can't remember how long ago). I remember you showing interest in that at that

Re: [PHP-DEV] how to make nasty code less nasty (obtaining sqlite db handle)

2005-02-04 Thread Rasmus Lerdorf
Andrei Zmievski wrote: On Thu, 03 Feb 2005, Wez Furlong wrote: Some time back, I proposed a framework (and even a patch IIRC) that allowed this kind of thing at run-time; despite "we the extension developers" liking the idea, there was some negative feedback from andi/zeev so it never went further.

Re: [PHP-DEV] how to make nasty code less nasty (obtaining sqlite db handle)

2005-02-04 Thread Andrei Zmievski
On Thu, 03 Feb 2005, Wez Furlong wrote: > Some time back, I proposed a framework (and even a patch IIRC) that > allowed this kind of thing at run-time; despite "we the extension > developers" liking the idea, there was some negative feedback from > andi/zeev so it never went further. Search the ph

Re: [PHP-DEV] PHP 5.1

2005-02-04 Thread Jeff Moore
On Feb 2, 2005, at 3:53 PM, Rasmus Lerdorf wrote: We have seen definitively that many application writers do not know how to properly validate data. And yes, it is another ini thing to worry about, and yes it will be painful, but I don't think we can continue to ignore this. I also think that

Re: [PHP-DEV] modules/embedded function and Mac OSX

2005-02-04 Thread Andrei Zmievski
Make sure it was compiled as a bundle and not as a shared library. There is a difference. Run this: % file And if it replies "Mach-O dynamically linked shared library ppc", it was compiled in the wrong way. The latest updates to build system should fix this automatically. On Fri, 04 Feb 2005,

[PHP-DEV] modules/embedded function and Mac OSX

2005-02-04 Thread D . Walsh
I've been having some problems building some modules or embedding the function in PHP. I've attempted to build several different modules and all give the same results. If I build as a module, placing an 'extension=' entry in php.ini causes a dylib error. dyld: /usr/sbin/httpd Undefined sy

Re: [PHP-DEV] PHP 5.1

2005-02-04 Thread Edin Kadribasic
On Friday 04 February 2005 10:00, Rasmus Lerdorf wrote: > It comes down the fact that every single piece of data you get from GET, > POST, Cookie and some Server variables *must* be at the very least be > passed through htmlentities or striptags before you can display any part > of them. Exactly,

Re: [PHP-DEV] PHP 5.1

2005-02-04 Thread val khokhlov
Hello Rasmus, Friday, February 4, 2005, 11:00:23 AM, you wrote: RL> It comes down the fact that every single piece of data you get from GET, RL> POST, Cookie and some Server variables *must* be at the very least be RL> passed through htmlentities or striptags before you can display any part RL>

Re: [PHP-DEV] PHP 5.1

2005-02-04 Thread Rasmus Lerdorf
Ron Korving wrote: You guys can write your own implementation and put it in PECL alongside the one I am putting in there and we can decide if any of them should be bundled by default. Perhaps none of them should, but like it or not, people want to filter at this level and the extension to satisfy