[PHP] Re: [PHP-WEBMASTER] Re: [PHP] The Cat Signal

2012-07-19 Thread Ferenc Kovacs
>
>
> > Btw. we were asked by the to join the league as we were a big traffic
> > source on the black out day.
> > I don't know if Rasmus is on the webmaster list or not, but we should cc
> > him, as he was the driving force behind us joining the anti SOPA
> movement.
>
> He is everywhere.
>
> But I thought we were already 'members'?
> See also http://php.markmail.org/message/7e4uqo73fmtlgjeo
>
> -Hannes
>

Thanks, that was the mail that I was referring to.
I didn't see anybody reply on that thread, so except we replied in private
(why would we do that?) I guess we never officially accepted that
invitation.

-- 
Ferenc Kovács
@Tyr43l - http://tyrael.hu


[PHP] Re: [PHP-WEBMASTER] Re: [PHP] The Cat Signal

2012-07-19 Thread Ferenc Kovacs
2012.07.19. 20:21, "Daniel Brown"  ezt írta:
>
> Forwarding to php-webmas...@lists.php.net, as it's not a "general
> user" issue where it pertains to php.net.
>
> On Thu, Jul 19, 2012 at 2:02 PM, Kris Craig  wrote:
> > Hey guys,
> >
> > I just became aware of this:
> >
> > http://internetdefenseleague.org/
> >
> >
> > It's a site setup by Mozilla, Reddit, and others to defend internet
freedom
> > in the wake of recent legislative events in the U.S. and elsewhere (full
> > members list here:  http://www.internetdefenseleague.org/members).
> >
> > They've setup what they're calling the "cat signal," an invisible bit of
> > embeddable code you can put in your website that will activate (and
display
> > the afore-mentioned signal/link/etc) if/when the next SOPA/PIPA/etc
comes
> > along that threatens the open internet.
> >
> > I'd like to propose that we integrate this into the PHP website.  This
> > issue directly affects our community and we already staked a claim in
this
> > fight when we participated in the last great blackout.
> >
> > In addition, I'd also l ike to propose that we officially join this
group
> > as a member.  I'm not sure if we'd do this by vote or something similar
to
> > the RFC process & etc, but if you'll grant me permission, I'd be happy
to
> > do the legwork on this myself (make the HTML edits, contact the
> > organization on PHP's behalf, etc).
> >
> >
> > Thoughts?
> >
> > --Kris
>
>
>
> --
> 
> Network Infrastructure Manager
> http://www.php.net/
>
> --
> PHP Webmaster List Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

Btw. we were asked by the to join the league as we were a big traffic
source on the black out day.
I don't know if Rasmus is on the webmaster list or not, but we should cc
him, as he was the driving force behind us joining the anti SOPA movement.


[PHP] Re: [PHP-WIN] 5.3.9RC2 and 5.4RC2

2011-11-27 Thread Ferenc Kovacs
On Sun, Nov 27, 2011 at 2:39 PM, Pierre Joye  wrote:

> hi,
>
> On Sat, Nov 26, 2011 at 9:43 AM, Tommy Pham  wrote:
> > Hi everyone,
> >
> > 5.3.9RC2 works fine with all my apps so far.  5.4RC2 broke with sqlsvr
> > and its PDO in addition to Wincache, which I've already brought to MS'
> > attention.
>
> Please report a bug at http://pecl.php.net/package/sqlsrv
> http://pecl.php.net/package/wincache.
>
> however I do not see what could be broken with 5.3.9, there is no
> change that could affect these extensions.


I think that he meant that only 5.4 is affected by those problems.


-- 
Ferenc Kovács
@Tyr43l - http://tyrael.hu


[PHP] Re: [PECL-DEV] php_bcompiler.dll dependencies?

2011-10-12 Thread Ferenc Kovacs
> Which previous post?

http://news.php.net/php.pecl.dev/8616


-- 
Ferenc Kovács
@Tyr43l - http://tyrael.hu

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: [PHP-WEBMASTER] Can you tell me the detailed difference between PDO and Mysql_connect?

2011-04-21 Thread Ferenc Kovacs
2011/4/21 通用产品开发组-王晓明 

> Dear PHP Officer,
>
> From China.
> I have heard of PDO extension for more than one year, but I havn't test the
> difference between PDO and Mysql_connect.
> I search a very long time for other programers' test report from google,
> but failed. There isn't any wholeside report of it.
> Only anyone said that PDO has a more efficiency when high concurrent.
>
> I have no idea about more detail of PDO. Can you give me a list about it? I
> mean, I want a roughly list, describing what efficiency is about PDO when
> compare with Mysql?
>
> Sorry for my poor English. and wait for your reply.
>
> Your Sincely..
>
> Steven.
> 21/04/2011
>
>
> --
> PHP Webmaster List Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
Hi.

first of all: secur...@php.net is for reporting security problems in the php
infrastructure or in the language.
php-webmaster is for reporting technical problems about the
php.netinfrastructure.
this is mentioned on the http://php.net/mailing-lists.php
none of this channels is about supporting php related questions, you should
use the "php-general"  for that.
please watch out for that in the future.

about mysql vs PDO:

You should check out the documentation,
http://hu.php.net/manual/en/intro.pdo.php is a good start.
Basically the PDO extension is a lightweight abstraction/wrapper layer which
tries to provide a consistent interface for multiple database through
drivers: http://hu.php.net/manual/en/pdo.drivers.php

the mysql and mysqli extension only exports the functionality of the
libmysql, the mysql PDO driver does the same, but transforms that into the
PDO generic interface.
with PHP 5.3 and the introduction of mysqlnd things got a little bit
complicated, you can now use the mysqlnd extension instead of the libmysql
and if you do, then every mysql extension (mysql, mysqli, PDO mysql driver)
will use that AFAIK.
I don't know which PHP version do you use, but a few advice:
you should use the mysqli extension over the mysql extension (mysqli_connect
over mysql_connect), but in the performance point of view, mysqli can be
always a little bit faster than PDO mysql, because they use the same
underlying lib, but PDO does more abstraction over it.
but the performance hit isn't too much either:
http://jonathanrobson.me/2010/06/mysqli-vs-pdo-benchmarks

Tyrael


[PHP] Re: [PHP-DEV] PHP 5.3.6RC1 Released for Testing

2011-02-17 Thread Ferenc Kovacs
2011/2/17 Alexey Zakhlestin 

>
> On 17.02.2011, at 16:17, Johannes Schlüter wrote:
>
> > The first release candidates of 5.3.6 was just released for testing and
> > can be downloaded here:
> >
> > http://downloads.php.net/johannes/php-5.3.6RC1.tar.bz2 (md5sum:
> > f78d7b47ddbfca42ebdfcdef2adfe859)
> >
> > The windows binaries are available at: http://windows.php.net/qa/
> >
> > This is the first step in the release process of this versions and goal
> > is having a 2nd RC two weeks from now. Majority of the changes are of
> > the "bug fix" variety. To ensure that the release is solid, please test
> > this RC against your code base and report any problems that you
> > encounter.
>
> Here's the changelog:
>
> http://svn.php.net/viewvc/php/php-src/tags/php_5_3_6RC1/NEWS?revision=308400&view=markup
>
> thanks.
"Restored firebird support (VC9 builds only). (Pierre) "
we will only make VC9 builds, don't we?

Tyrael