![]() |
|
How to update MyBB plugins - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Design (https://sinister.li/Forum-Design) +--- Forum: Web Design (https://sinister.li/Forum-Web-Design) +--- Thread: How to update MyBB plugins (/Thread-How-to-update-MyBB-plugins) |
How to update MyBB plugins - Dolan - 04-11-2013 Sometimes you might find a plugin that isn't in development anymore. Something really useful that can change the way users can use your forum completely. Well, maybe not something that dramatic but still, there are some brilliant plugins no longer in development. Have no fear, it is really quite simple to do. Step 1. Open up your plugins config file. "inc/plugins/plugin.php" Example: ![]() Step 2. Next you want to find the information of the plugin. This usually contains the author name, version number, and it's compatibility If you cannot find it, simple search for "_info" or "compatibility". It's at the beginning of the file, so it shouldn't be hard to find. ![]() ![]() Step 3. As you can see above, this isn't for a recent version of MyBB, so we're going to want to change the "14*" to one of the following:
There may be a few bugs with the outdated plugin, but I am yet to come across such a thing. Enjoy. RE: How to update MyBB plugins - ViN - 04-11-2013 I never knew it was that simple, thanks a lot. RE: How to update MyBB plugins - Dolan - 04-11-2013 (04-11-2013, 07:10 AM)ViN Wrote: I never knew it was that simple, thanks a lot. No problem, it's really not that hard when you have nothing else to spend time on
RE: How to update MyBB plugins - Clique - 04-11-2013 That's all you have to do? Seems pretty easy actually. Nice job! RE: How to update MyBB plugins - Wonders - 04-11-2013 It's not recommended you do this with most plugins, it can cause vulnerabilities. It's best to download the most recent version(s) rather then simply changing that line. Thanks anyway, nice share. RE: How to update MyBB plugins - Redbull - 04-11-2013 Good Guide Dolan, but like wonders said it can do that
RE: How to update MyBB plugins - Dolan - 04-12-2013 (04-11-2013, 07:13 PM)Wonders Wrote: It's not recommended you do this with most plugins, it can cause vulnerabilities. It's best to download the most recent version(s) rather then simply changing that line. As I said in the thread, doing so may cause some bugs. Of course it's always better to download the most recent versions, but many plugin developers have stopped developing and left many plugins outdated. RE: How to update MyBB plugins - Wonders - 04-12-2013 (04-12-2013, 01:19 AM)Dolan Wrote:(04-11-2013, 07:13 PM)Wonders Wrote: It's not recommended you do this with most plugins, it can cause vulnerabilities. It's best to download the most recent version(s) rather then simply changing that line. Then it's not worth risking your website imo. |