phpMyAdmin configuration

后端 未结 10 1096
刺人心
刺人心 2021-02-01 03:08
  • How do I increase phpmyadmin session timeout?
  • How do I increase phpmyadmin import file size limit(currently it says Max: 2,048KiB). I tried changing upload_
10条回答
  •  有刺的猬
    2021-02-01 03:49

    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)

提交回复
热议问题