Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge does not respect the threadid vbulletin #293

Open
3dpoder opened this issue Apr 1, 2022 · 1 comment
Open

Merge does not respect the threadid vbulletin #293

3dpoder opened this issue Apr 1, 2022 · 1 comment

Comments

@3dpoder
Copy link

3dpoder commented Apr 1, 2022

Merge does not respect the threadid number?

I have done the merge from vbulletin but the url ID is different:

vbulletin --> showthread.php?t=141301
Mybb -----> showthread.php?tid=107762

How can I redirect one to the other?

It is that if not, it would lose the google indexing of years.

@xJuvi
Copy link

xJuvi commented May 28, 2022

Hi,
i think the reason is, that you can merge into an exist MyBB with threads.

The vBulletin ThreadID is temporary stored in "import_tid"

// vBulletin 5 values
$insert_data['import_tid'] = $data['threadid'];

The value "tid" (which is used in the url) is generated by auto_increment. Maybe, but untested, you can add th following:

$insert_data['tid'] = $data['threadid'];

But note, than you shouldn't have any theads in your MyBB.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants