MyBB Community Forums

Full Version: [SOLVED][Request]Serverboard
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi my name is aidin i owner a server network called interfacepvp currently running minecraft and garrysmodand i found a plugin called serverboard on the mods page it says 1.8.x but doesnt work with 1.8.11 i was wondering if any one could revamp it for me
What is the issue you are getting with the plugin ?
(2017-05-02, 06:03 AM)WallBB Wrote: [ -> ]What is the issue you are getting with the plugin ?

just straight up says this plugin is not compatible with mybb 1.8.11
You can get some plugins to work by changing the compatibility line in the plugin file in inc/plugins folder

Look for something like

return array(
"name" => ,
"description" => ,
"website" => "",
"author" => "",
"authorsite" => "",
"version" => "",
"codename" => "",
"compatibility" => "18*"
);

If it says 16 change it to 18
.....
Change this
define("COMPATIBILITY", "1801,1802,1803,1804,1805,1806,1807,1808");
to
 define("COMPATIBILITY", "18*");
(2017-05-02, 02:02 PM)Ashley1 Wrote: [ -> ]You can get some plugins to work by changing the compatibility line in the plugin file in inc/plugins folder

define("SERVERSBOARD_CORE_PATH", MYBB_ROOT."inc/serversboard/");
define("SERVERSBOARD_IMAGES_PATH", "./images/serversboard/");
define("PLUGIN_WEBSITE", "");
define("PLUGIN_AUTHOR", "Krzysztof \"Supryk\" Supryczyński");
define("PLUGIN_AUTHORNAME", "Supryk");
define("PLUGIN_AUTHORSITE", "");
define("PLUGIN_VERSION", "3.2");
define("COMPATIBILITY", "1801,1802,1803,1804,1805,1806,1807,1808");
define("CODENAME", "servers_board");


i found that and below it is


   return array(
        "name"                => $lang->serversboard,
        "description"        => $lang->serversboard_desc,
        "website"            => PLUGIN_WEBSITE,
        "author"            => PLUGIN_AUTHOR,
        "authorsite"        => PLUGIN_AUTHORSITE,
        "version"            => PLUGIN_VERSION,
        "compatibility"  => COMPATIBILITY,
        "codename"      => CODENAME,
    );
}

(2017-05-02, 02:37 PM)broatcast Wrote: [ -> ]Change this
define("COMPATIBILITY", "1801,1802,1803,1804,1805,1806,1807,1808");
to
 define("COMPATIBILITY", "18*");

ok ill try it

(2017-05-02, 02:37 PM)broatcast Wrote: [ -> ]Change this

that worked I now installed it hopefully it works

WORKED THANKS