MyBB Community Forums

Full Version: Video & Image Bug/Glitch?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Every Image & Video put on my forum shows this:
[Image: www.example.com]
[Video: www.example.com]

(example.com is just an example obviously, it shows the link to the certain video or image posted)

Note: This is not an individual issue it is a site-wide issue and I have spoke with many friends about this and it has never happen to them before so they are not quite sure on what to do.
What are the recent changes of your forum (new plugins, template and or theme changes or even core file changes)?
Quote:admin panel >> configuration >> settings >> Clickable MyCode Editor
all options should be set to ON or Yes except Clickable MyCode Editor in Partial Mode

at user control panel
Edit Options --> Thread View Options --> check in below (select / tick)
* Display images in posts
* Display videos in posts
see also replies here
Check in your UCP whether "Show images/videos" is checked. If not you can enable it with this query:

UPDATE mybb_users SET showimages=1, showvideos=1;

Note that you may need to replace "mybb_" with your table prefix.
(2015-06-25, 08:12 AM)JonesĀ H Wrote: [ -> ]Check in your UCP whether "Show images/videos" is checked. If not you can enable it with this query:

UPDATE mybb_users SET showimages=1, showvideos=1;

Note that you may need to replace "mybb_" with your table prefix.

Thank you, Jones H!

This has fixed my issue. I'm not really sure what caused it though.