Now you can go \wamp\alias\phpmyadmin.conf and edit this file.
it should look like this although your version of phpMyAdmin will probably be different
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
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 256M php_admin_value post_max_size 256M php_admin_value max_execution_time 3600 php_admin_value max_input_time 3600 </Directory> |
If you need a longer runtime to load a database change the php_admin_value max_execution_time parameter.
You may also need to change the other parameters as larger databases tend to come in larger files and take longer to read as well.
Dont forget to restart Apache after making changes to this file
Leave a reply