FYI I'm a noob in terms of understanding coding language so please bear with meDid you look into the error logs on the server?
The php-errors.log file for the forum is like 2GB in size - is that normal?
I have no idea what this all means but will try to google Image may be NSFW.Can't say this is going to help but have you tried opening it in the MCP?
If not using phpmyadim first find the post ID. Edit in the posters ID instead of 123456:You'll now have a list of posts from that user in that topic. Determine which one it is and run this. Replace the post ID 123456 with post ID you determined above.Code:
SELECT * FROM `phpbb_posts` WHERE `topic_id` = 8627 AND `poster_id` = 123456;
This all assumes your prefix for phpBB tables is phpbb_, if they are something different you will need to edit that too.Code:
UPDATE `phpbb_posts` SET `post_text` = '<t>I made a boo boo.</t>' WHERE `phpbb_posts`.`post_id` = 123456;
Clik here to view.

Statistics: Posted by Zinnn — Thu Aug 29, 2024 8:30 am