Skip to content

Instantly share code, notes, and snippets.

@jaimeivan
Last active December 16, 2015 08:49
Show Gist options
  • Save jaimeivan/5408577 to your computer and use it in GitHub Desktop.
Save jaimeivan/5408577 to your computer and use it in GitHub Desktop.
Habilitar los errores de php en el MAMP
1.- Creamos un script (phpinfo.php) que muestre: las propiedades que tiene php
2.- Ya ejecutado buscamos el dato
Loaded Configuration File : /Applications/MAMP/bin/php/php5.4.10/conf/php.ini
3.- En el archivo php.ini buscamos las lineas mencionadas y las cambiamos a On
4.- Guardamos y reiniciamos servidores
[php]
...
display_errors = On
display_startup_errors = On
...
<?php
phpinfo();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment