Also is there an easy SQL query that I can run to see if all the entry_id’s in the exp_weblog_data and exp_weblog_titles tables are the same
I think
SELECT DISTINCT t.entry_id
FROM exp_weblog_titles t
WHERE t.entry_id NOT IN
(SELECT d.entry_id FROM exp_weblog_data d);will show all entry id’s in exp_weblog_titles that are not in the data table.
Andrew