MyBB Community Forums

Full Version: Are these plugins compatible with MyBB 1.6.5?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hey everyone,

I'm using the following plugins and don't know if they're compatible with MyBB 1.6.5 or not:

MyBB GoMobile
Last Visitors in Profile
PluginLibrary
Profile Comments
Registration Security Question by G33K
Social Sites by MattRogowski
Thank You/Like System (1.5) by G33K
Thread Rating Log (1.1)


Thank you
In the 1.6.5 plugin changes thread paveman posted a script that woulc check for incompatible plugins.
Link please??
myBB Staff should "tag" current plugins database (MODs => plugins) with [b]1.6.5 compatible[b] or not... it could be a lot easier than recommend manually editing each abandoned plugin pre-1.6.5
And we're going to go through every single of the hundreds of mods and tag them manually.



No.


Compatibility checker: http://community.mybb.com/thread-106729-...#pid777848
(2011-11-26, 03:31 PM)Paul H. Wrote: [ -> ]In the 1.6.5 plugin changes thread paveman posted a script that woulc check for incompatible plugins.

http://community.mybb.com/thread-106729-...#pid777848

Bring that attachment to the First page it could be a lot more helpful...

Tks for the help Paul H. & Pavemen
Ok I found it thank you PAUL, I did that and most of the issues are "Return Code"

Return code, postbit, socialsites_postbit

$plugins->add_hook("postbit", "socialsites_postbit");

What should I do to the upper code? Huh
Go to the function socialsites_postbit

Change
function socialsites_postbit($varname)

to

function socialsites_postbit(&$varname)

It's all stated clearly in the first post.

http://community.mybb.com/thread-106729.html
^
Thanks but those are the ones that figure in the second section as stated by Dylan M., "postbit" doesn't
(2011-11-26, 03:41 PM)TheGarfield Wrote: [ -> ]Ok I found it thank you PAUL, I did that and most of the issues are "Return Code"

Return code, postbit, socialsites_postbit

$plugins->add_hook("postbit", "socialsites_postbit");

What should I do to the upper code? Huh

You're looking at the wrong part.
If the issue is return code, and the hook is 'postbit' and 'socialsites_postbit', look for this,

function socialsites_postbit(&$something here)

and add the following before the closing }

return $something here;

CTRL + F for 'socialsites_postbit' and find the &$var.
Pages: 1 2