; EXIM ERP PHP Configuration ; PHP 8.3+ Settings ; Error handling error_reporting = E_ALL display_errors = Off display_startup_errors = Off log_errors = On error_log = /var/log/php8.3-errors.log ; Resource limits memory_limit = 512M max_execution_time = 300 max_input_time = 300 max_input_vars = 3000 ; File uploads file_uploads = On upload_max_filesize = 100M post_max_size = 100M max_file_uploads = 20 ; Memory and OPcache opcache.enable = 1 opcache.memory_consumption = 256 opcache.interned_strings_buffer = 16 opcache.max_accelerated_files = 20000 opcache.max_wasted_percentage = 10 opcache.validate_timestamps = 1 opcache.revalidate_freq = 2 opcache.save_comments = 1 opcache.enable_cli = 0 opcache.fast_shutdown = 1 ; Session configuration session.cookie_httponly = 1 session.cookie_secure = 1 session.use_strict_mode = 1 session.gc_maxlifetime = 1440 ; Date timezone date.timezone = UTC ; Realpath cache realpath_cache_size = 4096k realpath_cache_ttl = 600 ; Disable dangerous functions disable_functions = exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source ; Expose PHP version expose_php = Off