MyBB Community Forums

Full Version: Warnings Mod Help [URGENT]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I have just started using MyBB, and I can't say that I am too satified. Well, with MyBB I am. With this hack, I am NOT. It has deleted my AdminCP! Help?
When you say your ACP has been deleted, what exactly do you mean? What happens when you attempt to access your ACP? Are you presented with an error of some kind? You need to give as much detail as possible.

Can you also post a link to the mod you are referring to?
Nevermind, I got it right...must have been the CHMOD.
This has just happened to me. The admin cp panel just vanishes.
What have i done wrong
please help
When you say the admin cp "vanishes", do you mean the link to the admin cp vanishes or the actual admin files/directory vanish from the folder of your MyBB installation?
When you are in the admin cp on the left hand sidewhere you have all the options the board settings vanishes and is replaced by the warnings cp
Upload the attached file to inc/plugins/ directory and overwrite the existing file.
Nope that didnt work did the same and removed the board settings again
Maybe this helps...?
Tazfan Wrote:
Smethead Wrote:
Tazfan Wrote:i have found a bug in the new Forum Warning System for mybb 1.2

when u add the pligin you loss

Board Settings

* Change
* Add New Setting
* Plugin Manager


can this get fix as i love this pligin but i also need the Board Settings to be in the acp to lol


chees for the nice plugin

Tazfan
Sorry for the late reply. I don't come online on this forum very often.
I've taken a look at the problem now and I think you can solve it by doing this:
open inc/plugins/fws.php and find:
$key = key($menu)+10;
replace with:
$key = key(array_keys($menu))+10;
Save the file and upload it again.

thank you for reporting Wink

Oh, and if you have PHP 3 or lower installed (you can see that on the homepage of your admincp) add this at the bottom of the file:
function array_keys()
	{
		$t = array();
		while (list($k,$v) = each($arr)) {
			if ($term && $v != $term) {
				continue;
			}
			$t[] = $k;
		}
		return $t;
	}

yes that work cheers and thank you very much for your help

a very nice mybb mod

and the is no porblem for reporting it cheers

again

Tazfan
Pages: 1 2