Importing tags

Go to your phpMyAdmin (or equivalent) and run this query

Code:
select count(*)
from archived_import_log
where content_type = "thread"

If you don't have a archived_import_log table try xf_import_log instead. So


Code:
select count(*)
from xf_import_log
where content_type = "thread"

It is possible that when you imported you might have archived with a different table name. SO we need that table.
 
Please open phpmyadmin and see what archived logs there are. They will be right at the top.
Note down the exact names.
 
This query returned some 33000+ rows... Does it sound good! :cool:

The second query returned Zero rows.

Should be good. But as Alfa says, verify from phpMyAdmin also. Did you have about 33K threads when you imported?

Btw just to be clear, I am just helping out. Contact Alfa for the addon... :)
 
Top Bottom