-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphp.ini
More file actions
27 lines (23 loc) · 681 Bytes
/
php.ini
File metadata and controls
27 lines (23 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
; PHP Upload Settings for Cimaise
; Increased limits for better performance with large photo uploads
upload_max_filesize = 64M
post_max_size = 64M
max_file_uploads = 50
max_execution_time = 600
max_input_time = 600
memory_limit = 512M
; Opcache for better performance (if available)
opcache.enable=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
; Error reporting for development
display_errors = On
error_reporting = E_ALL & ~E_DEPRECATED
; Session settings
session.gc_maxlifetime = 7200
session.cookie_lifetime = 0
; Other useful settings
default_charset = "UTF-8"
date.timezone = "Europe/Rome"