; BuyerKiosk PHP Configuration for Docker Development ; Error Reporting display_errors = On display_startup_errors = On error_reporting = E_ALL log_errors = On error_log = /var/www/html/logs/php_errors.log ; Memory & Execution memory_limit = 512M max_execution_time = 300 max_input_time = 300 max_input_vars = 3000 ; File Uploads upload_max_filesize = 128M post_max_size = 128M file_uploads = On ; Session session.name = UserFrosting session.cookie_httponly = 1 session.cookie_samesite = Strict session.use_strict_mode = 1 session.gc_maxlifetime = 7200 ; Timezone date.timezone = America/Los_Angeles ; String & Encoding mbstring.language = UTF-8 default_charset = "UTF-8" ; OPcache (disabled for development to see changes immediately) opcache.enable = 0 opcache.enable_cli = 0 ; Xdebug (if installed) ; xdebug.mode = develop,debug ; xdebug.start_with_request = yes ; xdebug.client_host = host.docker.internal ; xdebug.client_port = 9003 ; xdebug.log = /var/www/html/logs/xdebug.log