[PHP-DEV] strip_tags patch

2003-02-11 Thread Keyser Soze
Oops. wrong topic there :) __ Hey guys, Just to announce that I put the patch.diff for strip_tags() in another server. Here is the new link: http://www.3dogs.hpg.ig.com.br/patch.diff If there's still any interest in applying it, feel free whoever is r

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

2003-02-11 Thread Keyser Soze
Hey guys, Just to announce that I put the patch.diff for strip_tags() in another server. Here is the new link: http://www.3dogs.hpg.ig.com.br/patch.diff If there's still any interest in applying it, feel free whoever is responsible for! Regards, Fabricio Olivetti de Franca -- PHP Developmen

Re: [PHP-DEV] session security

2003-02-11 Thread Keyser Soze
xplorer >5 and Mozilla (don't remember the version now), it worked fine. []'s Keyser Soze - Original Message - From: "Sascha Schumann" <[EMAIL PROTECTED]> To: "Hans Prins" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, Febr

[PHP-DEV] Bug #5975 request

2003-02-05 Thread Keyser Soze
The last patch was core dumping, now it's fixed. It runs fine here in my system, last php 5 CVS. The patch is in: http://www.ricesu.com.br/php_dev/patch_new.diff Please, take a look and apply it if it's ok. Regards, Fabricio Olivetti -- PHP Development Mailing List To un

Re: [PHP-DEV] Bug #5975 request

2003-02-04 Thread Keyser Soze
r" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 5:57 PM Subject: Re: [PHP-DEV] Bug #5975 request Patch looks ok. Just be sure to use zend_parse_parameters instead of zend_get_parameters and zend_bool in

Re: [PHP-DEV] Bug #5975 request

2003-02-04 Thread Keyser Soze
sure. http://www.ricesu.com.br/php_dev/patch.diff i'll delete it tomorrow at 15:00 GMT Regards, Fabricio Olivetti - Original Message - From: "Derick Rethans" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]&g

[PHP-DEV] Bug #5975 request

2003-02-04 Thread Keyser Soze
Sending in plain text: - cut here ? patch.diff ? ext/standard/file_new.c ? ext/standard/string_new.c Index: ext/standard/file.c === RCS file: /repository/php4

Re: [PHP-DEV] Bug #5975 request

2003-02-04 Thread Keyser Soze
ck Rethans" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, February 04, 2003 4:52 PM Subject: Re: [PHP-DEV] Bug #5975 request On Tue, 4 Feb 2003, Keyser Soze wrote: > > Hi all, > > I implemented the B

[PHP-DEV] Bug #5975 request

2003-02-04 Thread Keyser Soze
Hi all, I implemented the BUG #5975 requesting a third parameter in strip_tags, to disallow the tags in the second parameter instead of allowing then. But since I don't have CVS account, I would like that someone send me the files ext/standard/string.c ext/standard/php_string.h ext/standard/file.

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
in case anyone is interested?? regards, Keyser Soze - Original Message - From: <[EMAIL PROTECTED]> To: "Joseph Tate" <[EMAIL PROTECTED]> Cc: "Keyser Soze" <[EMAIL PROTECTED]>; "Php-Dev List" <[EMAIL PROTECTED]> Sent: Tuesday, March 05

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
I agree, so I think this module could be packaged with a default mycrypt library to make this easier Any idea? Keyser Soz - Original Message - From: "Joseph Tate" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]>; "Brad Fisher" &

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
but that's what my module is meant for Keyser Soze - Original Message - From: "Brad Fisher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, March 05, 2002 3:03 PM Subject: Re: [PHP-DEV] New Module > > J Smith

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
conffile",$conf); and when you run $conf = cfg_get("myconffile"); $conf will be set to the original associative array. Keyser Soze - Original Message - From: "Joseph Tate" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]> Cc: "P

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
sorry...the correct name is my_crypt and my_decrypt - Original Message - From: "Jim Segrave" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, March 05, 2002 2:44 PM Subject

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
with my module you can use any crypt method you want, just need to make a shared library with the name libmycrypt.so (in linux, didn´t make the windows port yet) with the functions (char *)crypt(char *) and (char *) decrypt(char *) so it can be customized with some limitations Keyser Soze

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
ounds ok for me. regards, Keyser Soze - Original Message - From: "Peter Petermann" <[EMAIL PROTECTED]> To: "Keyser Soze" <[EMAIL PROTECTED]>; "Robin Ericsson" <[EMAIL PROTECTED]> Cc: "PHP-DEV" <[EMAIL PROTECTED]> Sent: Tuesday,

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
Yes, but to check the password you should supply the plain text pass to md5 again and compare it with the encrypted one. That's what I'm trying to avoid. regards, Keyser Soze - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: "Brent R. M

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
it's much easier to detect a modification of a script instead of just a "cat dbconf.php". Keyser Soze Original Message- What stops the hacker from doing: $vars_db = cfg_get("db.cfg"); connect($conf[dbhost], $conf[dbname] , $conf[dbuser] , $conf[dbpass]

Re: [PHP-DEV] New Module

2002-03-05 Thread Keyser Soze
the encryption method can be changed easily, just doing a new libmycrypt.so. Like I said, libmycrypt.so is meant to have the funtionc (char *)my_crypt(char *) and (char *)my_decrypt(char *). The encryption method will be the user/admin choice. Keyser Soze - Original Message - From: <

[PHP-DEV] New Module

2002-03-04 Thread Keyser Soze
even if someones get his hands on the php scripts, he can't get those variables. I just need to comment out the code, but it will be ready tomorrow for sure. To where should I send the code, so if you are interested, put in php distribution??? Regards, Fabricio Olivetti de França aka K

[PHP-DEV] linking shared lib in new extension

2002-03-03 Thread Keyser Soze
wellbut when I'm going to compile the apache it doesn't link with mylib, I must put it manually in src/Makefile How can I make this automatic??? Thanks, Keyser Soze -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] AC_PROG_LEX invoked multiple times

2002-02-26 Thread Keyser Soze
Hi, I have read the archives and have seen that other ppl had the same problem using ./buildconf Have anyone got any solution??? I'm using autoconf 2.5 automake 1.5 libtool 1.4.1 thanks, Keyser Soze -- PHP Development Mailing List <http://www.php.net/> To unsubscribe,