Import file size limit in PHPMyAdmin

后端 未结 27 2466
遇见更好的自我
遇见更好的自我 2020-11-27 08:46

I have changed all the php.ini parameters I know: upload_max_filesize, post_max_size.

Why am I still seeing 2MB?

Im using Zend Serv

相关标签:
27条回答
  • 2020-11-27 09:42

    Search for php.ini file

    For xampp, you can get it @ C:\xampp\php

    Find the following 3 properties and set there value according to your need

    memory_limit post_max_size upload_max_filesize

    Restart Apache!

    0 讨论(0)
  • 2020-11-27 09:43

    None of the current answers will work for WHM / cPanel servers.

    To increase the limit in WHM:

    1. Navigate to Server Configuration > Tweak Settings
    2. Choose the PHP tab
    3. Update "cPanel PHP max POST size" & "cPanel PHP max upload size" (POST size should be bigger)
    0 讨论(0)
  • 2020-11-27 09:44

    With WAMP, on Windows10, open

    c:\wamp64\alias\phpmyadmin.conf
    

    and change 128 by 256 at the end of these lines

      php_admin_value upload_max_filesize 128M
      php_admin_value post_max_size 128M
    

    Restart WAMP

    0 讨论(0)
提交回复
热议问题