MyBB Community Forums

Full Version: How Does One Update a Plugin?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey there everyone.

I have a somewhat basic question. I have a plugin that was for version 1.6 and 1.4. However, it's out of date and won't work with MyBB v1.8.4 - my question is, how does one update the plugin to work? I see nothing in there except simple PHP code and I don't see anything that checks for a MyBB version. I saw a thread on another forum about how to do this but I appear to have lost the link.

Thanks for any and all support, feel free to let me know if you have any questions. Smile

- Ivy
WORKING SOLUTION:
(2015-03-10, 04:09 PM)Wozzer Wrote: [ -> ]Look through the plugin file for the compatibility line.

Possibly currently says something like "compatibility" => "14*, 16*"
Change to "compatibility" => "14*, 16*, 18*"

Doesn't always work as it depends on the actual plugin but worth a try.
Look through the plugin file for the compatibility line.

Possibly currently says something like "compatibility" => "14*, 16*"
Change to "compatibility" => "14*, 16*, 18*"

Doesn't always work as it depends on the actual plugin but worth a try.
(2015-03-10, 04:09 PM)Wozzer Wrote: [ -> ]Look through the plugin file for the compatibility line.

Possibly currently says something like "compatibility" => "14*, 16*"
Change to "compatibility" => "14*, 16*, 18*"

Doesn't always work as it depends on the actual plugin but worth a try.

That worked. Smile Thanks bud. Appreciate the help!