Thanks for the warning. I have DB backups galore and can even recreate the old broken system if necessary.thecoalman wrote: ↑Fri Sep 27, 2024 6:26 pm This should go without saying but backup DB first You can reparse all posts using phpBB's CLI.
I've successfully ran the reparser with and without the --safe-mode option.thecoalman wrote: ↑Fri Sep 27, 2024 6:26 pm https://www.phpbb.com/support/docs/en/3 ... -reparser/
If that does not solve your problem then copy full text of a problematic post from DB and post here in the code tags.
Code: Select all
<t>[quote="ElectricSheep"]https://www.oldlinegarrison.com/phpBB3/viewtopic.php?f=84&t=12140<br/>
<br/>
This thread is wonky and a priority to fix![/quote]<br/>
<br/>
That is the same error I was seeing on other posts.</t>
1
?Yes it is.
Code: Select all
[quote="ElectricSheep"]https://www.oldlinegarrison.com/phpBB3/viewtopic.php?f=84&t=12140<br/>
<br/>
This thread is wonky and a priority to fix![/quote:q6n6xsd]
<br/>
That is the same error I was seeing on other posts.
:q6n6xsd
is some example value from bbcode_uid
field) and the latter would look something like
Code: Select all
<r><QUOTE author="ElectricSheep"><s>[quote="ElectricSheep"]</s><URL url="https://www.oldlinegarrison.com/phpBB3/viewtopic.php?f=84&amp;t=12140"><LINK_TEXT text="https://www.oldlinegarrison.com/phpBB3/ ... mp;t=12140">https://www.oldlinegarrison.com/phpBB3/viewtopic.php?f=84&amp;t=12140</LINK_TEXT></URL><br/>
<br/>
<br/>
This thread is wonky and a priority to fix!<e>[/quote]</e></QUOTE>
<br/>
That is the same error I was seeing on other posts.</r>
Code: Select all
SELECT * FROM `phpbb_posts` WHERE `enable_bbcode` = 1 AND `post_text` LIKE '%[q%' AND `post_text` LIKE '%<t>%' ;
Thanks a ton for your help this far. I've had a long conversation with them about this already and they are willing to accept that stuff was just broken for a while and this is the result. Your query pulled back about 50 records of which I'd guess 80% of them are "broken" posts. Several are just formatting errors like missing closing tags in the BBcode.thecoalman wrote: ↑Sat Sep 28, 2024 10:13 am Appears you are in no where land. You can manually edit them to fix it, how many do you have?
Code: Select all
SELECT post_id FROM `phpbb_posts` WHERE `enable_bbcode` = 1 AND `post_text` LIKE '%[q%' AND `post_text` LIKE '%<t>%' ;