mirror of
https://github.com/splitbrain/dokuwiki-stickbuilder.git
synced 2025-08-20 13:16:25 +00:00

Removed intl and exif extensions again. Intl requires a bunch of ICU libraries that can't be packed - it would nearly triple the file size of the package. The exif extension isn't worth the space either. php extensions can't be packed anymore because of control flow stuff, I don't really understand. Same is true for a few VC runtime libs.
26 lines
530 B
INI
26 lines
530 B
INI
; minimal php.ini file, keeps most settings at default
|
|
[PHP]
|
|
|
|
date.timezone = Europe/Berlin
|
|
|
|
max_execution_time = 120
|
|
max_input_time = 90
|
|
memory_limit = 128M
|
|
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
|
|
display_errors = On
|
|
display_startup_errors = On
|
|
post_max_size = 32M
|
|
file_uploads = On
|
|
upload_max_filesize = 15M
|
|
always_populate_raw_post_data = -1
|
|
|
|
extension_dir=./php/ext
|
|
extension=bz2
|
|
extension=gd2
|
|
extension=ldap
|
|
extension=mbstring
|
|
extension=openssl
|
|
extension=pdo_sqlite
|
|
|
|
zend_extension=opcache
|