phpmyadmin config.inc.php

fahl

Active Member
Jul 30, 2008
34
2
58
Enable database uploading from server

Can anyone tell me what i need to edit inphpmyadmin_confic.php to allow me to upload database files to server and upload them from there as in zpanel.
Do i need to do any thing else to enable thisUntitled.jpg
 
Last edited:

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
Hello :)

You can already import database dump files through phpMyAdmin by default. Is there a specific error message you are receiving when attempting to import them normally?

Thank you.
 

fahl

Active Member
Jul 30, 2008
34
2
58
database is 500mb,getting timeouts.
What i want is to be able to upload database to folder on server & import it from there.
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
Databases of that size are better imported through the command line to avoid reaching resource limits. EX:

Code:
mysql database_name < /path/to/database.sql
Thank you.