Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Seems like there are URLs in vBulletin that contain other punctuation as well, so far I've encountered: !, ( and ). Changing line 261 in Router.php from:[CODE="php"]$regexMatch = '/\/' . $action . '(?:\/(?P<content_id>\d+)-[a-z0-9-]+(?:\/|\?|$))(?:page(?P<page>\d+))?/i';[/CODE]to[CODE="php"]$regexMatch = '/\/' . $action . '(?:\/(?P<content_id>\d+)-[a-z0-9-!\(\)]+(?:\/|\?|$))(?:page(?P<page>\d+))?/i';[/CODE]seems to have resolved most of what I've run into but I'm sure there are others, so may be worth addressing this in a bit of a different way
Seems like there are URLs in vBulletin that contain other punctuation as well, so far I've encountered: !, ( and ). Changing line 261 in Router.php from:
!
(
)
[CODE="php"]$regexMatch = '/\/' . $action . '(?:\/(?P<content_id>\d+)-[a-z0-9-]+(?:\/|\?|$))(?:page(?P<page>\d+))?/i';[/CODE]
to
[CODE="php"]$regexMatch = '/\/' . $action . '(?:\/(?P<content_id>\d+)-[a-z0-9-!\(\)]+(?:\/|\?|$))(?:page(?P<page>\d+))?/i';[/CODE]
seems to have resolved most of what I've run into but I'm sure there are others, so may be worth addressing this in a bit of a different way
We use essential cookies to make this site work, and optional cookies to enhance your experience.
See further information and configure your preferences