• OzzModz is no longer taking registrations. All registrations are being redirected to Snog's Site
    All addons and support is available there now.

Slight Issues with 4.2.2

Steris56

Member
Maybe some of you can shed some light i upgraded to vb 4.2.2 upgraded all my mods ect the issue that i am having now is my staff permissions i have forums out of public eye but when i go in as a s/mod for example i can not see the forum i have looked at all the masks and permissions and it all seems ok i might be missing something obvious
 
Off the top of I my head, I don't know, I have not come across this issue.

Have you disabled all your mods and see if the issue still persists?

Open your includes/config.php file and below <?php add the following.

PHP:
define('DISABLE_HOOKS', true);

So it looks like this:
PHP:
<?php
define('DISABLE_HOOKS', true);
/*=================================================  =====================*\
|| ##################################################  ################## ||
|| # vBulletin 4.2.2

Use a editor like notepad++ to edit any files, don't use Notepad or Wordpad.

If that fixes the issue enable plugins again by adding // before the line you added, then navigate to ACP --> Plugins & Products --> Manage Products and disable one mod at a time until you find the one causing the issue.
 
how do i disable forums like that and still check with forums off the admin are fine is the rest of staff that isnt
 
What do you mean disable forums, you mean the forums them selves where people post in?

what i mean is i have forum closed at the moment and i am using your mod to check user permissions if i disable globally then i wont be able to use your mod and any user other then admin will get forum is closed message
 
OK, try adding this to the config file then.

Code:
$my_unique_ip="XX.XX.XXX.XXX"; // Change this IP to your Unique IP.
if ($_SERVER["REMOTE_ADDR"]==$my_unique_ip) define('DISABLE_HOOKS', true);

Just add your IP in the first line, then hooks will only be disabled for your IP address. :)
 
ok ozzy i found the culprit thanks

now just one more thing the modcp link in the footer i removed some code from template and it still shows that link i have your advanced footer installed but even when i take that bit of code out of footer template it still shows

how would i go about removing that link
 
now just one more thing the modcp link in the footer i removed some code from template and it still shows that link i have your advanced footer installed but even when i take that bit of code out of footer template it still shows

how would i go about removing that link
I think you need to take the call for that out by editing the ozzmodz advanced footer template, "ozzmodz_advanced_footer_footer"
 
Ahh, yeah in the next version I am going to remove it, not entirely sure why I added it anyway.
 
Back
Top