Hello, My wife has been working on a Drupal website offline using MAMP. I would like to upload the website and import the MYSQL database. Uploading the data is no biggie but the godaddy phpmyadmin interface does not support importing (only supports exporting) mysql files. I've googled a bit but can't find a decent PHP tool that will let me upload an exported MYSQL DB file to a MYSQL server. Any suggestions or links to some code? (and before someone says it, yes godaddy is not perfect) ;)
I've googled a bit but can't find a decent PHP tool that will let me upload an exported MYSQL DB file to a MYSQL server.
If you have remote mysql port access to the server, then just do on your local box with the dump file: mysql < dumpfile -h remote.host.com -u remoteuser -p remotedbname Then Bob's your uncle (whatever that means). (Remember kids, GUI's are evil.)
hmmm... never thought of that. I will give it a try thanks. And regarding John Lange's email... I guess I could try installing pgpMyAdmin and see if it'll connect. I'll try that if the command line option doesn't work. Thanks guys. On 11/22/06, Trevor Cordes <trevor@tecnopolis.ca> wrote:
I've googled a bit but can't find a decent PHP tool that will let me upload an exported MYSQL DB file to a MYSQL server.
If you have remote mysql port access to the server, then just do on your local box with the dump file:
mysql < dumpfile -h remote.host.com -u remoteuser -p remotedbname
Then Bob's your uncle (whatever that means).
(Remember kids, GUI's are evil.)
_______________________________________________ Roundtable mailing list Roundtable@muug.mb.ca http://www.muug.mb.ca/mailman/listinfo/roundtable
participants (2)
-
Montana Quiring -
Trevor Cordes