Hello back,
For people who have the same issue, i’ve took just the table i want:
*Articles:
wp_posts , wp_postmeta (and with uploading the images in the path wp-contnent/uploads the images were affected to there articles via the information of the link in postmeta table)
*Categories:
wp_terms , wp_term_taxonomy, wp_term_relationships
*Comments:
wp_comments, wp_commentmeta
*Authors:
*wp_users, wp_usermeta
=> as i had the prefix chgh21_ prefix on the old DataBase, i’ve used the following query to rename them:
alter table bad_name rename to good_name;
Greetings.