Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Jean-Michel Dault
Linux-Expo in Montreal, where I invited everyone, paid all drinks and made burgers all night. And Rasmus won't have to help me carry the food from the store ;-) Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Jean-Michel Dault
commits on the php-cvs@ list anyway. I understand perfectly. One last question: is a .phpt file created for every closed bug report, or is it something that only a couple of developers do? Thanks for taking the time to reply to my (silly?) questions, and specially for the prompt replies. =) When

Re: [PHP-DEV] Apache2 SAPI

2003-03-08 Thread Jean-Michel Dault
give it a try in the following weeks, I'll let you know of any bugs or success. In the meantime, I would not object to put in the 4.3.x series, and even put it as default, as long as you leave apache2filter as well, so we can switch from one to the other just by altering the makefile. Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Apache2 SAPI

2003-03-07 Thread Jean-Michel Dault
big +1 on this as it can be considered as a FIX.. > > Let's just replace the other one with this new one. > Ok, I'm convinced now too :) Just one thing before we make the move: what about the thing with virtual and php re-entrancy? Is that fixed? Jean-Michel -- PHP Development Mailing Li

[PHP-DEV] Bug fixing and CVS

2003-03-07 Thread Jean-Michel Dault
iffs on a changelog entry? Would something like bugs.php.net/patches with a list of all closed bugs and their corresponding diffs be thinkable? Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Help: Sablotron and Shift-jis

2003-03-06 Thread Michel Sahyoun
, that would be of great help. Michel "Marcus Börger" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > At 00:40 07.03.2003, Michel Sahyoun wrote: > >Does anyone have an example of using XSLT with Sablotron to transform and > >XML document containi

[PHP-DEV] Help: Sablotron and Shift-jis

2003-03-06 Thread Michel Sahyoun
with iconv, and Javascript. In my php file, I call xslt_set_encoding($xsltHandle, 'Shift-jis'); My xsl file has My XML file has: Am I doing something wrong? Is the encoding name misspelled? Anything else I could check? Thanks, Michel -- PHP Development Mailing List <http://www.p

[PHP-DEV] php_xslt: xslt_set_encoding

2003-03-05 Thread Michel Sahyoun
I have downloaded the 4.3.1 windows binaries zip package and it doesn't seem to have xslt_set_encoding() enabled. Can anyone confirm this? And short of getting the sources and recompiling PHP, is there another binary distribution that would have xslt_set_encoding() enabled? Thanks, M

Re: [PHP-DEV] Re: modules in c++

2003-03-05 Thread Michel M. dos Santos
Yes. My config.m4: PHP_ARG_ENABLE(biac, for biac support,[ --enable-biacEnable biac support]) if test "$PHP_BIAC" != "no" ; then PHP_ADD_LIBRARY(stdc++) PHP_EXTENSION(biac,$ext_shared) PHP_REQUIRE_CXX() fi Michel M. dos Sa

Re: [PHP-DEV] Re: modules in c++

2003-03-05 Thread Michel M. dos Santos
se of cout (in this case) result it. I try with std::cout or using namespace std but not resolve. Linking with g++ the error dont occur. What is wrong ? Thanks a lot, Michel M. dos Santos On Wednesday 05 March 2003 17:23, J Smith wrote: > That should still work fine, thou

[PHP-DEV] modules in c++

2003-03-05 Thread Michel M. dos Santos
I/usr/include/php4 -I/usr/include/php4/main -I/usr/include/php4/Zend -I/usr/include/php4/TSRM -DHAVE_CONFIG_H -g -O2 -o teste.la -avoid-version -module -rpath /root/biac_php/teste/modules teste.lo gcc -shared teste.lo -Wl,-soname -Wl,teste.so -o .libs/teste.so ^^^ Thanks, Mic

Re: [PHP-DEV] buildconf warning

2003-02-25 Thread michel 'ziobudda' morelli
Il mar, 2003-02-25 alle 18:13, Magnus Mb@) ha scritto: > This is because you are running autoconf version 2.53 (which is buggy). > Downgrading to 2.13 will remove those warnings. Tnx. -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List &l

[PHP-DEV] buildconf warning

2003-02-25 Thread michel 'ziobudda' morelli
' is needed.]) WARNING: More sophisticated templates can also be produced, see the WARNING: documentation. autoheader: `main/php_config.h.in' is created bye -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] new construct

2003-02-25 Thread michel 'ziobudda' morelli
d a __construct() function for a given class, it will search for the old-style constructor function, by the name of the class. But: and "/usr/local/php5-230202003/bin/php test.php" give this result: into A::A() And this is not correct, or not ? tnx -- michel 'ziobudd

[PHP-DEV] Xml into PHP5

2003-02-24 Thread michel
Hi which is the story of XML into PHP5: DOM or Sablaton (XSL)? Insert direct into php5 or like now via configure ? Tnx in advance for all. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Why parent::construct not called?

2003-02-23 Thread michel 'ziobudda' morelli
Il dom, 2003-02-23 alle 18:07, Marcus Börger ha scritto: > In ZE2 each class has a constructor. That constructor can be overwritten > by writing a method named "__construct". So far so good. Ok... This is the design.. tnx. -- michel 'ziobudda' morelli <[EMAIL PROT

Re: [PHP-DEV] Why parent::construct not called?

2003-02-23 Thread michel 'ziobudda' morelli
onstruct() is called (in automatic) only when derived::__constuct() is missing. I think that or the base::__construct() is always in automatic called or it is always never called (in automatic). bye -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List &l

[PHP-DEV] Why parent::construct not called?

2003-02-23 Thread michel 'ziobudda' morelli
Hi, why if I have class B extends A { } the only way to call in automatic the A::__construct() is to not write the B::__construct() ? Ok, this is the design of PHP. But why ? tnx -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http

Re: [PHP-DEV] no construct called

2003-02-22 Thread michel 'ziobudda' morelli
Il sab, 2003-02-22 alle 14:57, michel 'ziobudda' morelli ha scritto: > Hi, I have this code: Hi again. In my script I have noticed that if I write: protected $protetta = "Io sono protetta"; the function function ex2() { echo "sono in ex2()\n";

[PHP-DEV] no construct called

2003-02-22 Thread michel 'ziobudda' morelli
ruct() and exe() ) is ok that exe() is called and not __construct() (of class "exe") ??? I'm using php5-cvs of 19 Feb 2003. Tnx in advance. -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Jumadi

2003-02-19 Thread michel
On Thu, 20 Feb 2003, Magnus MP@!gnus wrote: > This is list is for the developement _of_ PHP, not _with_ PHP. > Please send this kind of questions to [EMAIL PROTECTED] Only one question: why not change the name of this mailing list ??? Only a idea. Bye. -- PHP Development Mailing List

[PHP-DEV] Invalid argument supplied for foreach()

2003-02-19 Thread michel 'ziobudda' morelli
Compiled today CVS version of php5. when I do 'make install' I get: Installing PEAR environment: /usr/local/php5-19022003//lib/php/ Warning: Invalid argument supplied for foreach() in /home/httpd/html/PHP/php5/pear/PEAR/Common.php on line 1165 [MORE AND MORE] bye. -- michel

[PHP-DEV] Libtool for RH8

2003-02-19 Thread michel 'ziobudda' morelli
tnx -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] cvs checkout

2003-02-19 Thread michel 'ziobudda' morelli
cvs checkout: move away php4/TSRM/tsrm_win32.h; it is in the way why this ? tnx -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] session_set_save_handler and session_start

2003-02-11 Thread michel
On Tue, 11 Feb 2003, [EMAIL PROTECTED] wrote: > http://www.ziobudda.net/test/session4-2.php (PHP4) > http://www.ziobudda.net:81/test/session4-2.php (PHP5) ops :%s/php/phps/g bye -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] session_set_save_handler and session_start

2003-02-11 Thread michel
On Tue, 11 Feb 2003, [EMAIL PROTECTED] wrote: > On Tue, 11 Feb 2003, Stephen Thorne wrote: > > > no, but my example is get from session/tests/003.phpt > > > So if the original example/test is wrong... > > > I'm curious, did passing the objects by reference work? > > Nope. Hi list. I think that

Re: [PHP-DEV] session_set_save_handler and session_start

2003-02-11 Thread michel
On Tue, 11 Feb 2003, Stephen Thorne wrote: > > no, but my example is get from session/tests/003.phpt > > So if the original example/test is wrong... > I'm curious, did passing the objects by reference work? Nope. http://www.ziobudda.net:81/test/session4.php source: http://www.ziobudda.net:81/t

Re: [PHP-DEV] session_set_save_handler and session_start

2003-02-10 Thread michel
On Mon, 10 Feb 2003, Stephen Thorne wrote: > Just a thought - have you tried passing $hnd by reference? > > array(&$hnd, "open_session") no, but my example is get from session/tests/003.phpt So if the original example/test is wrong... > Otherwise when you try and set state in the class for it

[PHP-DEV] session_set_save_handler and session_start

2003-02-09 Thread michel 'ziobudda' morelli
session-handler vie class into tests directory so I have thinked that this is a php5 problem (or a my problem with php5). Using cvs via cvs -z3 -d :pserver:[EMAIL PROTECTED]:/repository -z3 co php5 and with this configure: ./configure --with-apxs2=/usr/local/httpd-2.0.43/bin/apxs --prefix=/us

Re: [PHP-DEV] Ok, I'm stupid but why..

2003-02-04 Thread michel 'ziobudda' morelli
Il mar, 2003-02-04 alle 16:58, michel 'ziobudda' morelli ha scritto: > ... it does not work: [snip] > cvs -z3 -d :pserver:[EMAIL PROTECTED]:/repository -z3 co -rPHP_4_3 > php4 yes, with php4 it can not work (is not ZE2) (error in cut&paste). but for the other ? >

[PHP-DEV] Ok, I'm stupid but why..

2003-02-04 Thread michel 'ziobudda' morelli
o php4-ze2 and this configure: ./configure --with-apxs2=/usr/local/httpd-2.0.43/bin/apxs --prefix=/usr/local/php5-`date +%d%m%G`/ - -with-openssl --with-zlib --with-bz2 --with-gd --with-mysql --with-xmlrpc Ok, I'm stupid, but where is my error ??? plz. -- michel 'ziobudda' more

Re: [PHP-DEV] Again scope

2003-02-02 Thread michel 'ziobudda' morelli
t; > function bar() { > print "foobar\n"; > } > } > > $obj = new FooClass; > $obj->foo(); > ?> > > Ok, this not works. My cvs is old, very ol

[PHP-DEV] Again scope

2003-01-31 Thread michel 'ziobudda' morelli
Bar2(); ?> give me this error: Fatal error: Call to undefined function: bar() in /home/httpd/html/PHP/test/3.php on line 14 I'm using php-cli from cvs (2 weeks ago). And there is a variable scope (for the class). -- michel 'ziobudda' morelli <[EMAIL PROTECTED]&g

Re: [PHP-DEV] RFE: trigger_error()

2003-01-27 Thread michel 'ziobudda' morelli
Il lun, 2003-01-27 alle 22:06, Sebastian Bergmann ha scritto: > michel 'ziobudda' morelli wrote: > > Can you explain me this new function ? > > See http://cvs.php.net/co.php/ZendEngine2/ZEND_CHANGES >From that page I read about __set() but I have not understand o

Re: [PHP-DEV] Error from last cvs (php4)

2003-01-27 Thread michel 'ziobudda' morelli
For PHP5 I get "php5" module. Tnx and bye -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] RFE: trigger_error()

2003-01-27 Thread michel 'ziobudda' morelli
Il lun, 2003-01-27 alle 21:53, Sebastian Bergmann ha scritto: > michel 'ziobudda' morelli wrote: > > is this avaible only into PHP5 ?? > > Yes. > > > There is a __unset() function? > > No, there are __get(), __set() and __call() interceptors. Can yo

[PHP-DEV] Error from last cvs (php4)

2003-01-27 Thread michel 'ziobudda' morelli
dentifier is reported only once /home/httpd/html/PHP/php4/ext/standard/basic_functions.c:2827: for each function it appears in.) make: *** [ext/standard/basic_functions.lo] Error 1 -- michel 'ziobudda' morelli <[EMAIL PROTECTED]> -- PHP Development Mailing List <http://w

[PHP-DEV] variable scope

2003-01-21 Thread michel
Hi, I'm coding in PHP5 (ok, it is in pre-alpha-beta-other). I have read about Function scope and if I do not wrong: Class Foo { Function Bar() { print "Bar"; } Function Bar2() { Bar(); } } $f = new Foo(); $f->Bar2(); and it write "Bar". I want to know if this type of scope is equal f

[PHP-DEV] function not found

2003-01-20 Thread michel 'ziobudda' morelli
such file or directory in /home/httpd/html/zb_ng/test/c_faq/1.php on line 8 but [function.main] is a link to www.php.net/function.main that report: Sorry, no documents matched your search for "function.main". Is this a bug ? bye and sorry for my bad english. -- michel 'zi

Re: [PHP-DEV] sapi/embed ?

2003-01-19 Thread Jean-Michel Dault
feature, and I would like to test it, and make an RPM package for Mandrake with it. Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

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

2003-01-14 Thread michel 'ziobudda' morelli
rch ? bye -- MULTA DI 160.000 PERCHE' IL MULO E' PRIVO DI LUCI DI POSIZIONE (Cronaca vera, 1995) -- Michel Morelli [EMAIL PROTECTED] ICQ UIN: 58351764 PR of Linux in Italy http://www.ziobudda.net http://www.phpdev.it -- -- Modi el

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

2003-01-14 Thread michel 'ziobudda' morelli
rch ? bye -- MULTA DI 160.000 PERCHE' IL MULO E' PRIVO DI LUCI DI POSIZIONE (Cronaca vera, 1995) -- Michel Morelli [EMAIL PROTECTED] ICQ UIN: 58351764 PR of Linux in Italy http://www.ziobudda.net http://www.phpdev.it -- -- Modi el

Re: [PHP-DEV] PHP building on Linux: A question on configure script!

2003-01-06 Thread Jean-Michel Dault
Oops.. I forgot the files... Here they are! Le lun 06/01/2003 à 12:49, Jean-Michel Dault a écrit : > Le lun 06/01/2003 à 07:24, Ananth Kesari a écrit : > > What we are looking for is to find out whether or not the current > > autotool input files of PHP support the ability to pro

Re: [PHP-DEV] PHP building on Linux: A question on configure script!

2003-01-06 Thread Jean-Michel Dault
need to tweak your httpd.conf to put the required LoadModule, AddModule and AddType directives. 10) Or better yet, install Mandrake Linux and have it already pre-configured ;-) Regards, Jean-Michel Dault Apache/PHP Packager Mandrake Linux -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Using PHP for search and replace

2003-01-06 Thread Jean-Michel Dault
t it's pretty weird to have a Prereq: perl in a PHP package. Imagine the irony, you install the best scripting language (PHP) and you need its competitor (Perl) to be able to use install it ;-) Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CGI and CLI [packaging issues]

2003-01-05 Thread Jean-Michel Dault
P source approach: By default, "configure/make/make install" compiles the CGI interface, and then you have to "make install-cli" to get the CLI. We just replace the "make install-cli" by "urpmi/apt-get php-cli". Comments/Questions/Suggestions welcome. Jean-Mi

[PHP-DEV] CLI behavior with -q switch

2003-01-05 Thread Jean-Michel Dault
-q switch would imply changing the working directory to that of the script, unless overriden by -C. That way, both "php -q" and "php -C -q" (as used in PEAR) would give the same results with both CGI and CLI. What do you think? Jean-Michel Dault MandrakeSoft -- PHP Deve

[PHP-DEV] Using PHP for search and replace

2003-01-04 Thread Jean-Michel Dault
eates some security risks. Is there a quick and easy way to do this kind of thing in PHP? Or would this be something that we could integrate? And I know there's a new solution with the new config-file-scan-dir, but my question is a general search-and-replace solution. Any thoughts? Jean-M

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2003-01-04 Thread Jean-Michel Dault
/opt, some in /usr/bin, so anyways you have to modify it. And with my approach, php will still be called php, with the symbolic links. Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2003-01-04 Thread Jean-Michel Dault
both are installed, calling php will translate to php-cgi, which has the highest priority. Users who have both packages will still be able to chose if they give the proper binary name. Does this make sense to you? Jean-Michel -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Another question on PHP building on Linux.

2003-01-03 Thread Jean-Michel Dault
rted this to 4.3 yet, since there has been lots of changes in the makefile and configure scripts, but I'll post it on this list in a couple of days. In the meantime, if you're familiar with the RPM environment, you can download the Mandrake PHP RPM and have a look at the SPEC file.

Re: [PHP-DEV] CGI and CLI (compromise proposal)

2003-01-03 Thread Jean-Michel Dault
list often. Regards, Jean-Michel Dault Apache/PHP maintainer, Mandrake Linux Le jeu 19/12/2002 à 10:33, Edin Kadribasic a écrit : > After having consulted with Andrei, Derick and others on irc here is > a proposal for a compromise: > > On Unix: > > 1. Both cgi and cli are

Re: [PHP-DEV] Re: Warning in wrong parameter

2002-12-24 Thread michel 'ziobudda' morelli
Il mar, 2002-12-24 alle 22:20, Eric Coleman ha scritto: > AFAIK, it's supposed to allow for more parameters anyway ;) Hmm... I have supposed it... however in C/C++ is the same (thing). Sorry for the stupid question and my best whishes with all my heart for a merry MERRY Christmas. -

[PHP-DEV] Warning in wrong parameter

2002-12-24 Thread michel 'ziobudda' morelli
egarti, farti sudare, prenderti da farti incendiare il corpo... Ti aspetto: Tua, Influenza. -- Michel Morelli [EMAIL PROTECTED] ICQ UIN: 58351764 PR of Linux in Italy http://www.ziobudda.net http://www.phpdev.it -- PHP Developmen

[PHP-DEV] 4.3.0RC2 : Comment introduced by // in main/php_content_type.c

2002-12-06 Thread Michel Jouvin
native C compiler on T64 5.1. Below is the trivial patch. May be, as it is the only location this // comment has been used, it is better to stay with old : /* */. Good luck and thanks for the nice PHP. Michel *** php_content_types.c Fri Dec 6 14:37:08 2002 --- php_content_types.c.original Fri Dec

[PHP-DEV] php4.3 and zend2

2002-11-22 Thread michel 'ziobudda' morelli
Hi, and sorry for the question: I have lost the cvs string to get last php4-dev with ze2. Does some1 give me it ? tnx and sorry. -- Michel Morelli [EMAIL PROTECTED] ICQ UIN: 58351764 PR of Linux in Italy http://www.ziobudda.net http

[PHP-DEV] try/catch/throw in php5 ?

2002-11-12 Thread michel 'ziobudda' morelli
any news about an error management in php5 ? tnx -- -- Gli ultimi saranno i primi, ma lo sportello chiude alle 12 -- Michel Morelli [EMAIL PROTECTED] ICQ UIN: 58351764 PR of Linux in Italy http://www.ziobudda.net http://www.phpdev.it

[PHP-DEV] php 4 and Zend 2

2002-11-11 Thread michel 'ziobudda' morelli
Hi, how can I try php4 and zend 2 ? I'm need it to write a book.. If I need to get the cvs version, how ? other than cvs co php4 is there a possibility to know where php5 go out ? bye and tnx. -- -- "Vendo tutto per esaurimento" (Insegna in un negozio) -- Michel Morelli

[PHP-DEV] IBM 4694

2002-11-08 Thread Jean-Michel Garcia
Hello all, I'm trying to use a till (cash register or POS) : IBM 4694. This computer is a PC based engine, with a special plugged in card, hosting a set of RS 485 ports for devices like keyboard, printer or display. The driver is writen by IBM, but not open Source. So I'm fighting with PHP trying

[PHP-DEV] Italian Book on PHP 5

2002-10-29 Thread michel 'ziobudda' morelli
Hi, I'm writing a php's book for italian people. I need to know some info about php 5.0. Any ideal time line ?? Tnx in advance. Ah, how can I get the HEAD cvs ? tnx -- -- Vecchioni da ragazzo si chiamava Jovanotti ? -- Michel Morelli [EMAIL PROTECTED] ICQ UIN

[PHP-DEV] CVS Account Request: michelinux

2002-01-30 Thread Michel Silvestre de Lima
translating the documentation -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-DEV] Bug #15193 Updated: Module loads but does not work

2002-01-28 Thread michel
ID: 15193 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Feedback Bug Type: Dynamic loading Operating System: solaris 2.8 PHP Version: 4.1.1 New Comment: After some debugging, I found that the problem is clearly in Apache. There is a segmen

[PHP-DEV] Bug #12120 Updated: Several following < characters ignored by striptags()

2001-08-19 Thread michel
ID: 12120 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Old Status: Feedback Status: Open Bug Type: Strings related Operating System: Linux Mandrake PHP Version: 4.0.4pl1 New Comment: I did not try with the newest release, and unfortunatly cannot currently test more with any

[PHP-DEV] Bug #12120 Updated: Several following < characters ignored by striptags()

2001-07-12 Thread michel
ID: 12120 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Strings related Operating System: Linux Mandrake PHP Version: 4.0.4pl1 New Comment: $foo = strip_tags("< < hello", ""); echo $foo; // prints "< b>hello" with a hidden "" strip_tags(), in this c

[PHP-DEV] Bug #12120: Several following < characters ignored by striptags()

2001-07-12 Thread michel
From: [EMAIL PROTECTED] Operating system: Linux Mandrake PHP version: 4.0.4pl1 PHP Bug Type: Strings related Bug description: Several following < characters ignored by striptags() $foo = strip_tags("< < hello", ""); echo $foo; // prints "< b>hello" with a hidden "" stri

[PHP-DEV] Bug #10493: Secure IMAP server connection failure

2001-04-25 Thread michel
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.4pl1 PHP Bug Type: IMAP related Bug description: Secure IMAP server connection failure When running script below, I keep getting the following error: --- Warning: Couldn't open stream {hostname.domain.tld/s

[PHP-DEV] patch to bug #1546

2001-02-21 Thread Jansens Michel
standar d Unix so it should work on other platforms. Hope this can be used. Best regards, Michel Jansens Service Reseau, Universite Libre de Bruxelles (ULB) email: [EMAIL PROTECTED] CP 197 Universit

[PHP-DEV] PHP 4.0 Bug #9075: CGI/ file download problem with URL http://x/myprog.php/filename

2001-02-02 Thread michel . jansens
From: [EMAIL PROTECTED] Operating system: Solaris 2.6 PHP version: 4.0.4pl1 PHP Bug Type: Apache related Bug description: CGI/ file download problem with URL http://x/myprog.php/filename To give a default filename for dynamic file download I use the url: http://mysrv.com/my