Importing likes from phpBB addon

hibiskus

Active member
I need someone who can migrate likes from a phpBB addon to XenForo1.

You have to import them and rebuild it.

Here in this thread, I have already written down some research.

This is the addon i have used, https://www.phpbb.com/community/viewtopic.php?f=456&t=2423931

Those are the rows of phpBB, 'phpbb_thanks' table:
post_id
poster_id
forum_id
topic_id
user_id
thanks_time

Those are the rows of XF1, "xf_liked_content" table:
like_id
content_type
content_id
like_user_id
like_date
content_user_id


A quote from the coder:

Палыч said: said:
In this table (three fields) stores all information

SQL: said:
CREATE TABLE phpbb_thanks (

post_id mediumint(8) NOT NULL default '0',

poster_id mediumint(8) NOT NULL default '0',

user_id mediumint(8) NOT NULL default '0',

PRIMARY KEY (post_id , user_id));
post_id - post id
poster_id - author by post
user_id - author THANKS
If THANKS removed - removed record
 
Top Bottom