here's a few more common ones that i'm seeing and rules i've used to fix. Some of these may be from IB or even vb or vbseo, so check that you actually need it before using it.
a few misses here from xf in the upgrade path/changed urls. glad this tool is exposing it.
Media albums order has moved:
latest activity seems to have been renamed at some point from recent-activity:
smilies (i think this is from ipb days or vb)
and of course replace xenforo with your theme name if you are using a custom one
likes became reactions --
old attachments from an old format, maybe vbseo?
a few misses here from xf in the upgrade path/changed urls. glad this tool is exposing it.
Media albums order has moved:
Code:
/(.*)\/media\/users\/(.*)\.(\d+)\/albums/
$1/media/albums/users/$2.$3/
latest activity seems to have been renamed at some point from recent-activity:
Code:
/(.*)\/members\/(.*)\.(\d+)\/recent\-activity/
$1/members/$2.$3/latest-activity
smilies (i think this is from ipb days or vb)
Code:
/(.*)\/images\/smilies\/(.*)\.(.*)/
$1/styles/default/xenforo/smilies/$2.$3
likes became reactions --
Code:
/(.*)\/posts\/(\d+)\/likes/
$1/posts/$2/reactions
old attachments from an old format, maybe vbseo?
Code:
/(.*)\/attachments\/(.*)\-(.*)\.(?:jpg|gif|png)/
$1/files/404.jpg
Last edited:
