; Raises PHP's own upload_max_filesize/post_max_size ceiling for every page ; under tpc/ (the requireLogin-gated admin area) -- needed for manageDocuments2.php's ; Proceedings/CFP uploads (real files run 30-40MB), well over Ubuntu's packaged PHP ; defaults (2M/8M). Only takes effect under a CGI/FastCGI SAPI (e.g. PHP-FPM) -- ; silently ignored (not an error) under mod_php or PHP's built-in dev server, both of ; which never look for this filename at all. See CLAUDE.md's "Local dev / build" ; section for the mod_php-only alternative (.htaccess php_value) and why it isn't ; added here too without first confirming production's actual PHP SAPI. upload_max_filesize = 64M post_max_size = 64M