Skip to content

Instantly share code, notes, and snippets.

@edutrul
Created May 26, 2017 23:03
Show Gist options
  • Save edutrul/6afab345943dcb9da774edbb18fada14 to your computer and use it in GitHub Desktop.
Save edutrul/6afab345943dcb9da774edbb18fada14 to your computer and use it in GitHub Desktop.
KINT tip from Jorge Salinas

Si usan {{ dump(variable) }} o {{ kint(variable) }} en twig y les da un wod o un error 500 al cargar la página, 99% del tiempo es por falta de memoria. En kint lo solucionan poniendo esto en el settings.local.php

require_once DRUPAL_ROOT . ‘/modules/contrib/devel/kint/kint/Kint.class.php’; Kint::$maxLevels = 6;

con dump() no hay solucion :( Por si sirve 🤓

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment