upload_
I add to Poelinca's answer that the mechanism of this limit can be found in the PMA sources under libraries/Config.class.php
,
function checkUploadSize()
It will use upload_max_filesize
if defined or 5M else and if max_upload_size
is also defined it will get the min of the two.
(PMA version 3.3.7deb7)