Re: [PHP-DEV] Git Migration Status Update

2012-01-26 Thread Sascha Schumann
Hi David, great work! Cheers Sascha On Wed, 25 Jan 2012, David Soria Parra wrote: > Hi Internals, > > we are a few weeks into the git migration, so I want to give you a short > status update. > > - web/ is completly migrated. all php websites are updating from > the git repositories now

Re: [PHP-DEV] Build system support for stock FreeBSD autoconf ports

2005-03-29 Thread Sascha Schumann
The way some systems start to treat autoconf (installing multiple versions in an absolutely braindamaged way) is not something we should support. I suggest whoever is bothered by FreeBSD doing stupid things should go to the ports maintainer and complain to him. - Sascha -- P

Re: [PHP-DEV] Build system support for stock FreeBSD autoconf ports

2005-03-29 Thread Sascha Schumann
Yes, use different install prefixes. /opt/autoconfX.XX /opt/autoconfY.YY And add the suitable prefix to your PATH. But don't change the names of the utilities.. - Sascha On Tue, 29 Mar 2005, Roman Neuhauser wrote: # [EMAIL PROTECTED] / 2005-03-29 16:46:37 +0200: The way

Re: [PHP-DEV] [PATCH] Modifications for ext/session/

2005-04-26 Thread Sascha Schumann
They are not helpful for various reasons. e.g. if you need to ask whether a session was started, your architecture is broken (a central place needs to manage sessions; that single place must know whether a session has been started). Also, the concept of session_id_exists is fun

Re: [PHP-DEV] [PATCH] Modifications for ext/session/

2005-04-26 Thread Sascha Schumann
Nope. - Sascha On Tue, 26 Apr 2005, Hans Lellelid wrote: Sascha Schumann wrote: They are not helpful for various reasons. e.g. if you need to ask whether a session was started, your architecture is broken (a central place needs to manage sessions; that single place must

[PHP-DEV] #28074 [Opn->Asn]: Fast CGI standard compliance : stderr should be written in a FCGI stderr stream (fwd)

2005-04-28 Thread Sascha Schumann
I'm more of the mindset that whoever breaks it, also fixes it. My current 'fix' would simply revert that patch. If you agree with that, I will happily follow through. - Sascha -- Forwarded message -- Date: Thu, 28 Apr 2005 12:58:05 +0200 From: [EMAIL PROTECTED]

[PHP-DEV] Re: #28074 [Opn->Asn]: Fast CGI standard compliance : stderr should be written in a FCGI stderr stream (fwd)

2005-04-28 Thread Sascha Schumann
Thanks, Jani. - Sascha On Thu, 28 Apr 2005, Jani Taskinen wrote: I addded fastcgi.logging ini option. Set that to 0 and you'll get the original behaviour back. --Jani On Thu, 28 Apr 2005, Sascha Schumann wrote: I'm more of the mindset that whoever breaks it, also f

Re: [PHP-DEV] Re: References Problem Patch

2005-05-30 Thread Sascha Schumann
Is the argument about changing struct temp_variable? Why cannot the desirable behaviour be obtained without changing that particular structure? - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 5.1

2005-06-06 Thread Sascha Schumann
So +1 from me. (wasn't there a patch for this already somewhere?) PHP has enough horrid language misfeatures. It does not need another one. Seeing the potential damage of adding goto to the language, I can only give it a -1. - Sascha -- PHP Internals - PHP Runtime Developm

Re: [PHP-DEV] PHP 5.1

2005-06-07 Thread Sascha Schumann
As for my own example, many state machines make extensive use of goto to avoid recursive calls. Goto is not required for that. State machines such as the following state1: ... goto state99; state99: ... goto state2;

Re: AW: [PHP-DEV] dropping curly braces

2005-11-18 Thread Sascha Schumann
And it really should not be going away in PHP 6 either. I don't get why you are suggesting to expend so many resources as part of a migration effort while it is obvious that there are no advantages at all in dropping {}. It makes no sense. - Sascha On Fri, 18 Nov 2005, Rasm

Re: AW: [PHP-DEV] dropping curly braces

2005-11-18 Thread Sascha Schumann
Hey, you're still alive? Alive and kicking. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: AW: [PHP-DEV] dropping curly braces

2005-11-18 Thread Sascha Schumann
whether we want to remove {} in PHP 6. I didn't think people had such strong feelings about it. From my checks with people, most had no idea you could even use {}'s on strings. -Rasmus Sascha Schumann wrote: And it really should not be going away in PHP 6 either. I don

Re: AW: AW: [PHP-DEV] dropping curly braces

2005-11-18 Thread Sascha Schumann
16 Nov 2005, PHP 5.1 Release Candidate 5 - Added an E_STRICT warning on the usage of {} for accessing of string offsets. (Ilia) I suggest removing that warning immediately until the matter is resolved. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe

Re: [PHP-DEV] Re: Labeled Breaks (not the G-word)

2005-11-24 Thread Sascha Schumann
So, I'm +1 on the patch with sane names and removed restrictions; Agreed. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: PHP 5.1 (Or How to break tousands of apps out there)

2005-11-25 Thread Sascha Schumann
No, as this breaks backwards compability. I have code written for this and that is going to be released. If the class constants are removed, you will break code that is out there. There were similar reasons why Wez didn't want to change the odd PDO method because people were running it production

Re: [PHP-DEV] Re: PHP 5.1 (Or How to break tousands of apps out there)

2005-11-25 Thread Sascha Schumann
It's definitely not the most elegant way, I agree there. But there was also no sneaking as it was discussed months before, and it was actually Ilia who suggested doing it in PHP 5.1.0 and not 5.1.1. Then I have to ask both of you: why is there no mentioning in the release notes or the up

Re: [PHP-DEV] Re: PHP 5.1 (Or How to break tousands of apps out there)

2005-11-25 Thread Sascha Schumann
On Fri, 25 Nov 2005, Derick Rethans wrote: On Fri, 25 Nov 2005, Sascha Schumann wrote: It's definitely not the most elegant way, I agree there. But there was also no sneaking as it was discussed months before, and it was actually Ilia who suggested doing it in PHP 5.1.0 and not

Re: [PHP-DEV] Re: PHP 5.1 (Or How to break tousands of apps out there)

2005-11-25 Thread Sascha Schumann
On Fri, 25 Nov 2005, Ilia Alshanetsky wrote: Sascha Schumann wrote: Then I have to ask both of you: why is there no mentioning in the release notes or the upgrading guide regarding "Date" being reserved for PHP now? There are notes in the guide, and I quote: I&#x

Re: [PHP-DEV] Re: PHP 5.1 (Or How to break tousands of apps out there)

2005-11-25 Thread Sascha Schumann
Bottom line there is a problem and we need a fix for it. One solution that has been suggested is to revert the date class and release 5.1.1, but this means we pretty much deny ourselves the ability to have a native "Date" class in PHP. Is this really the only fix we can come up with? There i

Re: [PHP-DEV] reducing open calls in php

2006-02-01 Thread Sascha Schumann
Or simply use eAccelerator which does not cause those open calls. Rasmus, is that behaviour by design? I deinstalled APC because of this 'characteristic' last week. It was killing a high-traffic site. - Sascha On Thu, 2 Feb 2006, Rasmus Lerdorf wrote: > I think the m

Re: [PHP-DEV] reducing open calls in php

2006-02-01 Thread Sascha Schumann
On Thu, 2 Feb 2006, Rasmus Lerdorf wrote: > Sascha Schumann wrote: > > Or simply use eAccelerator which does not cause those open > > calls. > > Which doesn't support PHP 5.1 very well. Which is pretty fine for us PHP 4.4 users. The site where I rei

Re: [PHP-DEV] GOTO and/or BREAK LABEL

2006-03-07 Thread Sascha Schumann
On Tue, 7 Mar 2006, Dmitry Stogov wrote: > Hi, > > Because of some confused people I reverted "break label" patch and post it > for discussion once again together with GOTO patch. > > Please reviw and vote. > > 1) goto and break label > 2) goto only (like C) > 3) break label only (like Java) >

RE: [PHP-DEV] Re: [ZEND-ENGINE-CVS] cvs: ZendEngine2 / zend_compile.czend_compile.h zend_execute_API.c zend_globals.h zend_language_parser.y zend_language_scanner.lzend_opcode.c zend_vm_def.h zend_vm_

2006-03-10 Thread Sascha Schumann
> If you like "goto" instead of "jump", please open yet another vote. > I am indifferent with name. Let's call it goto. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] messing with branch prediction

2006-06-20 Thread Sascha Schumann
> Instead of guessing branch probabilities, why not measure them? Or, simply tell the compiler what you expect. Sometimes, GCC predicts incorrectly - if-branches are usually assumed _not_ to be executed. if (expect_true(x)) { foo(); } with.. #ifdef HAVE_BUILTIN_

Re: [PHP-DEV] Annoucing PHP 5.4 Alpha 1

2010-08-10 Thread Sascha Schumann
> They aren't hints. It is strict typing and in its current form I would > ask you guys not to call the 5.4 release PHP. Because it won't be. Fully agreed. I'd suggest "NoPHP". "AntiPHP" might also work. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubs

RE: [PHP-DEV] CVS Account Request: jorton

2003-03-13 Thread Sascha Schumann
On Thu, 13 Mar 2003, James Cox wrote: > I asked joe to ask for commit privs as he's the redhat guy doing PHP work, > and has useful stuff to commit. I think that we can handle the 20 line patch manually for now. What's up with this internals list now? Should not php-dev be decommiss

Re: [PHP-DEV] CVSspam

2003-03-24 Thread Sascha Schumann
On Mon, 24 Mar 2003, Rasmus Lerdorf wrote: > How many people would this actually help and how many would it annoy? I > know it would annoy the hell out of me if every CVS commit included a > bunch of useless HTML. All the Pine and Mutt users would have absolutely > no use for this. It would

Re: [PHP-DEV] CVSspam

2003-03-24 Thread Sascha Schumann
On Mon, 24 Mar 2003, Sebastian Bergmann wrote: > Sascha Schumann wrote: > > if they would add a plain text mode, it might be something to switch > > to, because it is actively maintained in contrast to our scripts. > > Have a look at > > http://sourceforg

[PHP-DEV] cvs commits disabled for now

2003-03-24 Thread Sascha Schumann
There are on-going problems with the cvs setup, so we are disabling commits until further notice. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ZTS performance

2003-03-24 Thread Sascha Schumann
> That's one of the reasons, I would guess. The libc memory manager is not > very efficient with multiple threads accessing it at once, it has locks > (which is one of the reasons we implemented our own in ZE2). It's > definitely one of the reasons, and as you know, performance penalties > accumu

Re: [PHP-DEV] Session store in memory.

2003-03-26 Thread Sascha Schumann
> ack, that's awful! Session id's aren't unique across clusters of > machines. You'll risk session corruption. They are not guranteed to be unique, even on a single host. Spreading your load across multiple machines actually decreases the probability of a collision, because the

Re: [PHP-DEV] Session store in memory.

2003-03-26 Thread Sascha Schumann
> There's also the problem of file locking on nfs mounts. That's true for 3-5 year old Linux boxes. Try running a proper NFS setup. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Namespaces bug

2003-03-26 Thread Sascha Schumann
> The syntax is meaningless and confusing if the program does not operate > the way it is written. By all sensible considerations, B should be > local to A. Since it is not, the syntax should cause a parser error, > and the same with namespaces. And then what happens with that stuff > when, at s

Re: [PHP-DEV] Session store in memory.

2003-03-26 Thread Sascha Schumann
> Last I checked there were reliability problems with locking > implementations across NFS on many UNIXes. Well, if you want to deploy a NFS-based web cluster, you will very likely not choose some heterogeneous setup with incompatible NFS implementations. As if that was not obviou

Re: [PHP-DEV] Session store in memory.

2003-03-26 Thread Sascha Schumann
> Or you implement a storage architecture that doesn't rely on unreliably > implemented OS features. George, I would appreciate some constructive messages from you. This thread contained mostly FUD from your side. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To

Re: [PHP-DEV] Session store in memory.

2003-03-26 Thread Sascha Schumann
> That's a short list. Concerning systems which have been phased out a long time ago, even at organizations with strict policies. You occassionally find a SunOS 4 box from 1990, but would you integrate it into a web cluster? I don't think so. Sharing session data over a netw

Re: [PHP-DEV] socket_iovec_alloc segfault && security advisory

2003-03-26 Thread Sascha Schumann
> I thought Siberia is much further, then PECL =) > By the way, in Russian "PECL" sounds almost like a word, that > means "hell".. In German, it sounds like "pimple". I've always been saying that it was a bad choice. - Sascha -- PHP Internals - PHP Runtime Development Mailing List

Re: [PHP-DEV] lcg

2003-03-30 Thread Sascha Schumann
On Mon, 31 Mar 2003, Marcus Börger wrote: > Hi Sascha, > > could you have a look at this Fixed - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] further segfaults in php

2003-04-01 Thread Sascha Schumann
Here are some further functions which directly or indirectly cause a segfault. In some cases, the prior function invocation screwed up the engine internals, so that the next function call resulted in a segfault. How to reproduce: 1. wget http://schumann.cx/do_crash.txt

Re: [PHP-DEV] further segfaults in php

2003-04-01 Thread Sascha Schumann
And some more (the 13 should have been 0 in the script): bcsub('',$maxn); dbase_open($maxs,$maxn); exif_imagetype($maxn); > ob_start(); > > socket_iovec_alloc($maxn,$maxn,$maxn); > > exif_thumbnail('',$maxs,$maxn); > > mb_ereg('',$maxs,$maxn); > > mb_ereg_match

Re: [PHP-DEV] further segfaults in php

2003-04-01 Thread Sascha Schumann
Extending the list, now also testing with an empty array(). i18n_convert('','',$mina); mb_convert_encoding('','',$mina); array_pad($mina,$maxn,$maxn); setlocale($maxn,$mina,$maxn); unregister_tick_function($maxn); xml_parser_create($maxs); > bcsub('',$maxn); >

Re: [PHP-DEV] Doc Comments cause parser errors

2003-04-01 Thread Sascha Schumann
On Wed, 2 Apr 2003, Andi Gutmans wrote: > AFAIK, doc comments are for classes and functions only. I think this is > what's important because interfaces are functions not variables. Hm, so my PHP 4-stylish code would cause a parse error, if it contained a valid character like a "*" after t

[PHP-DEV] signed_multiply_long

2003-04-02 Thread Sascha Schumann
PHP: - the engine needs to verify whether the result of a integer multiplication fits into its integral type (script context) - the memory allocator has to ensure that no integer overflows happen Your input is appreciated. - Sascha/* Copyright (c) 2003 Sascha

[PHP-DEV] Re: [PHP-CVS] cvs: php4(PHP_4_3) / TODO_SEGFAULTS

2003-04-03 Thread Sascha Schumann
> -ob_start (3) > +ob_start (3) (Unable to reproduce - Moriyoshi) I still see them here. The segfault disappears when only valid output_handlers are used (the second chunk of the patch achieves that). Unless I'm missing something, there really is no purpose in preserv

Re: [PHP-DEV] If you want to avoid annoying CS commits

2003-04-04 Thread Sascha Schumann
Sterling, you are missing some important points here. > Geeze Luise, its not that hard, and the coding standards are there for a > (good) reason. If you object to some of the standards, discuss that, If you look at my code, 99% of it follows the coding styles, because I've adopted th

Re: [PHP-DEV] If you want to avoid annoying CS commits

2003-04-04 Thread Sascha Schumann
Derick, your attempts at setting rules are misguided. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] If you want to avoid annoying CS commits

2003-04-04 Thread Sascha Schumann
> I'm not setting any rules, I'm just trying to push ways of effective > collaboration due to the adoption of the same standards for everbody. You are in no position to push anything. Try 'encouraging' or 'convincing' the next time. - Sascha -- PHP Internals - PHP Runtime Developme

Re: [PHP-DEV] If you want to avoid annoying CS commits

2003-04-04 Thread Sascha Schumann
> The difference between 'pushing' and 'encouraging' is tought in > management school. The semantical difference is NULL. Derick, you need to realize that you lack authority. Someone without authority cannot push anything what so ever. Or to put it differently: A bully pushes.

Re: [PHP-DEV] configure error under solaris in PHP 4.3.2

2003-05-29 Thread Sascha Schumann
On Wed, 28 May 2003, Uwe Schindler wrote: > during configure of PHP 4.3.2-RC3 under solaris 9 the following occurs: > checking for dlfcn.h... no > > this leads to the fact that no dynamic things never work and compiler > warning that "dlsym" is undefined occurs. This header file is available > und

Re: [PHP-DEV] configure error under solaris in PHP 4.3.2

2003-05-29 Thread Sascha Schumann
On Thu, 29 May 2003, Uwe Schindler wrote: > Still not working in php4-STABLE-200305291130: Look at config.log, locate the dlfcn.h check and you will see why the check is failing. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.

Re: [PHP-DEV] serialize segfault

2003-06-04 Thread Sascha Schumann
> Can anyone give me a hand with tracking down the problem? Did you try a more stable compiler already? - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] serialize segfault

2003-06-04 Thread Sascha Schumann
On Wed, 4 Jun 2003, Chris wrote: > Which would be better to try, 2.95x or 3.x? Our codebase has been exposed to 2.95 mostly, so going with that would be wise. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CVS Account Request: sp

2003-06-12 Thread Sascha Schumann
On Thu, 12 Jun 2003, Sebastian-Hendrik Picklum wrote: > ID-Change: Sascha Schumann told me to re-apply. Need access to > PHPDOC and PHPDOC-DE. Thanks in advance! Granted. - Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.p

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
Fine with the concept. If you move the additional check (newlen < SMART_STR_START_SIZE) and preallocation into the if (!(d)->c) branch, the changes won't affect the common code path. > @@ -47,7 +51,11 @@ > if (!(d)->c) (d)->len = (d)->a = 0;

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
On Wed, 18 Jun 2003, Stanislav Malyshev wrote: > SS>> If you move the additional check (newlen < > SS>> SMART_STR_START_SIZE) and preallocation into the if (!(d)->c) > SS>> branch, the changes won't affect the common code path. > > IMO, the common code path is that of SMART_STR_START_S

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
> BTW, why do you think "make test" is a bad test of memory allocation > patterns? What do you propose as a better test? make test is synthetic. My primary use of smart_str involves IRCG based application. > That's very bad news, because actually my test show that about 95% of > mallocs

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
> In fact, that was initial though behind all my tests - to see how many > small blocks PHP allocates, what are these small blocks and how well they > are cached. If anybody is interested in working or it or has suggestions > about that - I can share my thoughts. If you are concerned about PHP

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
(I don't have the time right now to write a lengthy reply) 1. malloc is expensive on some systems, and less expensive on many others. It really depends. 2. some mallocs (Linux, Solaris probably) are optimized for non-contentious allocations in threaded contexts (

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
> This might actually be a very good idea, since it can likely improve > performance a lot by having a pool of zval-sized blocks (I have no idea > of how big they are). Have you thought about how to implement it in a > good way? Free lists already exist. - Sascha -- PHP Internals - PHP

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
> That's good, but that's only one step. Some system mallocs are very > inefficient on small blocks so it might be very worthwhile to grab a > "chunk" of, say, 64k, instead of many small mallocs of 20 bytes. How do you know that this is a significant problem? Quantify first, optimize lat

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
> fairly certain that doing 100 000 allocations of 20 bytes is a whole lot > 1) slower and 2) more memory consuming than allocating 2 megs at once. Of course. That's not the point though. The point is whether the difference matters in the global picture. You can optimize almost ever

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
On Wed, 18 Jun 2003, Per Lundberg wrote: > On Wed, 2003-06-18 at 17:24, Sascha Schumann wrote: > > Of course. That's not the point though. The point is > > whether the difference matters in the global picture. > > Point taken. But is it such a big thing? I mean, w

Re: [PHP-DEV] Smart strings & memory allocation

2003-06-18 Thread Sascha Schumann
On Wed, 18 Jun 2003, Stanislav Malyshev wrote: > SS>> since end of 2001. And for ZE2, Sterling reported a 20% > SS>> increase in performance after disabling the memory manager. > > You mean "zend MM memory manager" or "ZE1 memory cache manager"? > If you talk about the former, it's known

Re: [PHP-DEV] removing bundled libmysql

2003-06-21 Thread Sascha Schumann
> I'm putting this message out as a feeler. I'm going to go ahead and > remove the mysql library from the PHP source tree. This won't affect > the extension, it simply means we won't be bundling the *library* with > PHP anymore. This is in a large part due to MySQL's decision to switch > to usin

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4(PHP_4_3) /ext/snmp php_snmp.hsnmp.c

2003-06-22 Thread Sascha Schumann
> The last one is the ONLY thing where existing code is modified, and I've > really tested it extensively. So where's the problem??? There is no problem. Can you or Harrie make sure that the patch gets applied to head, so that the branches are in sync? - Sascha -- PHP Internals - P

[PHP-DEV] HEADS UP for extension authors

2003-06-22 Thread Sascha Schumann
Currently, PHP uses aclocal of the automake suite to include libtool's /usr/share/aclocal/libtool.m4. This is a trivial task which does not require aclocal per se. However, extension authors might depend on additional m4 macros such as AM_PATH_GTK_2_0 which are provided by oth

Re: [PHP-DEV] GPL/MySQL and OSI

2003-06-23 Thread Sascha Schumann
On Mon, 23 Jun 2003, Olivier Hill wrote: > Hi, > > What would it take to make PHP OSI Compliant (Certified?)? That's on the way already. > It seems it > would permit PHP to be linked to MySQL libs, or am I wrong? You are not right (yet). - Sascha -- PHP Internals - PHP Runtime De

RE: [PHP-DEV] CVS Administriva (important)

2003-06-23 Thread Sascha Schumann
Can someone explain why James just made it impossible to properly work with source code which resides in PHP 4 and 5? - diffing is impossible - merging is impossible - history of new commits becomes fragmented James, why did not you discuss this first? All opensource BSDs

RE: [PHP-DEV] CVS Administriva (important)

2003-06-23 Thread Sascha Schumann
James, in the past, there was very little interest in a PHP 4 HEAD branch, if you care to recall. Because your rashness has rendered diff and merge unusable between PHP 4/5, we can only expect to see even less interest. Lowering the bar should be the answer to faiding interest

RE: [PHP-DEV] CVS Administriva (important)

2003-06-23 Thread Sascha Schumann
> A bunch of things are broken. Files are missing in php4 head and the > wrong versions of files are also in there. I think we need to roll this > change back as soon as possible and take another shot at this in a much > more organized manner. Here is a plan. - rename /repository/php5 t

[PHP-DEV] Re: reminder #4: [EMAIL PROTECTED] needs update

2007-06-05 Thread Sascha Schumann
It's done (1 insert, 1 delete). - Sascha On Tue, 5 Jun 2007, Greg Beaver wrote: > Hi Wez, > > We really need an update to the [EMAIL PROTECTED] alias. This is the > 4th request. Please remove [EMAIL PROTECTED] and add [EMAIL PROTECTED] > > Thanks, > Greg > > -- PHP Internals - PH

Re: [PHP-DEV] Re: Anonymous voting on wiki

2016-01-12 Thread Sascha Schumann
On Tue, 12 Jan 2016, Peter Petermann wrote: > > > > > > > This seems useful. I do wonder whether we should use by default for > > > RFCs. It's interesting to see how different people vote, and knowing > > > who voted which way means you can ask them what their objections were. > > I have gotten th

Re: [PHP-DEV] Re: Anonymous voting on wiki

2016-01-12 Thread Sascha Schumann
> During the CoC-Discussion the idea came up to vote certain CoC-issues > (call them whatever you like) in a more secure way so that no one sould > be able to bully someone into an - for him or her - inappropriate > decission. One way to do so could be a somehow anonymised vote. Is discussing thin

Re: [PHP-DEV] Re: Internals and Newcomers and the Sidelines (WAS: Adopt Code of Conduct)

2016-01-12 Thread Sascha Schumann
> My take away from Anthony's last email is basically: "We're going to have a > CoC whether you like it or not. You are welcome to offer feedback to make > the CoC better after we propose it, but any feedback that says a CoC is bad > will be viewed as non-constructive and ignored." That would be f

Re: [PHP-DEV] Re: Internals and Newcomers and the Sidelines (WAS: Adopt Code of Conduct)

2016-01-12 Thread Sascha Schumann
Hi John, > And it is *not* acceptable. May I ask who put you in charge to determine whether something is "acceptable" or "reprehensible"? Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Back to the code (was Re: Internals and Newcomers and the Sidelines (WAS: Adopt Code of Conduct))

2016-01-12 Thread Sascha Schumann
> On January 12, 2016 at 7:05 PM Adam Howard wrote: > > Can we please move on past this and get back to actual code. Because if > not, perhaps PHP Internals has outgrown the email format and should migrate > to a forum type format. Agreed. Sascha -- PHP Internals - PHP Runtime Development Ma

RE: [PHP-DEV] [RFC] [Re-proposed] Adopt Code of Conduct

2016-01-21 Thread Sascha Schumann
> For what it's worth, I find the description 'rules for misconduct' extremely > telling and fairly horrible way to describe a Code of Conduct, as I'm sure any > people involved with education would agree. Agreed. > > But we don't really have an alternative process for this currently > > establis

Re: [PHP-DEV] [RFC] RFC4648 encoding

2016-03-26 Thread Sascha Schumann
> > PHP already offers bin2hex()/hex2bin() and base64_encode()/base64_decode(). > > This covers part, but not all, of RFC 4648. > > > > I'd like to extend the coverage to include, at minimum, Base32. > > What's the use case for it? Is anybody using base32 now? I'd have a few times if the functio

Re: [PHP-DEV] [RFC] RFC4648 encoding

2016-03-26 Thread Sascha Schumann
> That's something to consider, but please keep in mind a sense of > perspective: Anthony measured a _negligible_ performance hit (5 * 10^-6 > seconds). > > Are there any real-world applications that would suffer tremendously from > this academic slow-down? Yes, but that is a micro-benchmark. Re

RE: [PHP-DEV] Retiring PHP's Mirror Program

2019-03-28 Thread Sascha Schumann
Hi Derick, there is no * or nl1 record in the php.net zone, so I cannot change it. I guess that it is done on the easydns side. Cheers Sascha

RE: [PHP-DEV] Retiring PHP's Mirror Program

2019-03-28 Thread Sascha Schumann
> So I guess we (I) need to modify that script to not CNAME these to the > respective mirrors, but instead to star-php-net.ax4z.com. instead? I can > work on that (tomorrow). Sounds good. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/

Re: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
Will be fixed in a few minutes. Thanks for the report. Sascha

Re: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
Looks better now. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
Fixed people.php.net as well. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
As there are other protocols beside http/https running on news.php.net (NNTP), we unfortunately cannot switch the whole subdomain to the cdn. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
> > > > > > > How would you like to switch to the CDN? By DNS? Or we need to > > create a > separate DNS-Entry for NNTP (nntp.php.net). I'd need to check how much > reconfiguration that'd mean though... And that might mean that others > will need to change their endpo

Re: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
https://news-web.php.net/ Does it work for you? I don't know the application, so if there are any direct references to http://news.php.net they would need to be fixed, as we do not rewrite the HTML. Sascha

Re: [PHP-DEV] Wiki display problem

2019-06-03 Thread Sascha Schumann
Alright, the apache2 configs for news/lists redirect to https://news-web.php.net now. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Wiki display problem

2019-06-11 Thread Sascha Schumann
Cannot we nuke that subdomain? # ls -la /local/www/sites/downloads.php.net/ total 8 drwxr-xr-x 2 root root 4096 Nov 6 2014 . drwxr-xr-x 4 root root 4096 Jul 18 2018 .. The apache config apparently just redirects everything somewhere else. Sascha -- PHP Internals - PHP Runtime Development Ma

Re: [PHP-DEV] Wiki display problem

2019-06-11 Thread Sascha Schumann
Cert is fixed on the machine now. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Wiki display problem

2019-06-12 Thread Sascha Schumann
Please try again. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Checkout phpdoc

2019-06-25 Thread Sascha Schumann
I have disabled SNI for the upstreams on svn2.php.net. If the problem persists, please provide a way to reproduce the issue. Thanks Sascha

Re: [PHP-DEV] MODERATE spam

2019-09-03 Thread Sascha Schumann
Who can we add as moderators? Sascha > Nikita Popov hat am 3. September 2019 um 16:58 > geschrieben: > > On Sat, May 18, 2019 at 12:06 PM Joe Watkins < krak...@php.net > mailto:krak...@php.net > wrote: > > > > Hi all, > > > > Does anyone know what is the cause of all th

Re: [PHP-DEV] MODERATE spam

2019-09-04 Thread Sascha Schumann
When sending an email to php-announce@ .. ezmlm-store:_info:_qp_26188/ezmlm-clean:_info:_qp_26206/Old_format_or_corrupted_index._Run_ezmlm-idx!_(#5.3.0)/ezmlm-warn:_info:_qp_26212/ezmlm-warn:_info:_qp_26219/ezmlm-warn:_info:_qp_26220/did_0+0+10/ I ran ezmlm-idx, looks better now. Regarding deliv

Re: [PHP-DEV] MODERATE spam

2019-09-04 Thread Sascha Schumann
We have enabled the normal php.net spam protections for lists.php.net - this is test message 1. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] MODERATE spam

2019-09-04 Thread Sascha Schumann
And this would be test message 2. Sorry about this. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] MODERATE spam

2019-09-04 Thread Sascha Schumann
Looking good (test 3). Please alert syst...@php.net if you have issues sending emails to *@lists.php.net. Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] MODERATE spam

2019-09-26 Thread Sascha Schumann
> Confirming that most spam got nicely reduced now. Thank you for > enabling spam filters. There are now only few of those spam mails > passing through but I guess reading one or two messages with pharmacy > and similar content can be ignored and deleted on the mods side. Thanks for the feedback.

Re: [PHP-DEV] php.net mailing setup owner?

2016-12-04 Thread Sascha Schumann
Everyone, Ecelerity has been retired for close to two years (Feb 2015). The MX for php.net is a single, well-maintained Postfix instance. If there are any issues, please let me know and Cc systems@ Thanks Sascha -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: h

  1   2   3   >