Linux: Increase import file size in PHPMyAdmin

HOW DO I INCREASE THE PHP UPLOAD LIMITS

SOLUTION PHP has several configuration options to limit resources consumed by scripts. By default, PHP is set to allow uploads of files with a size of 2MB or less. Try increasing the following values in php.ini, for example:
LOCATE php.ini file: php –ini or php -I | grep ‘php.ini”
memory_limit = 32M upload_max_filesize = 24M post_max_size = 32M
RESTART APACHE SERVER: /etc/init.d/apache2 restart

Tags:

Comments are closed

Latest Comments

No comments to show.