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)
    17 décembre 2017 à 14:51:37 UTC+1 - 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
    30 novembre 2017 à 11:39:23 UTC+1 - 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

    6 septembre 2017 à 09:49:42 UTC+2 - 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

    18 août 2017 à 17:33:48 UTC+2 * - 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

    18 août 2017 à 14:06:35 UTC+2 - 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);

    23 mai 2017 à 17:17:07 UTC+2 - permalink - archive.org - https://links.infomee.fr/?nZlPeA
    mail php symfony
  • GitHub - hautelook/AliceBundle: A Symfony bundle to manage fixtures with Alice and Faker.
    10 mai 2017 à 10:30:50 UTC+2 - 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
    10 mai 2017 à 10:30:20 UTC+2 - 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
    24 mars 2017 à 17:09:44 UTC+1 - 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

    15 septembre 2015 à 14:35:33 UTC+2 - 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

    2 juin 2015 à 10:14:30 UTC+2 - 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..

    9 janvier 2015 à 10:07:04 UTC+1 - permalink - archive.org - https://links.infomee.fr/?os-nRg
    debian php
  • Les sessions
    1 janvier 2015 à 14:47:47 UTC+1 - 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
    28 octobre 2014 à 17:25:19 UTC+1 - 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";
    }

    29 juillet 2014 à 16:21:25 UTC+2 - 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

    17 juillet 2014 à 10:38:35 UTC+2 - 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
    3 juillet 2014 à 13:58:38 UTC+2 - 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

    23 juin 2014 à 21:46:05 UTC+2 - permalink - archive.org - https://github.com/nergal/php-bottle
    framework php
  • The Big Picture (current) - Symfony
    22 mars 2014 à 15:32:50 UTC+1 - 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

    19 mars 2014 à 10:33:37 UTC+1 - 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