drupal developer london http://alexmoreno.net/ en Deploying Drupal projects: git + capistrano http://alexmoreno.net/deploying-drupal-projects-git-capistrano/10-02-2013 <article role="article" about="http://alexmoreno.net/deploying-drupal-projects-git-capistrano/10-02-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 10 February, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/deploying-drupal-projects-git-capistrano/10-02-2013" rel="bookmark"> <span>Deploying Drupal projects: git + capistrano</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p> </p><p>removing some folders from git, file .gitignore with these contents:</p><p> </p><p># Ignore paths that contain generated content.</p><p>cache/</p><p>files/</p><p>sites/*/files</p><p>sites/*/private</p><p> </p><p> </p><p> </p><p>Using symbolic links for /files directory:</p><p> </p><p> </p><p>namespace:custom do</p><p>    task:symlink do</p><p>      run "ln -s /var/www/crucerista/sites/crucerista.net/files/ /var/www/crsta/current/sites/crucerista.net/"</p><p>      run "echo 'finished'"</p><p>    end</p><p>end</p><p>after "deploy","custom:symlink"</p><p> </p><p> </p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal" hreflang="es">drupal</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer" hreflang="es">drupal developer</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/git" hreflang="es">git</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/capistrano" hreflang="es">capistrano</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> </ul></div> </div> </article> Sun, 10 Feb 2013 02:32:18 +0000 alexmoreno 95 at http://alexmoreno.net Optimizing a Drupal database: improving the performance http://alexmoreno.net/optimizing-drupal-database-improving-performance/09-02-2013 <article role="article" about="http://alexmoreno.net/optimizing-drupal-database-improving-performance/09-02-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 9 February, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/optimizing-drupal-database-improving-performance/09-02-2013" rel="bookmark"> <span>Optimizing a Drupal database: improving the performance</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>That is what you have when you don't optimize and maintenance properly your Drupal projects. A 4GB database which hits hugely the server performance. Just a couple of "magic tricks" and .... 194MB. </p><p> Magic? Not at all. If you have a problem with your server, with hangs up and things going very sloooow, check the cache. sessions and watchdog tables, and clear them.</p><p>It works like a charm :-)</p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal" hreflang="es">drupal</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-performance" hreflang="es">drupal performance</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-maintenance" hreflang="es">drupal maintenance</a></li> </ul></div> </div> </article> Sat, 09 Feb 2013 16:09:21 +0000 alexmoreno 94 at http://alexmoreno.net Howto patch a Drupal module http://alexmoreno.net/howto-patch-drupal-module/09-02-2013 <article role="article" about="http://alexmoreno.net/howto-patch-drupal-module/09-02-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 9 February, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/howto-patch-drupal-module/09-02-2013" rel="bookmark"> <span>Howto patch a Drupal module</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>Some contributtion to add to this Drupal module with which you have been working on?</p><p>Very easy, take note:</p><p> </p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer" hreflang="es">drupal developer</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-module-development" hreflang="es">drupal module development</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> </ul></div> </div> </article> Sat, 09 Feb 2013 15:40:27 +0000 alexmoreno 93 at http://alexmoreno.net Drupal maintenance tasks http://alexmoreno.net/drupal-maintenance-tasks/04-02-2013 <article role="article" about="http://alexmoreno.net/drupal-maintenance-tasks/04-02-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 4 February, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/drupal-maintenance-tasks/04-02-2013" rel="bookmark"> <span>Drupal maintenance tasks</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p> </p><p>How important is having a database optimized. Doing some "basic" optimizations like clearing the cache, runing the Drupal cron and a couple of things more, your database can change from having 4 GB to just around 200MB... incredible? Not at all, the importance of maintenance tasks :-)</p><p>Which tasks? Mainly:</p><p> </p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal" hreflang="es">drupal</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-maintenance" hreflang="es">drupal maintenance</a></li> </ul></div> </div> </article> Mon, 04 Feb 2013 00:52:37 +0000 alexmoreno 91 at http://alexmoreno.net Drupal developer links of the week (01-02-2013) http://alexmoreno.net/drupal-developer-links-week-01-02-2013/01-02-2013 <article role="article" about="http://alexmoreno.net/drupal-developer-links-week-01-02-2013/01-02-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 1 February, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/drupal-developer-links-week-01-02-2013/01-02-2013" rel="bookmark"> <span>Drupal developer links of the week (01-02-2013)</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>Some interesting links that I have found this week.</p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal" hreflang="es">drupal</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> </ul></div> </div> </article> Thu, 31 Jan 2013 22:53:25 +0000 alexmoreno 90 at http://alexmoreno.net Drupal Sprint London January 2013 http://alexmoreno.net/drupal-sprint-london-january-2013/26-01-2013 <article role="article" about="http://alexmoreno.net/drupal-sprint-london-january-2013/26-01-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 26 January, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/drupal-sprint-london-january-2013/26-01-2013" rel="bookmark"> <span>Drupal Sprint London January 2013</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>After a nice day knowing new people and mainly learning, this is my contribution to the community in this first Drupal Sprint in London:</p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-sprint" hreflang="es">drupal sprint</a></li> </ul></div> </div> </article> Sat, 26 Jan 2013 17:17:36 +0000 alexmoreno 88 at http://alexmoreno.net Howto contributing a module to Drupal http://alexmoreno.net/howto-contributing-module-drupal/26-01-2013 <article role="article" about="http://alexmoreno.net/howto-contributing-module-drupal/26-01-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 26 January, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/howto-contributing-module-drupal/26-01-2013" rel="bookmark"> <span>Howto contributing a module to Drupal</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p> </p><p>,</p><p> </p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer" hreflang="es">drupal developer</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> </ul></div> </div> </article> Sat, 26 Jan 2013 14:31:19 +0000 alexmoreno 86 at http://alexmoreno.net Drupal developer in London http://alexmoreno.net/drupal-developer-london/23-01-2013 <article role="article" about="http://alexmoreno.net/drupal-developer-london/23-01-2013" class="node node--type-blog node--promoted node--view-mode-teaser"><header><div class="node__meta"> <span> By <span class="node__author"><span><a title="View user profile." href="http://alexmoreno.net/alejandro-moreno" lang="" about="http://alexmoreno.net/alejandro-moreno" typeof="schema:Person" property="schema:name" datatype="" xml:lang="">alexmoreno</a></span></span>, 23 January, 2013 </span> </div> <div class="node__top-wrapper"> <h2 class="node__title"> <a href="http://alexmoreno.net/drupal-developer-london/23-01-2013" rel="bookmark"> <span>Drupal developer in London</span> </a> </h2> </div> </header><div class="node__content text-content"> <div class="text-content field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>My name is Alejandro Moreno Lopez. I'm an spanish developer living in London, degree in Computer Science, who has specialized in PHP and Drupal development.</p><p> </p></div> <div class="field field--name-taxonomy-vocabulary-1 field--type-entity-reference field--label-hidden field--tag-ref"> <ul class="links field__items field--tag-ref__items"><li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer" hreflang="es">drupal developer</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-london" hreflang="es">drupal developer london</a></li> <li class="field--tag-ref__item"><a href="http://alexmoreno.net/drupal-developer-uk" hreflang="es">drupal developer uk</a></li> </ul></div> </div> </article> Tue, 22 Jan 2013 23:06:54 +0000 alexmoreno 83 at http://alexmoreno.net