Hallo, Gast! (Registrieren)

Wir wünschen allen Besuchern frohe Ostern!

Letzte Ankündigung: MyBB 1.8.37 veröffentlicht (04.11.23)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
Quick Re-Install
#1
Eine neue Erweiterung wurde veröffentlicht: Quick Re-Install

Zitat:Quickly Uninstall and Re-install plugin with just a click in the plugin config.

There are some manual install to this!

In ./admin/modules/config/plugins.php
Code:
Go find
$table->construct_header($lang->controls, array("colspan" => 2, "class" => "align_center", "width" => 300));
Then change the 2 to 3

ADD
$table->construct_cell(" ", array("class" => "align_center", "width" => 150));
end of the if($installed == false) statement before closed with bracket.

ADD
$table->construct_cell($quickri, array("class" => "align_center", "width" => 150));
end of the else if($active_plugins[$codename]) statement before closed with bracket.

ADD
$table->construct_cell(" ", array("class" => "align_center", "width" => 150));
end of the else if($installed == true) statement before closed with bracket.

When you uninstall this plugin, you're going to have to revert the page back!
Zitieren