Re: [PHP-DEV] Change to timeout use

2005-12-21 Thread Andreas Schiffler
to wait until someone is motivated enough. OK. I understand that. I'll try my best to come up with a patch set then. Can someone point me to some documentation on how to do this? Is someone willing to assist me in making this patch? Bye Andreas --Wez. On 12/21/05, Andreas Schiffler [EMAIL

Re: AW: [PHP-DEV] Re: PDM Meeting Notes

2005-11-25 Thread Andreas Ahlenstorf
Am 25.11.2005 um 10:51 schrieb Matthias Pigulla: Because of bugs in the safe_mode implementation (forgetting some checks?) or conceptual problems? Safe mode doesn't work 'cos there are lots of third party libraries which PHP relies on and don't take care of the safe mode. That's why you

Re: AW: [PHP-DEV] Re: PDM Meeting Notes

2005-11-25 Thread Andreas Ahlenstorf
That's why you can't assure security... Please read: ... this special type of security... Regards, A. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Request for Threads or SRM

2005-11-24 Thread Andreas Korthaus
, not separated for each user. best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] dropping curly braces

2005-11-18 Thread Andreas Korthaus
problem. best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] dropping curly braces (was: PHP 5.1.0R5 Released)

2005-11-17 Thread Andreas Korthaus
are probably used to char arrays..., but I'm quite sure that it is more difficult to learn/understand and USE/READ(!) for the average PHP programmer. IMO it's very useful to have not the same syntax for arrays and strings. Can someone tell me the reason for this decision? best regards Andreas

Re: [PHP-DEV] dropping curly braces

2005-11-17 Thread Andreas Korthaus
think the {} - [] change will reduce readability of scripts, because both programmers and grep can't differ arrays from strings using the [] syntax anymore. However, thanks a lot for your time/explanation! best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List

Re: [PHP-DEV] dropping curly braces

2005-11-17 Thread Andreas Korthaus
is used a lot, and which is quite useful to increase readability of code as described in my other postings. I have no problem with changing my code if BC breaks, but in this case I'd be sad to loose the useful convention [] for arrays and {} for strings. best regards Andreas -- PHP Internals

Re: [PHP-DEV] dropping curly braces

2005-11-17 Thread Andreas Korthaus
wrong. For me it's more important to have the possibility to use a convention (like $arrays[], $strings{}) in a project, not to drop something. Looks like if I will loose this possibility soon. best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit

Re: [PHP-DEV] PHP 6.0 Wishlist

2005-10-22 Thread Andreas Korthaus
concurrency issues. Perhaps make a $_PERSISTENT variable only available for the script which has created it (by saving the path too, but if you move/rename..., and not very flexible anymore). Best regards Andreas PS: I've read the discussion on this list before ;-) -- PHP Internals - PHP Runtime

Re: [PHP-DEV] Issues with PHP 5 on Windows 98

2005-09-30 Thread Andreas Ahlenstorf
Am 27.09.2005 um 15:47 schrieb Wez Furlong: My suggestion is to start with a fresh copy of win98 and install only Just for information: It works now. I tried it with a fresh install of Windows 98, but there's still the problem with the missing export. After an install of Internet

Re: [PHP-DEV] timezones date() breakage

2005-09-28 Thread Andreas Korthaus
with different interface in the documentation. Or why is the change of old functions like date() needed/useful? best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] timezones date() breakage

2005-09-28 Thread Andreas Korthaus
to PHP. If there is an OO API for the new code some day, I'll be very happy ;-) best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Issues with PHP 5 on Windows 98

2005-09-27 Thread Andreas Ahlenstorf
Hi, I try do get PHP 5.0 running on a fresh Windows 98 box. Unfortunately there are some issues with some missing dlls. I was able to sort most of them out (e.g. missing ODBC32.dll), but there is at least one that I'm unable to fix. PHP (php5ts.dll) complains about a missing OLEAUT32.DLL

Re: [PHP-DEV] Issues with PHP 5 on Windows 98

2005-09-27 Thread Andreas Ahlenstorf
Am 27.09.2005 um 13:18 schrieb James Ellis: Why are you using Windows 98.. it's full of holes and has been superseded? For myself, I'm using a brand new G5 from that fruit company in California, running that shiny and blinking os (I really love it and I would never switch back). But we

Re: [PHP-DEV] Issues with PHP 5 on Windows 98

2005-09-27 Thread Andreas Ahlenstorf
Am 27.09.2005 um 13:47 schrieb Steph: Any idea which export is missing? http:// www.dependencywalker.com/ has an easy-to-use tool for checking .dlls. A great hint. I already looked for such a tool but I never came across the right keywords for Google ;) I put the DependencyWalker image

Re: [PHP-DEV] Issues with PHP 5 on Windows 98

2005-09-27 Thread Andreas Ahlenstorf
Am 27.09.2005 um 15:47 schrieb Wez Furlong: It sounds like your system is broken. You should never copy these low-level system DLLs between windows versions. I'll never try it again :) My suggestion is to start with a fresh copy of win98 and install only MS updates to get the DLLs that

[PHP-DEV] Re: ref fix revisited

2005-09-14 Thread Andreas Korthaus
, not only notice. best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ref fix revisited

2005-09-14 Thread Andreas Ahlenstorf
Am 14.09.2005 um 15:10 schrieb Derick Rethans: Of course it does, you have a ) too much. Besides this, the following I should drink more coffee... script does not make a fatal error: ?php $name = derick; array_pop(explode('.', $name)); ? Fatal error: Only variables can be passed by

Re: [PHP-DEV] ref fix revisited

2005-09-14 Thread Andreas Ahlenstorf
Am 14.09.2005 um 15:40 schrieb Derick Rethans: ?php $filename = sprintf('%s.%s', md5(uniqid(rand(), true)), array_pop (explode('.', $name))); echo $filename; D'oh - I see it. My ISP changed the PHP version once again. It's now PHP 5.0.5. I'm very very sorry for the confusion. A. --

[PHP-DEV] Re: Moving to PHP5.1 and Apache 2.2 next year, need help

2005-08-09 Thread Andreas Korthaus
high load because of the arguments already mentioned in this thread and because most developers don't use threaded setups today. best regards, Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Moving to PHP5.1 and Apache 2.2 next year, need help

2005-08-09 Thread Andreas Korthaus
, it's a non-blocking webserver with only one process. The one process cares about keep-alives... and delegates handling of PHP-Requests to a number of loadbalanced, persistent PHP Processes using FastCGI. Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit

[PHP-DEV] No recent Win32 snapshots of PHP 5.0.x available

2005-07-27 Thread Andreas Ahlenstorf
Hi, The last snapshot of PHP 5.0.x (including the PECL extensions) for Win32 is from Jul 22. But I need one from today. Is this delay desired? Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] SQlite row size

2005-07-19 Thread Andreas Ahlenstorf
and without the required knowledge... Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] SQlite row size

2005-07-19 Thread Andreas Ahlenstorf
crappy; if you're serious about it, I'd suggest upgrading to PHP 5.1 and using PDO SQLITE instead. SQLite 3 (which it uses) actually has a concept of binary data. I'll think about it - does the row size limit still exist in SQLite 3? Andreas -- PHP Internals - PHP Runtime Development Mailing List

Re: [PHP-DEV] PHP 5.1

2005-06-13 Thread Andreas Korthaus
of tests against the amount of functionality provided. OK, I wrote some small scripts and it worked quite nice. Very good work, it's (or will be...) a really useful extension! I hope it will be added to php-core some day ;-) best regards Andreas -- PHP Internals - PHP Runtime Development

Re: [PHP-DEV] PHP 5.1

2005-06-13 Thread Andreas Korthaus
Derick Rethans wrote: On Fri, 10 Jun 2005, Andreas Korthaus wrote: Will pecl_http be included? (AFAIR something like that has been discussed earlier this year on this list) We have the policy of not adding more very specialized extensions to the PHP core distribution - those extensions

Re: [PHP-DEV] PHP 5.1

2005-06-10 Thread Andreas Korthaus
. Absolutely! I'm really looking forward to all these great, new features! (I have scripts running 40-50% faster with 5.1-dev; PDO, xmlreader, pecl_http work great...) kind regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 5.1

2005-06-10 Thread Andreas Korthaus
along. Absolutely! I'm really looking forward to all these great, new features! (I have scripts running 40-50% faster with 5.1-dev; PDO, xmlreader, pecl_http work great...) kind regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net

[PHP-DEV] Re: pear package in 4.3.x releases

2005-04-26 Thread Andreas Korthaus
packages (which is a good idea IMHO) all users (not only superusers) need a reliable tool for installation/management (also without shell-account). best regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] state of PHP5 support in APC

2005-04-15 Thread Andreas Korthaus
eAccelerator. First it looked nice and seemed to work with PHP5, but I got some errors with PEAR::MDB2 (something with constructors I think). Can someone estimate how far away we are from a working PHP5 release? Thanks! best regards, Andreas -- PHP Internals - PHP Runtime Development Mailing List

[PHP-DEV] Re: state of PHP5 support in APC

2005-04-15 Thread Andreas Korthaus
I'm sorry, should have gone to pecl.dev! -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: PDO wiki

2005-03-17 Thread Andreas Korthaus
, etc. I also agree. regards Andreas -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: PHP 5 RC3RC2

2004-06-08 Thread Andreas Goetz
with tests. Thanks, Andreas Andi Gutmans [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Please test. If nothing serious comes up I'll release in the few days. http://snaps.php.net/~andi/php-5.0.0RC3RC2.tar.bz2 http://snaps.php.net/~andi/php-5.0.0RC3RC2.tar.gz Andi -- PHP Internals

[PHP-DEV] CVS Account Request: ott

2003-11-02 Thread Andreas Otterstein
translation php documentation into german -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6