Thanks for the reply m^e.
I'm not sure how to use mysqldump from the command line, so I usually get it directly from my SMF Forum backup section. I don't see that though. This is what I have:
QUOTE
# ==========================================================
#
# Database dump of tables in `Edited_Prefix_yabb2`
# August 10, 2005, 11:02:17 AM
#
# ==========================================================
#
# Table structure for table `yabbse_attachments`
#
DROP TABLE IF EXISTS `yabbse_attachments`;
CREATE TABLE `yabbse_attachments` (
ID_ATTACH int(10) unsigned NOT NULL auto_increment,
ID_THUMB int(10) unsigned NOT NULL default 0,
ID_MSG int(10) unsigned NOT NULL default 0,
ID_MEMBER mediumint(8) unsigned NOT NULL default 0,
filename tinytext NOT NULL default '',
size int(10) unsigned NOT NULL default 0,
downloads mediumint(8) unsigned NOT NULL default 0,
attachmentType tinyint(3) unsigned NOT NULL default 0,
width mediumint(8) unsigned NOT NULL default 0,
height mediumint(8) unsigned NOT NULL default 0,
PRIMARY KEY (ID_ATTACH),
UNIQUE ID_MEMBER (ID_MEMBER, ID_ATTACH),
KEY ID_MSG (ID_MSG)
) TYPE=MyISAM;
#
# Dumping data in `yabbse_attachments`
#
INSERT INTO `yabbse_attachments`
.....etc...
I get that from the top. This keeps going on with other thinks like dumping ban_groups, ban_items, etc. So how do I change the CREATE TABLE? For all of them.
Also, I have to use the same folder/path for my SMF install at Astahost right? Because I see a lot of these entries:
QUOTE
/home/my_account_name/public_html/bb/.....
...just means any other folders listed there (too much for me to list).
I did the full database backup of SMF by checking these:
QUOTE
Save the table structure.
Save the table data. (the important stuff.)
Compress the file with gzip.
I downloaded here at my work computer and it's only 8MB in size. I assume this is because it's compressed. Once I unzipped it, it's 40MB which is the filesize download I get at home. How can I download the 8MB compressed file at home? I don't know why this happens. All my settings are the same and I'm using Firefox at home and work to download this. Still work could get 8MB backup, but at home I could only get the uncompressed version.
Comment/Reply (w/o sign-up)