Question
How to increase phpmyadmin upload size
I have installed One Click PHPMyadmin, i want to increase the upload size in it. how can i do it?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
In your php.ini file
Create a file with this in it, in your directory root
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
And call it from the browser. It should tell you what php.ini file is loaded. Go to this file and change these two lines
; Maximum allowed size for uploaded files.
uploadmaxfilesize = 40M
; Must be greater than or equal to uploadmaxfilesize
postmaxsize = 40M
Restart Apache