The switch from VB4 to XF 2.1 went very smooth. I'm having one issue with embedded links in imported posts that are not being caught and redirected. Instead it is passing the URL on to the old VB forum. The format of the embedded URLs does not appear to match the pattern expected:
This is the format of the embedded link, where the thread ID is 55247:
The Import redirector seems to want a different format and changes it to this:
If I manually change the url to this it works:
The only difference is "/thread/" vs "/threads/"
The .htaccess rewrite seems to be directing it correctly.
XF301VB/MVC/router.php seems not to handle this particular syntax quite right.
This is the format of the embedded link, where the thread ID is 55247:
Code:
https://www.xxxxxxxx.org/vb/showthread.php?55247-This-is-a-link-to-a-VB-post
The Import redirector seems to want a different format and changes it to this:
Code:
https://www.xxxxxxxx.org/forum/thread/This-is-a-link-to-a-VB-post.55247
If I manually change the url to this it works:
Code:
https://www.xxxxxxxx.org/forum/threads/This-is-a-link-to-a-VB-post.55247
The only difference is "/thread/" vs "/threads/"
The .htaccess rewrite seems to be directing it correctly.
XF301VB/MVC/router.php seems not to handle this particular syntax quite right.
Last edited: