Hey. I have a question that I've been working on for a week. Before my old server went down, I backed up my mysql of a site through cpanel's backup feature.
Well it won't upload the backup via phpmyadmin because it's formatted different (' 's)
Example: When done via cpanel backup, it has this:
Truncated for space...
Thanks!!
Well it won't upload the backup via phpmyadmin because it's formatted different (' 's)
Example: When done via cpanel backup, it has this:
Truncated for space...
And phpmyadmin backs up like this:DROP TABLE IF EXISTS airport;
CREATE TABLE airport (
id int(11) NOT NULL auto_increment,
So my question is. Is there a way to upload my cpanel mysql backup via ssh? A certain command? Because it's WAY too big to upload via web. It's already on the server though.DROP TABLE IF EXISTS `airport`;
CREATE TABLE `airport` (
`id` int(11) NOT NULL auto_increment,
Thanks!!