Skip to content

Instantly share code, notes, and snippets.

@micheldiemer
Last active October 28, 2023 13:10
Show Gist options
  • Save micheldiemer/6c6f98d06e749d39697398747d0abe13 to your computer and use it in GitHub Desktop.
Save micheldiemer/6c6f98d06e749d39697398747d0abe13 to your computer and use it in GitHub Desktop.
php.ini avec quelques optimisations : langue française, gestion des erreurs, etc.
# Getion des erreurs
error_reporting=E_ALL
short_open_tag=Off
display_errors=On
display_startup_errors=On
html_errors=On
# Gestion des téléchargements
realpath_cache_size=6M
upload_max_filesize=1G
post_max_size=1G
# Temps d'exécution et mémoire
max_execution_time=300
max_input_time=300
memory_limit=256M
[Date]
date.timezone = "Europe/Paris"
[intl]
intl.default_locale=fr_FR
intl.use_exceptions=On
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment