PHPBB3-14527 Dataloss caused by link shortening (maybe)
Re: PHPBB3-14323 / PHPBB3-14332 - Link shortening
Ideally you would post that as a new topic, as it is unrelated to this one.
Re: PHPBB3-14323 / PHPBB3-14332 - Link shortening
If the last two and a half pages of this thread realy are unrelated to this thread, then there should a moderator just split this thread. Seems better than having two threads on the same issue...
FreeBSD Remote Installation ● PayPal.Me/JoeUser
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
PHPBB3-14527 Dataloss caused by link shortening
Since there is no progress: https://tracker.phpbb.com/browse/PHPBB3-14527
@Devs: Stop implementing new features and fix this nasty showstopping bug first.
Start reading here https://area51.phpbb.com/phpBB/viewtopi ... 41#p288141
@Devs: Stop implementing new features and fix this nasty showstopping bug first.
Start reading here https://area51.phpbb.com/phpBB/viewtopi ... 41#p288141
FreeBSD Remote Installation ● PayPal.Me/JoeUser
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
- DavidIQ
- Customisations Team Leader
- Posts: 1905
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: PHPBB3-14323 / PHPBB3-14332 - Link shortening
I'll move the posts but you've posted links to posts that might no longer make sense so I leave that for you to fix.Joe User wrote: Thu Mar 10, 2016 10:03 pm If the last two and a half pages of this thread realy are unrelated to this thread, then there should a moderator just split this thread. Seems better than having two threads on the same issue...
Re: PHPBB3-14527 Dataloss caused by link shortening (maybe)
The dataloss is fixed now, thanks.
But there are some more problems with link parsing left unfixed.
But there are some more problems with link parsing left unfixed.
FreeBSD Remote Installation ● PayPal.Me/JoeUser
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Re: PHPBB3-14527 Dataloss caused by link shortening (maybe)
What would those be?
Re: PHPBB3-14527 Dataloss caused by link shortening (maybe)
Links like ftps://www.phpbb.com/ are parsed wrong.
FreeBSD Remote Installation ● PayPal.Me/JoeUser
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Re: PHPBB3-14527 Dataloss caused by link shortening (maybe)
There's a config setting that governs which URL schemes are allowed. You can change it via CLI but I don't know how to change it otherwise. You'll need to purge your cache afterwards.
Code: Select all
./bin/phpbbcli.php config:set allowed_schemes_links "http,https,ftp,ftps"
Re: PHPBB3-14527 Dataloss caused by link shortening (maybe)
Fine, but the hardcoded
is the real problem.
It should be restricted to instead of
Even better, just remove this buggy hardcoding entirely.
Code: Select all
.*www => http://www
It should be restricted to
Code: Select all
(EOL|SPACE)www
Code: Select all
.*www
FreeBSD Remote Installation ● PayPal.Me/JoeUser
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task,
and one of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Re: PHPBB3-14527 Dataloss caused by link shortening (maybe)
You really need to get rid of that abrasive tone if you want people to read your comments.