I have converted a lot of usenet and newsgroups posts into a phpbb forum.
This is done using straight inserts into the phpbb database and works fine.
As those posts are not entered using the phpbb web interface, the reparsing was not done.
Most of the posts in phpbb database are not conform the XML standard.
When I edit such a post and save without touching the post text itself, the reparser is used and then the post has the correct XML format.
So I need to reparse those posts to get, for instance, all the BBCodes correctly displayed.
Reading the documentation I can use CLI to reparse. But this seems a bit spartanic.
I would like to have more control which subforums to reparse and also do some small tests without reparsing everything.
(I'm not familiar with CLI and am not comfortable to try it out)
I wonder if there is some kind of extension or php addon to install which does reparsing and let me decide what to reparse.
Also described is that phpbb does this automatically with a cron job, but I think this is not enabled by default?
The posts are there for years now and I do not see any new automatic reparse executed.
Best would be a php file I could place inside my forum and execute it to reparse instead of CLI.
Any help or tips are appreciated.