As you installed phpMyAdmin4.1.14, I assume that you are using WAMPServer 2.5
In WAMPServer 2.5, the PHP resources used by phpMyAdmin are managed from the phpMyAdmin alias configuration file. It was changed specifically for these situations, so you do not need to change php.ini to add ridiculously large values ββto parameters that affect your entire PHP environment.
So, to increase the corresponding paameters, you will do the following: -
Change \wamp\alias\phpmyadmin.conf , which by default should look like
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin4.1.14/" # to give access to phpmyadmin from outside # replace the lines # # Require local # # by # # Require all granted # <Directory "c:/wamp/apps/phpmyadmin4.1.14/"> Options Indexes FollowSymLinks MultiViews AllowOverride all <IfDefine APACHE24> Require local </IfDefine> <IfDefine !APACHE24> Order Deny,Allow Deny from all Allow from localhost ::1 127.0.0.1 </IfDefine> php_admin_value upload_max_filesize 128M php_admin_value post_max_size 128M php_admin_value max_execution_time 360 php_admin_value max_input_time 360 </Directory>
Now change the settings here, so they only affect what happens when you use phpMyAdmin.
These are the parameters you must change.
php_admin_value upload_max_filesize 500M <-- and probably this php_admin_value post_max_size 128M php_admin_value max_execution_time 620 <-- this for a start php_admin_value max_input_time 360
But basically try the modification and see if it works, if not depending on the error, change the corresponding parameter.
Remember to restart Apache after every change to this file.
Oh and don't forget to undo the changes you made to php.ini
source share