Solving Drupal error: PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away

The problem After downloading a Drupal project I am working on, and importing its database I got this kind of message related with a PDO Exception: Additional uncaught exception thrown while handling exception. PDOException: SQLSTATE[HY000]: General error: 2006 MySQL server has gone away: SELECT s.lid, t.translation, s.version FROM {locales_source} s LEFT JOIN {locales_target} t ON s.lid = t.lid…

Learning Drupal from scratch – Part 1 (in Spanish)

Drupal is becoming in one of the most used Content Management Systems (CMS) all over the world, because it is a really robust and secure platform for creating contents and publishing to the web. So, we decided to start teaching this kind of courses in our new e-learning platform: http://webtraining.mx/. These videos were created by Manuel…

Introduction to Joomla! CMS – Session 1 (in spanish)

  Why should I use a CMS? When you start to create websites for information spreading or marketing purposes, one of the easiest and -probably- the best way to do it, is by using a Content Management System (CMS). Why? Well, let me tell you some points about it: SEO Friendly URLs Modular and extensible Easy user…

How to get same results when sorting JavaScript arrays in all browsers

The problem: 1) Imagine you have following array in JSON var data = [ { “title”: “Fine Fillers Treatment and Clay De-Activation Agents”, “topic”: “PHP”, “date” : “2014-01-25T01:32:21.170Z”, “url”: “http://www.alex-arriaga.com/session-1-cakephp-framework-for-beginners-in-spanish/” }, { “title”: “How to configure session factory to connect to a DB2 datasource with Hibernate”, “topic”: “Java”, “date” : “2014-02-12T01:32:21.171Z”, “url”: “http://www.alex-arriaga.com/how-to-configure-session-factory-to-connect-to-a-db2-datasource-with-hibernate/” }, {…