MyBB Community Forums

Full Version: Incompatible with mybb 1.6.10
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I found a plugin i would like to use on my forum, but if i install/activate them, it says "This plugin is incompatible with MyBB 1610"

Plugin is called blast: http://community.mybb.com/thread-61416.html

k1R@
Go in to the plugins code

inc/plugins/blast.php

and change

function blast_info()
{
    return array(
        'name'            => 'Blast',
        'description'    => 'Shows the blast in user\'s post.',
        'website'        => 'http://mybbvn.com/',
        'author'        => 'Joey_Pham',
        'authorsite'    => 'http://mybbvn.com/',
        'version'        => '1.0',
		"guid" 			=>  '0c141e215888e5a72191e0017555c934',
        'compatibility' => '14*',

    );
}

To

function blast_info()
{
return array(
'name' => 'Blast',
'description' => 'Shows the blast in user\'s post.',
'website' => 'http://mybbvn.com/',
'author' => 'Joey_Pham',
'authorsite' => 'http://mybbvn.com/',
'version' => '1.0',
"guid" => '0c141e215888e5a72191e0017555c934',
'compatibility' => '16*',

);
}

Then it should install. But don't expect it to work perfectly because its not been designed to be compatible with 1.6.
Thanks for your help! But as you said it does not work as it maybe should usually.

I deleted it again.

k1R@