4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 6
109 results tagged php x
  • Performance (Symfony 3.4 Docs)
    2017年12月17日 GMT+1 下午2:51:37 - permalink - archive.org - http://symfony.com/app.php/doc/3.4/performance.html
    perf php symfony
  • thumbnail
    Symfony 4 : un état des lieux avant la sortie | Integral Service
    2017年11月30日 GMT+1 上午11:39:23 - permalink - archive.org - https://www.integral-service.fr/symfony-4-un-etat-des-lieux-avant-la-sortie
    php symfony
  • library/php - Docker Hub

    Quand on utilise une image comme celle là, il ne faut pas faire n'importe quoi comme installer des packages php5-extensions, ce n'est pas du tout prévu... Il faut suivre la doc et utiliser les outils mis à dispo sinon on se retrouve un Dockerfile qui n'a aucun sens...

    Dans ma todo : migrer ces "choses" pour utiliser une image debian de base

    2017年9月6日 GMT+2 上午9:49:42 - permalink - archive.org - https://hub.docker.com/_/php/
    docker php
  • thumbnail
    How to Set external Parameters in the Service Container (2.7)

    En gros pour dockeriser une app symfony pre 3.2 (ET 2.7 minimum) :

    • il faut utiliser des env var speciales : SYMFONY__*
    • faire en sorte que apache les passent en contexte à l'application (PassEnv)
    • Bien sur il faut que tout ça soit dynamique... (entrypoint, sed conf apache..)

    sed -i "s/PLACEHOLDER/PassEnv $(env|grep -Po 'SYMFONY__[^=]+'| paste -s -d' ')/" test.file

    A partir de symfony 3.2 c'est beaucoup plus facile car les variables d'environnements sont directement accessibles dans les fichiers de configuration

    2017年8月18日 GMT+2 下午5:33:48 * - permalink - archive.org - http://symfony.com/doc/2.7/configuration/external_parameters.html
    docker php symfony
  • thumbnail
    phpredis/cluster.markdown at develop · phpredis/phpredis · GitHub

    redis cluster php session handler

    2017年8月18日 GMT+2 下午2:06:35 - permalink - archive.org - https://github.com/phpredis/phpredis/blob/develop/cluster.markdown#session-handler
    cluster php redis
  • Note: symfony mail

    $message = \Swift_Message::newInstance()
            ->setSubject('Hello Email')
            ->setFrom('toto@gmail.com')
            ->setTo('toto@gmail.com')
            ->setBody('toto',
                'text/html'
            )
        ;
        $this->get('mailer')->send($message);

    2017年5月23日 GMT+2 下午5:17:07 - permalink - archive.org - https://links.infomee.fr/?nZlPeA
    mail php symfony
  • GitHub - hautelook/AliceBundle: A Symfony bundle to manage fixtures with Alice and Faker.
    2017年5月10日 GMT+2 上午10:30:50 - permalink - archive.org - https://github.com/hautelook/AliceBundle
    fixture php symfony
  • thumbnail
    GitHub - fzaninotto/Faker: Faker is a PHP library that generates fake data for you
    2017年5月10日 GMT+2 上午10:30:20 - permalink - archive.org - https://github.com/fzaninotto/Faker
    data faker fixture php test
  • thumbnail
    Symfony and Monolog, how use Processor in your project: a practical example « Stefano Alletti
    2017年3月24日 GMT+1 下午5:09:44 - permalink - archive.org - https://stefanoalletti.wordpress.com/2017/03/09/symfony-and-monolog-how-use-processor-in-your-project/
    log monolog php symfony
  • thumbnail
    thomasbachem/php-short-array-syntax-converter

    Pratique

    2015年9月15日 GMT+2 下午2:35:33 - permalink - archive.org - https://github.com/thomasbachem/php-short-array-syntax-converter
    php
  • PECL :: Package :: APM

    Une lib pour gérer l'envoi de metric depuis php

    2015年6月2日 GMT+2 上午10:14:30 - permalink - archive.org - https://pecl.php.net/package/APM
    php statsd
  • PHP gc_maxlifetime

    Sur une debian wheezy, php va "nettoyer" régulièrement le dossier qui contient les fichiers de sessions grâce à un cron dans /etc/cron.d/

    Toutes les 30 minutes il va vérifier qu'aucun fichier n'est plus vieux que le gc_maxlifetime (php.ini) qui par défaut est de 24 minutes.

    24 minutes !! Ne vous étonnez pas si vous de restez pas connecté à vos applications même en ayant coché la petite case car avec ce comportement par défaut, si votre session n'est pas accédée dans un délai de 24 minutes, elle sera supprimée par le prochain passage du cron..

    2015年1月9日 GMT+1 上午10:07:04 - permalink - archive.org - https://links.infomee.fr/?os-nRg
    debian php
  • Les sessions
    2015年1月1日 GMT+1 下午2:47:47 - permalink - archive.org - http://www.apprendre-php.com/tutoriels/tutoriel-14-les-sessions.html
    php sessions
  • Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache - Linode Guides & Tutorials
    2014年10月28日 GMT+1 下午5:25:19 - permalink - archive.org - https://www.linode.com/docs/websites/apache/running-fastcgi-php-fpm-on-debian-7-with-apache
    apache fpm php
  • Connaitre les versions des extensions php

    <?php
    $extensions = get_loaded_extensions();
    foreach($extensions as $ext) {
    echo "$ext --> ";
    echo phpversion($ext);
    echo "\n";
    }

    2014年7月29日 GMT+2 下午4:21:25 - permalink - archive.org - https://links.infomee.fr/?vo6lAQ
    ext php
  • ▶ Take a walk on the OPS side - Baptiste Dupain - PHP Tour Lyon 2014 #phptour - YouTube

    conf ops m6web bien cool!

    sysdig

    curl

    graphite/statsd

    collectd/sensu/seyren

    ELK(Elasticsearch, Logstash, Kibana)
    Elasticsearch :

    • sense(plugin chrome)
    • kopf(plugin coté serv Elasticsearch)

    jmeter/gatling
    siege/wrk
    tsung
    gor
    blitz.io, blazemater, neotys(saas)

    via skunnyk

    2014年7月17日 GMT+2 上午10:38:35 - permalink - archive.org - https://www.youtube.com/watch?v=O03GflHG-WU&feature=youtu.be
    conf devops ops php
  • Stop abusing arrays in PHP | Nomad Software
    2014年7月3日 GMT+2 下午1:58:38 - permalink - archive.org - http://nomad.so/2014/06/stop-abusing-arrays-in-php/
    array php
  • https://github.com/nergal/php-bottle

    Un mini framework php inspiré de bottle (mini framework python). Dans le même esprit que sinatra (mini framework ruby)

    via sametmax

    2014年6月23日 GMT+2 下午9:46:05 - permalink - archive.org - https://github.com/nergal/php-bottle
    framework php
  • The Big Picture (current) - Symfony
    2014年3月22日 GMT+1 下午3:32:50 - permalink - archive.org - http://symfony.com/doc/current/quick_tour/the_big_picture.html
    php symfony
  • Creating RRD graphs in PHP « php[architect] – Magazine, Training, Books, Conferences

    Feed du rrd en php

    2014年3月19日 GMT+1 上午10:33:37 - permalink - archive.org - http://www.phparch.com/2011/02/creating-rrd-graphs-in-php/
    php rrd sonde
Links per page: 20 50 100
◄Older
page 1 / 6
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation