; Raises PHP's own upload_max_filesize/post_max_size ceiling for every page ; under 2027/ -- needed for upload.php/reupload.php's abstract PDF uploads. ; Same fix, same reasoning, as pages/tpc/.user.ini (see that file's own ; comment for the full explanation of why this is scoped as a per-directory ; .user.ini rather than a global php.ini edit, and why it's a no-op under ; mod_php or PHP's built-in dev server). Without this, a real author's PDF ; over Ubuntu's packaged PHP defaults (2M/8M) gets silently rejected by PHP ; itself before upload3.php ever sees real content -- which used to also ; misfire this app's own "hacking attempt" alert, since a same-symptom ; (size=0, no real file) genuinely malicious submission and a real author's ; oversized real file were indistinguishable until upload3.php's own ; UPLOAD_ERR_INI_SIZE/UPLOAD_ERR_FORM_SIZE check was added to tell them apart. upload_max_filesize = 64M post_max_size = 64M