Hébergement : vps, serveur dédié ou bare bone

Alors je me suis posé la question de l’hébergement comme d’habitude. Ayant déjà des compétences d’administration système, le dédié ne me fait pas peur. J’ai donc regardé toutes les offres et curieux du cloud je me suis penché sur une bare bone de chez scaleway car le système est censé aller plus vite qu’un cloud classique (VPS).

Continue reading “Hébergement : vps, serveur dédié ou bare bone” »

Le seo à l’étude sur openentreprises.fr

Openentreprises.fr est un projet né de la volonté d’apprendre le SEO. J’ai donc cherché un domaine en particulier et devant la multitude d’articles / livres / blogs, j’ai décidé de mettre en pratique ces connaissances. Continue reading “Le seo à l’étude sur openentreprises.fr” »

New symfony project: tips and commands

Create a new bundle:

php app/console generate:bundle

And if you want to go faster (i.e. no interactions), dir give the src path, namespace the name of the bundle and structure the need to generate basic directory :

php app/console generate:bundle --dir=/Volumes/Docs/Projects/CV/www/src --namespace=CV/EditorialBundle --structure --no-interaction

Send emails with Symfony and Mandrill

To send emails, I use Mandrill which is a service by MailChimp. It is a very useful (and powerful) tool which provide you with a smtp server for free until 12k emails / month and a very well designed dashboard.

Price are quite cheap when you need more: http://www.mandrill.com/pricing/

In my Symfony install, I needed to send many emails. So I discovered that a nice bundle exists (isn’t it surprising?). So here is my way to proceed: Continue reading “Send emails with Symfony and Mandrill” »

How to go further after a basic installation of FosUserBundle

In this article, I suppose you have installed FosUserBundle (in composer.json : “friendsofsymfony/user-bundle”: “dev-master”).  I also suppose that your symfony project is working (services enabled, security.yml configured, your bundle extends FOSUserBundle etc.)

Continue reading “How to go further after a basic installation of FosUserBundle” »

Quick reminder for translations with catalogs and Twig

Hi,

I recently had to translate a whole part of my website. Many reasons can conduct you to this need: internationalization, easy access and modification of hard written content, replication of your business in some other sectors etc.

Here are a few tips and structure I use to increase efficiency:

Continue reading “Quick reminder for translations with catalogs and Twig” »