How screwed am I?

Well, first of all XenForo uses InnoDB by default, which doesn't HAVE .MYI (or .MYD) files. :)


Well there is..

xf_search_index.frm
xf_search_index.MYD
xf_search_index.MYI

but yeah, I was just giving an example of extension on what i thought I could try to do for him.
 
@Mike Any suggestions? After taking his data directory and moving the files into a created database it is only showing MyISAM tables.


jaydb.webp




Trying to dump the database also errors of tables not found.

mysqldump -R -q jaysql_xf1 | gzip -q -9 - > xf1.sql.gz

Error: Couldn't read status information for table archived_import_log ()
mysqldump: Couldn't execute 'show create table `archived_import_log`': Table 'jaysql_forum.archived_import_log' doesn't exist (1146)
root@nitro #
 
Innodb databases are not stored in data directories unless innodb_file_per_table is enabled in my.cnf

All innodb databases are stored in one file called "ibdata1" in /var/lib/mysql /

Path and filename may change depending on the panel. I'm not sure. This is for cpanel.
 
Last edited:
Back
Top Bottom