[PHP-CVS] cvs: php4 /ext/standard exec.c

2001-01-13 Thread Derick Rethans
derick Sat Jan 13 13:52:09 2001 EDT Modified files: /php4/ext/standard exec.c Log: - There was one ret left, changed it to FG(pclose_ret), this fixes the build Index: php4/ext/standard/exec.c diff -u php4/ext/standard/exec.c:1.46

[PHP-CVS] cvs: php4 /ext/standard string.c

2001-01-18 Thread Derick Rethans
derick Thu Jan 18 13:46:24 2001 EDT Modified files: /php4/ext/standard string.c Log: - Fix for bug #8367 (wordwrap not cutting correctly) Index: php4/ext/standard/string.c diff -u php4/ext/standard/string.c:1.184 php4/ext/standard/string.c:1.185 ---

[PHP-CVS] cvs: php4 /ext/pgsql pgsql.c php_pgsql.h

2001-01-18 Thread Derick Rethans
derick Thu Jan 18 14:17:05 2001 EDT Modified files: /php4/ext/pgsql pgsql.c php_pgsql.h Log: - Added the pg_lolseek function, which allows for arbitrary seeking within a large object, and the pg_lotell call, which can be used to find the current file

[PHP-CVS] cvs: php4 / NEWS

2001-01-19 Thread Derick Rethans
derick Fri Jan 19 08:03:23 2001 EDT Modified files: /php4 NEWS Log: - Added a notice about the wordwrap function fix #- suggested by Jani for people depending on the buggy behaviour Index: php4/NEWS diff -u php4/NEWS:1.563 php4/NEWS:1.564 ---

Re: [PHP-CVS] cvs: php4 /ext/pgsql pgsql.c php_pgsql.h

2001-01-20 Thread Derick Rethans
On Sat, 20 Jan 2001, Sascha Schumann wrote: +PHP_FUNCTION(pg_lolseek) { + val **pgsql_lofp, **seek_offset, **seek_whence; ^^^ + gLofp *pgsql; ^ + long int offset; .. + ffset = lo_tell((PGconn *)pgsql-conn, pgsql-lofd); ^ + ETURN_LONG (offset); ^

[PHP-CVS] cvs: php4 /ext/gd gd.c php_gd.h

2001-01-24 Thread Derick Rethans
derick Wed Jan 24 01:24:27 2001 EDT Modified files: /php4/ext/gdgd.c php_gd.h Log: - Commited a patch that adds support for converting Images to WBMP format. (Thanx to Denis Gasparin [EMAIL PROTECTED]) @- Added support for converting images from

Re: [PHP-CVS] cvs: php4 /ext/mysql php_mysql.c php_mysql.h

2001-03-14 Thread Derick Rethans
in the NEWS file too? Derick Rethans - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] SRM: Site Resource Manager - www.vl-srm.net

[PHP-CVS] cvs: php4 /ext/mcrypt mcrypt.c

2001-03-16 Thread Derick Rethans
derick Fri Mar 16 07:59:46 2001 EDT Modified files: /php4/ext/mcryptmcrypt.c Log: - Fixed mem leak Index: php4/ext/mcrypt/mcrypt.c diff -u php4/ext/mcrypt/mcrypt.c:1.45 php4/ext/mcrypt/mcrypt.c:1.46 --- php4/ext/mcrypt/mcrypt.c:1.45 Sun Feb 25

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/mcrypt mcrypt.c

2001-03-17 Thread Derick Rethans
derick Sat Mar 17 06:55:24 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/mcryptmcrypt.c Log: - MFH (memleak fix) Index: php4/ext/mcrypt/mcrypt.c diff -u php4/ext/mcrypt/mcrypt.c:1.45 php4/ext/mcrypt/mcrypt.c:1.45.2.1 ---

Re: [PHP-CVS] cvs: php4 /sapi/fastcgi fastcgi.c

2001-03-22 Thread Derick Rethans
, instead of an empty string. This was stopping PHP from processing the data. I think it should be nice if this fix (and the CGI SAPI fix too) would be added to the PHP_4_0_5 branch too. Goodnight, Derick Rethans - PHP

[PHP-CVS] cvs: php4 /ext/standard formatted_print.c

2001-03-27 Thread Derick Rethans
derick Tue Mar 27 09:21:45 2001 EDT Modified files: /php4/ext/standard formatted_print.c Log: - 'Fix' for bug 10002 Index: php4/ext/standard/formatted_print.c diff -u php4/ext/standard/formatted_print.c:1.28 php4/ext/standard/formatted_print.c:1.29 ---

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/standard formatted_print.c

2001-03-27 Thread Derick Rethans
derick Tue Mar 27 09:24:01 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/standard formatted_print.c Log: - MFH (Fix for bug 10002) Index: php4/ext/standard/formatted_print.c diff -u php4/ext/standard/formatted_print.c:1.28

[PHP] PHP 4.1.1 released (minor update)

2001-12-26 Thread Derick Rethans
Due to a few bugs in PHP 4.1.0, we decided to release PHP 4.1.1. The bugs that were fixed are not major ones but minor ones, which could be annoying if you get bitten by them. Our recommendation is that people who already upgraded to PHP 4.1.0 do *not* upgrade to PHP 4.1.1, unless they're

[PHP] PHP 4.2.0 Release Candidate 1

2002-03-20 Thread Derick Rethans
Hello, A release candidate for PHP 4.2.0 has just been packed. This build is used for testing the readiness of the release branch. By providing feedback to this build, we can make sure the actual release (planned for April, 22nd) has as few bugs as possible. This release candidate is NOT

[PHP] Re: can I call a variable... using variables?

2002-07-09 Thread Derick Rethans
Joseph Szobody wrote: So here's what I'm trying to do: I have a form submitting dozens of variables called var1, var2, var3, .. and on and on. I want to check the value of each of these variables: for($i = 1;$i 100; $i++) { if($var$i 0) echo Yup. $var$i is greater than

[PHP] Re: passing objects in url

2002-07-09 Thread Derick Rethans
Hello, this will not work, but what you can do is this: $ser = serialize($this); echo a href=foo.php?this=$serBar/a\n; and then do this in foo.php: $object = deserialize($_GET['this']); Another way could be to use sessions, which will be a lot easier to work with in this case.

[PHP] Re: Functions list

2002-07-09 Thread Derick Rethans
Hello, César aracena wrote: I have the PHP manual in my PDA but its extraordinary large to search for a function. Does anybody know a Functions list that I can download for my PDA? I'm looking for something which shows the function and a short description of what it works for.

[PHP] Re: Cookies

2002-07-09 Thread Derick Rethans
Hey, for good (and funny) tutorial on cookies: http://www.htmlgoodies.com/tutors/cookie.html you can find some examples here: http://www.php.net/manual/en/function.setcookie.php Derick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Forms not passing variables

2002-07-10 Thread Derick Rethans
Hai, did you check the setting of register_globals really changed? See the phpinfo(); output if it's really set to on. If not, place your php.ini file in the correct location. Derick Hopp3r wrote: Hello all. I have a site that was backed up, before the box was reformatted and rebuilt.

Re: [PHP] if syntax

2002-07-10 Thread Derick Rethans
Martin Clifford wrote: There are no brackets necessary if you only have one line of code to be executed in the case. For example: if($var == 1) echo Var equals 1; } else { echo Var does not equal 1; } This will certianly give a parse error, your sample should be: if ($var ==

[PHP] Re: Forms not passing variables

2002-07-10 Thread Derick Rethans
make it reread the ini file, or where is correct location to copy my existing php.ini file? RC Derick Rethans [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hai, did you check the setting of register_globals really changed? See the phpinfo()

[PHP] Re: Crash Course on PHP WORKS :: Registering Globals

2002-07-10 Thread Derick Rethans
It's a much better idea to not do this, and change your code to use the $_GET and $_POST super globals for this. Derick Vins wrote: OK if you are running php on apache and your form variables don't pass through fire up your editor and edit php.ini and turn Register Globals ON

[PHP] Re: PHP gd-2.0

2002-07-10 Thread Derick Rethans
Mike, I suggest you try the latest snapshot http://snaps.php.net/php-latest.tar.gz and configure like this: ./configure --with-gd=php --other options This will use the bundled GD library, which is more current than any 'official' release. The PHP Dev Team decided to bundle it to make sure

[PHP] PHP 4.2.0 Release Announcement

2002-04-22 Thread Derick Rethans
* Improved performance and stability of the domxml extension * New multibyte regular expression support * LOTS of fixes and new functions For a full list of changes in PHP 4.2.0, see the NEWS file (http://www.php.net/ChangeLog-4.php). regards, Derick Rethans [EMAIL PROTECTED

[PHP] Xdebug extension availability

2002-05-01 Thread Derick Rethans
Hello, I'm happy to announce the availability of the xdebug extension. This extension modifies the php error handler to show stack traces. With this you can exactly see how the current function was called, even the parameters show up (if they are constants). I'm still working on variable

[PHP] PHP 4.2.1 release announcement

2002-05-14 Thread Derick Rethans
Hello, PHP 4.2.1 is released today, it's a bug fix release which addresses some serious bugs (and a lot of other little bugs) in 4.2.0. The full release announcement follows below: This bug fix release solves a few bugs found in PHP 4.2.0. PHP 4.2.1 includes the following fixes:

[PHP] Xdebug 0.8.0 announcement

2002-05-27 Thread Derick Rethans
://www.jdimedia.nl/xdebug.php. Derick --- Derick Rethans http://www.jdimedia.nl/derick/ JDI Media Solutions http://www.jdimedia.nl

Re: Fw: [PHP] PHP 4.1 out?

2001-11-28 Thread Derick Rethans
Hello Mike, PHP 4.1.0 is NOT out yet. You pointed a lot of people to a build that may _not_ be bug free. The release is NOT out of QA yet. The release is only official if it is announced on the website. Derick Rethans The PHP QA Team On Wed, 28 Nov 2001, Richard Heyes wrote: Mike Eheler

Re: [PHP] PHP 4.1 out?

2001-11-28 Thread Derick Rethans
Hello, Another thing, php 4.1.0 is NOT 4.1.0 RC3 Derick Rethans The PHP QA Team Mike Eheler [EMAIL PROTECTED] scrawled: Try it: http://www.php.net/distributions/php-4.1.0.tar.gz No word on the website, though. Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

[PHP-CVS] cvs: php4 /ext/standard mail.c php_mail.h

2001-02-05 Thread Derick Rethans
derick Mon Feb 5 13:30:30 2001 EDT Modified files: /php4/ext/standard mail.c php_mail.h Log: - Added a new parameter to mail() which appends aditional command line parameters to the mail program. This is usefull to set the From headers correctly with

Re: [PHP-CVS] cvs: php4 /ext/standard mail.c php_mail.h

2001-02-06 Thread Derick Rethans
is better. Derick Rethans - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] - JDI Media Solutions - www.jdimedia.nl - [EMAIL PROTECTED] H.v

Re: [PHP-CVS] cvs: php4 /ext/standard mail.c php_mail.h

2001-02-06 Thread Derick Rethans
On Tue, 6 Feb 2001, sterling hughes wrote: Derick Rethans wrote: I know this... it should probably be noted in the docs. Are you sure we should be adding that option to the mail() command? If the user really needs the advanced features provided by sendmail, they can easily use

Re: [PHP-CVS] cvs: php4 /ext/midgard .cvsignore ChangeLog INSTALL Makefile.in access.c article.c attachment.c calendar.c config.m4 element.cevent.c eventmember.c file.c fudge genentry.pl group.c ho

2001-02-12 Thread Derick Rethans
On Mon, 12 Feb 2001, Emiliano wrote: http://www.midgard-project.org/topic/165.html Well, that's a nice project, but why does it need to be in the PHP CVS? Derick Rethans - PHP: Scripting the Web - www.php.net - [EMAIL

[PHP-CVS] cvs: php4 /ext/standard basic_functions.c dir.c php_dir.h

2001-02-14 Thread Derick Rethans
derick Wed Feb 14 02:48:49 2001 EDT Modified files: /php4/ext/standard basic_functions.c dir.c php_dir.h Log: - Added the chroot function for changing root in a script. #- This can be usefull when using PHP in a shell environment, or when PHP # runs as CGI

[PHP-CVS] cvs: php4 / NEWS

2001-02-14 Thread Derick Rethans
derick Wed Feb 14 03:27:29 2001 EDT Modified files: /php4 NEWS Log: - Added the notification of the chroot function addition #- I forgot this with the initial commit Index: php4/NEWS diff -u php4/NEWS:1.590 php4/NEWS:1.591 --- php4/NEWS:1.590

Re: [PHP-CVS] cvs: php4 / configure.in /ext/standard basic_functions.cdir.c php_dir.h

2001-02-15 Thread Derick Rethans
On Thu, 15 Feb 2001, Sascha Schumann wrote: There might be more systems which do not support chroot, so we check for the existence of it. Additionally, if chroot is not supported, the warn_not_available function is invoked now. Thanx Sascha, I hope it's now really fixed :) Derick

[PHP-CVS] cvs: php4 /ext/standard rand.c

2001-02-19 Thread Derick Rethans
derick Mon Feb 19 11:20:47 2001 EDT Modified files: /php4/ext/standard rand.c Log: - Fix for bug 9277, two the same boundaries make sense in some cases Index: php4/ext/standard/rand.c diff -u php4/ext/standard/rand.c:1.22 php4/ext/standard/rand.c:1.23 ---

Re: [PHP-CVS] RE: [PHP-CVS-DAILY] cvs: php4 / ChangeLog

2001-02-21 Thread Derick Rethans
You can ubsubscribe form this list as described in the footer: To unsubscribe, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] Derick Rethans - PHP: Scripting the Web

Re: [PHP-CVS] cvs: php4 / Makefile.in configure.in /main build-defs.h.in /pear PEAR.php.in /sapi Makefile.in /sapi/cgi config.m4

2001-04-08 Thread Derick Rethans
On Sun, 8 Apr 2001, Stig Bakken wrote: * CGI version is always installed! Do we want this? I don't actually. It would be nice if the cgi build could be disabled. Regards, Derick Rethans - PHP: Scripting the Web

[PHP-CVS] cvs: php4 /ext/mcrypt mcrypt.c

2001-04-09 Thread Derick Rethans
derick Mon Apr 9 17:07:54 2001 EDT Modified files: /php4/ext/mcryptmcrypt.c Log: - Fix for bug #8839 - MINFO updated to use smart_str's Index: php4/ext/mcrypt/mcrypt.c diff -u php4/ext/mcrypt/mcrypt.c:1.46 php4/ext/mcrypt/mcrypt.c:1.47 ---

[PHP-CVS] cvs: php4 /ext/mcrypt mcrypt.c

2001-04-09 Thread Derick Rethans
derick Mon Apr 9 17:09:18 2001 EDT Modified files: /php4/ext/mcryptmcrypt.c Log: - Removed debug thing Index: php4/ext/mcrypt/mcrypt.c diff -u php4/ext/mcrypt/mcrypt.c:1.47 php4/ext/mcrypt/mcrypt.c:1.48 --- php4/ext/mcrypt/mcrypt.c:1.47 Mon Apr

Re: [PHP-CVS] cvs: php4 /ext/mcrypt mcrypt.c

2001-04-10 Thread Derick Rethans
of the minfo lines. Derick On Tue, 10 Apr 2001, Derick Rethans wrote: /php4/ext/mcrypt mcrypt.c Log: - Fix for bug #8839 - MINFO updated to use smart_str's Derick Rethans - PHP: Scripting the Web

Re: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-04-10 Thread Derick Rethans
it... will do in 5 mins. Derick Rethans - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] SRM: Site Resource Manager - www.vl-srm.net

[PHP] PHP 4.4.8RC1

2007-12-20 Thread Derick Rethans
. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ezcomponents.org | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DEV] PHP 4.4.8RC1

2007-12-20 Thread Derick Rethans
acceptable :) regards, Derick -- Derick Rethans http://derickrethans.nl | http://ezcomponents.org | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.4.8 Released!

2008-01-03 Thread Derick Rethans
Announcement: http://www.php.net/release_4_4_8.php Downloads:http://www.php.net/downloads.php#v4 Changelog:http://www.php.net/ChangeLog-4.php#4.4.8 regards, Derick -- Derick Rethans http://derickrethans.nl | http://ezcomponents.org | http://xdebug.org -- PHP General

[PHP] Xdebug 2 released.

2007-07-18 Thread Derick Rethans
Hello! After almost four years of work, Xdebug 2 is finally ready. With improved functionality and many new features it is ready to totally change the way you develop in PHP. Some of the new features and updates include improved stack traces, execution traces to files, code coverage analysis

[PHP] PHP 4.4.3 released

2006-08-03 Thread Derick Rethans
-- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.4.4RC1 released

2006-08-13 Thread Derick Rethans
properly. If all is well, final will be released within a week (next Thursday), most likely along with PHP 5.1.5. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] PHP 4.4.4 and 5.1.5 Released!

2006-08-17 Thread Derick Rethans
. The outlined issues can only be exploited locally, however, we still recommend that all users upgrade to either one of the new releases as soon as possible. Ilia Alshanetsky and Derick Rethans -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.4.5RC1

2007-01-05 Thread Derick Rethans
Hello! I packed PHP 4.4.5RC1 today, which you can find here: http://downloads.php.net/derick/php-4.4.5RC1.tar.bz2 ee9238175c6b6ecec8712954065451c4 http://downloads.php.net/derick/php-4.4.5RC1.tar.gz 5337c72e3d70fb88b932215957e250f8 Windows binaries will follow suit. Please test it carefully,

[PHP] PHP 4.4.9RC1

2008-07-22 Thread Derick Rethans
PHP 4.4 release. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ezcomponents.org | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DEV] PHP 4.4.9RC1

2008-07-25 Thread Derick Rethans
On Fri, 25 Jul 2008, Xuefer wrote: On Tue, Jul 22, 2008 at 3:57 PM, Derick Rethans [EMAIL PROTECTED] wrote: I packed PHP 4.4.1RC9 today, which you can find here: http://downloads.php.net/derick/ 4.4.9RC1? Uhm yes. regards, Derick -- HEAD before 5_3!: http://tinyurl.com/6d2esb http

[PHP] PHP 4.4.9 Released!

2008-08-07 Thread Derick Rethans
Hello, The PHP development team would like to announce the immediate availability of PHP 4.4.9. It continues to improve the security and the stability of the 4.4 branch and all users are strongly encouraged to upgrade to it as soon as possible. This release wraps up all the outstanding

[PHP] PHP 4.4.0RC1

2005-06-13 Thread Derick Rethans
. If there are problems a new RC will follow. Only critical bugs are going to be fixed between RC1 and RC2. You can find 4.4.0 RC1 at http://qa.php.net/~derick/php-4.4.0RC1.tar.bz2 regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http

[PHP] PHP 4.4.0 Released!

2005-07-11 Thread Derick Rethans
. For changes in PHP 4.4.0 since PHP 4.3.11, please consult the PHP 4 ChangeLog. Release Announcement: http://www.php.net/release_4_4_0.php Downloads:http://www.php.net/downloads.php#v4 Changelog:http://www.php.net/ChangeLog-4.php#4.4.0 regards, Derick -- Derick Rethans

[PHP] Re: PHP6 just became my worst nightmare.

2006-04-21 Thread Derick Rethans
Jochem Maas wrote: apparently calling a dynamic function using static syntax will cause an E_FATAL. ? That's just how OO design works... If you have a non-static method you can always have a $this- lingering in there. Now, if you call this method with the static syntax, $this suddenly

[PHP] PHP 4.4.3RC1 testing

2006-05-22 Thread Derick Rethans
somewhere in the middle of next week (around the 30th). If there are critical bugs found we will instead then release RC2. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] PHP 4.4.3RC2

2006-07-05 Thread Derick Rethans
of this month. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.4.1RC1

2005-10-07 Thread Derick Rethans
. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.4.1 has been released

2005-10-31 Thread Derick Rethans
Hello! PHP 4.4.1 is now available for download [1]. This version is a maintenance release, that contains numerous bug fixes, including a number of security fixes related to the overwriting of the GLOBALS array. All users of PHP 4.3 and 4.4 are encouraged to upgrade to this version. The full

[PHP] PHP 4.4.2RC1

2005-11-18 Thread Derick Rethans
it next tuesday. Especially test issues with mod_rewrite and Apache 2 please! regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 4.4.2RC2

2006-01-05 Thread Derick Rethans
, unless it's a critical bugs. Please confer with me first then. If everything goes well, we can release it somewhere at the end of next week. regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP General Mailing List (http://www.php.net

[PHP] PHP 4.4.2 released!

2006-01-13 Thread Derick Rethans
Hello! The PHP Development Team would like to announce the immediate release of PHP 4.4.2. This is a maintenance release that addresses a number of minor security problems and fixes a few regressions that shown up in PHP 4.4.1. All users of PHP 4 are recommended to upgrade to PHP 4.4.2. A

Re: [PHP-CVS] cvs: pear /Science Chemistry.php /Science/ChemistryAtom.php Atom_PDB.php Coordinates.php Element.php Macromolecule.phpMacromolecule_PDB.php Molecule.php Molecule_XYZ.php PDBFile.php PDBPa

2001-04-10 Thread Derick Rethans
hrm, is it really needed to add 3.6MB of stuff to the PHP cvs? Derick - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] SRM: Site Resource Manager - www.vl-srm.net

[PHP-CVS] cvs: php4 / TODO-4.1.txt

2001-04-13 Thread Derick Rethans
derick Fri Apr 13 16:52:15 2001 EDT Modified files: /php4 TODO-4.1.txt Log: - Added the note about function names Index: php4/TODO-4.1.txt diff -u php4/TODO-4.1.txt:1.1 php4/TODO-4.1.txt:1.2 --- php4/TODO-4.1.txt:1.1 Fri Apr 13 13:47:12 2001

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/mcrypt mcrypt.c

2001-04-18 Thread Derick Rethans
derick Wed Apr 18 02:48:39 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/mcryptmcrypt.c Log: - MFH (Bug #8839) Index: php4/ext/mcrypt/mcrypt.c diff -u php4/ext/mcrypt/mcrypt.c:1.45.2.1 php4/ext/mcrypt/mcrypt.c:1.45.2.2 ---

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/mcrypt mcrypt.c

2001-04-18 Thread Derick Rethans
derick Wed Apr 18 15:15:39 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/mcryptmcrypt.c Log: - MFH (bug #8839 again) Index: php4/ext/mcrypt/mcrypt.c diff -u php4/ext/mcrypt/mcrypt.c:1.45.2.2 php4/ext/mcrypt/mcrypt.c:1.45.2.3 ---

[PHP-CVS] cvs: php4 /ext/rtfm EXPERIMENTAL

2001-04-25 Thread Derick Rethans
derick Wed Apr 25 14:10:14 2001 EDT Added files: /php4/ext/rtfm EXPERIMENTAL Log: - Marking this extension as EXPERIMENTAL -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

[PHP] Re: [PHP-DEV] XML-Presentationsystem from the Conf2002

2002-12-27 Thread Derick Rethans
got it at home and could send me a quick tar-ball of it per mail?? It's in CVS under the modules 'pres' and 'presentations', feel free to have a look. Derick -- - Derick Rethans http

[PHP] Re: [PHP-DEV] XML-Presentationsystem from the Conf2002

2002-12-27 Thread Derick Rethans
On Fri, 27 Dec 2002, Derick Rethans wrote: On Fri, 27 Dec 2002, Tobias Schlitt wrote: I saw the nice-looking presentationsystem, written in PHP and using XML, on the PHP-Conference this year. I liked that very much and think it's must for every PHP-related presentation. So, can anyone

[PHP] PHP Look Back 2002

2002-12-30 Thread Derick Rethans
at the bottom of the page. Have fun reading! Derick -- - Derick Rethans http://derickrethans.nl/ JDI Media Solutions http://www.jdimedia.nl/ PHP Magazine - PHP Magazine

[PHP] Re: [PHP-QA] Re: [PHP] PHP 5.0.0 Beta 1

2003-06-29 Thread Derick Rethans
best left to those that read the future by examining animal entrails. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http

Re: [PHP] disabling functions

2003-06-30 Thread Derick Rethans
that read the future by examining animal entrails. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php-mag.net

Re: [PHP] Concatenate

2003-06-30 Thread Derick Rethans
. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php-mag.net/ - -- PHP

Re: [PHP] php5 and mysql licences

2003-06-30 Thread Derick Rethans
license or a commerical license). regards, Derick -- Interpreting what the GPL actually means is a job best left to those that read the future by examining animal entrails. - Derick Rethans

RE: [PHP] php5 and mysql licences

2003-06-30 Thread Derick Rethans
left to those that read the future by examining animal entrails. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php

Re: [PHP] php-general as REPLY TO

2003-06-30 Thread Derick Rethans
clients have the reply-all function for this. Derick -- Interpreting what the GPL actually means is a job best left to those that read the future by examining animal entrails. - Derick Rethans

Re: [PHP] Piping print_r output to a variable

2003-06-30 Thread Derick Rethans
that read the future by examining animal entrails. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php-mag.net

Re: [PHP] PHP5.0.0 b1 texts' misunderstandings (to those who haveproblems with install too)

2003-06-30 Thread Derick Rethans
. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php-mag.net/ - -- PHP

Re: [PHP] php-general as REPLY TO

2003-06-30 Thread Derick Rethans
On Mon, 30 Jun 2003, Doug Essinger-Hileman wrote: On 30 Jun 2003 at 21:23, Derick Rethans wrote: I'm wondering why the listed Reply To address is not [EMAIL PROTECTED] Thing would be so much easier to just reply than cut-n-paste when reply to the entire list on a subject (which

RE: [PHP] web site security: how to hide login info for mysql-connection

2003-06-30 Thread Derick Rethans
. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php-mag.net/ - -- PHP General Mailing List (http://www.php.net

Re: [PHP] php-general as REPLY TO

2003-06-30 Thread Derick Rethans
-- Interpreting what the GPL actually means is a job best left to those that read the future by examining animal entrails. - Derick Rethans http://derickrethans.nl

[PHP] Re: [PHP-QA] Re: [PHP-DEV] Re: PHP 5.0.0 Beta 1? better called alphazero

2003-07-02 Thread Derick Rethans
what the GPL actually means is a job best left to those that read the future by examining animal entrails. - Derick Rethans http://derickrethans.nl/ International PHP Magazine

Re: [PHP] Re: [PHP-QA] Re: [PHP-DEV] Re: PHP 5.0.0 Beta 1? bettercalled alph...

2003-07-02 Thread Derick Rethans
the future by examining animal entrails. - Derick Rethans http://derickrethans.nl/ International PHP Magazine http://php-mag.net

Re: [PHP] Vulvan Logic SRM - does anyone use it?

2003-02-10 Thread Derick Rethans
-- - Derick Rethans http://derickrethans.nl/ PHP Magazine - PHP Magazine for Professionals http://php-mag.net/ - -- PHP General Mailing List (http

[PHP] Re: [PHP-DEV] RE: PHP Security Advisory: CGI vulnerability in PHPversion 4.3.0

2003-02-17 Thread Derick Rethans
! - Derick Rethans http://derickrethans.nl/ PHP Magazine - PHP Magazine for Professionals http://php-mag.net

[PHP] Re: [PHP-DEV] php4.3.0-pre2 - win32 binaries

2002-10-28 Thread Derick Rethans
http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php -- --- Derick Rethans http://derickrethans.nl/ JDI Media Solutions --[ if you hold a unix shell to your

[PHP] Re: [PHP-DOC] Re: [PHP] preg_replace_callback

2002-11-18 Thread Derick Rethans
nsub.php -- PHP Documentation Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- --- Derick Rethans http://derickrethans.nl/ J

[PHP] Re: Undefined Variable

2002-11-23 Thread Derick Rethans
-- - Derick Rethans http://derickrethans.nl/ PHP Magazine - The PHP Magazine for Professionals - http://php-mag.net

[PHP] Re: extension can't be found

2002-11-23 Thread Derick Rethans
/php/extensions/no-debug-non-zts-20020429. Derick -- - Derick Rethans http://derickrethans.nl/ PHP Magazine - The PHP Magazine for Professionals - http://php-mag.net

[PHP] Re: Post again. question about Animated GIF

2002-11-23 Thread Derick Rethans
out will only be the first frame in the original GIF file; there is nothing to do about this. -- - Derick Rethans http://derickrethans.nl/ PHP Magazine - The PHP Magazine for Professionals

Re: [PHP] Re: put result of include into a variable

2002-11-23 Thread Derick Rethans
-- - Derick Rethans http://derickrethans.nl/ PHP Magazine - The PHP Magazine for Professionals - http://php-mag.net

[PHP] Re: Undefined Variable

2002-11-23 Thread Derick Rethans
setting defaults to off. See http://www.php.net/release_4_2_0.php for more info. This change was necessary as part of our efforts to make PHP scripting more secure and portable. -- - Derick Rethans

[PHP] Re: Some error in file upload.

2002-11-23 Thread Derick Rethans
($WINDIR) and it should work. I wonder, which book is this? -- - Derick Rethans http://derickrethans.nl/ PHP Magazine - The PHP Magazine for Professionals - http://php-mag.net

[PHP] Re: amp; in Query String

2002-11-25 Thread Derick Rethans
. -- - Derick Rethans http://derickrethans.nl/ PHP Magazine - PHP Magazine for Professionals http://php-mag.net/ - -- PHP General

[PHP] Re: Making verification code harder to OCR?

2002-11-25 Thread Derick Rethans
); imageline($authimage,0,mt_rand(0,15),40,mt_rand(0,15),$black); imageline($authimage,0,mt_rand(0,15),40,mt_rand(0,15),$black); imagepng($authimage); imagedestroy($authimage); ? -- - Derick Rethans

[PHP] Re: function args declared by-reference, with default value?

2002-11-25 Thread Derick Rethans
foo($param = bar) is there a way to declare an argument with both pass-by-reference and default-value properties? No, but this will be supported by Zend Engine 2, which will drive PHP 5 and higher. -- - Derick Rethans

[PHP] Re: object passing by reference

2002-11-27 Thread Derick Rethans
-- - Derick Rethans http://derickrethans.nl/ PHP Magazine - PHP Magazine for Professionals http://php-mag.net/ - -- PHP General Mailing List

[PHP] Re: problem with https

2002-11-27 Thread Derick Rethans
not found and when i am running without s in the https://; the page is being displayed properly , Do any1 have any idea What does the apache log file (error_log and access_log) tell you about this? -- - Derick Rethans

  1   2   >