MyBB Community Forums

Full Version: update plugins to work with 1.6
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
If anyone is wondering, Google SEO plugin does not work.
(2010-08-05, 01:07 AM)iBf Wrote: [ -> ]If anyone is wondering, Google SEO plugin does not work.
It works!

(2010-08-05, 01:14 AM)mrl586 Wrote: [ -> ]
(2010-08-05, 01:07 AM)iBf Wrote: [ -> ]If anyone is wondering, Google SEO plugin does not work.
It works!

Are your URL's how they should be? Enabling the plugin makes no difference to mine at all.

You must adjust this plugin settings.

PS. Copy this file over current functions.php file.
(2010-08-04, 08:37 PM)aglioeolio Wrote: [ -> ]Are there any "1.4x=>1.6x Plugins Update Guide", Like when 1.4 was released? => http://blog.mybb.com/2008/07/11/plugin-u...n-authors/

Thanks Smile

1) Some plugin hooks were added in modcp.php
2) Some plugin hooks were flipped with the eval statements in a few places to make it more consistent
3) The ACP urls now use a dash (-) instead of a slash (/) to workaround mod_security's irritation but the old way is still backwards compatible
4) The "remember" column in the users table has been removed in MyBB 1.6. This column was then added to the sessions table instead so it may be used on a per-session basis versus a per-user basis.

That's... about.. it. MyBB 1.6 mainly added features, not many things were modified at all that would affect current plugins
You forgot that some object methods are private now. Some of my plugins had used these methods. Now it's not possible anymore (and I have to write "workarounds"). Wink

@all: Before modifying plugin files just check for plugin updates through Admin CP. That should be your first step!
(2010-08-03, 02:30 PM)AKT Wrote: [ -> ]can we done it through admin panel area?

There is a plugin that will allow you to edit other plugins via the ACP.
- announcement.php was renamed to announcements.php Wink (at least the define in code was), although that happened in 1.4 too.

There aren't any major changes that would affect plugins on a large scale (like how the database interface changed in 1.4 so it caused old plugins trying to change mybb_mybb_table instead of mybb_table),

It's the minor changes you have to look out for. And maybe the new MyBB features such as thread prefixes to add support for, if you do anything with threads.

Plugin authors should update their compatibility to 16* and then simply test every nook and cranny of their plugin thoroughly to verify that it is still in 100% full working order. And fix whatever issues may arise.
@Ryan & frostschutz: Thank you both Smile
Pages: 1 2 3