Question Migrating Likes to XF

Status
Not open for further replies.

RedFive

Customer
Hello,

I have an old subscription to your Thanks / Likes product on vB 4 (it's very popular on my forum btw - thanks!), and we're now considering migrating to XenForo.

XF seems to have a version of Likes functionality inbuilt, so do you have a script available that would transfer data gathered by your script and migrate it into XF?

Thanks (y)
 
Last edited:
Hello @usingenglish,

We hope your ticket regarding Advanced Post Thanks / Like has been addressed to your satisfaction. This ticket has now been scheduled to be closed.

If your ticket has not been resolved, you can reply to this thread at any point in the next 7 days in order to reopen the ticket, afterwards this thread will be closed.

Please do not reply to this thread if your ticket has been resolved.

Thank you.


- DragonByte Technologies, Ltd.
 
Thanks for the help.

Here's the updated query for 2.2

Code:
INSERT INTO xenforo.`xf_reaction_content` (content_type, content_id, reaction_user_id, reaction_date, content_user_id)
    SELECT 'post', dbt.contentid, dbt.userid, dbt.dateline, post.userid
        FROM vBulletin.`dbtech_thanks_entry` AS dbt
        LEFT JOIN vBulletin.`post` AS post ON (post.postid = dbt.contentid)
ON DUPLICATE KEY UPDATE
        content_id = VALUES(content_id);

Then Rebuild Reaction Scores with the native tool in Rebuild caches.
 
Hello @usingenglish,

We hope your ticket regarding Advanced Post Thanks / Like has been addressed to your satisfaction. This ticket has now been scheduled to be closed.

If your ticket has not been resolved, you can reply to this thread at any point in the next 7 days in order to reopen the ticket, afterwards this thread will be closed.

Please do not reply to this thread if your ticket has been resolved.

Thank you.


- DragonByte Technologies, Ltd.
 
Status
Not open for further replies.

Legacy Advanced Post Thanks / Like

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
4,029
Customer rating
5.00 star(s) 1 ratings
Back
Top