Site in read-only mode

This site is now read-only following the release of MyBB 1.8 and the new mods site.

If you are looking for MyBB 1.8 mods please click here to visit the new mods site.

You can continue to download submissions for MyBB 1.6 and earlier here, however new submissions will only be accepted via the new mods site.

Write Review

Reviews

Fake Who's Online - 1.0 by YuuKT

If you've issues of NO Settings in Configuration page while using this plugin then here is how to resolve it;

Uninstall the plugin.

Then Open plugin file and find;

PHP Code:
function fakewhoisonline_is_installed(){
    global 
$db,$tb;    
    
$query $db->simple_select('settinggroups''*''name="'.$tb.'"'1);
    
$r $db->num_rows($query);
    if(
$r==1) return false;
    return 
true;        


Replace it with the following;

PHP Code:
function fakewhoisonline_is_installed(){
    global 
$db;
    
$query $db->simple_select("settinggroups""COUNT(*) as rows""name='fakewhoisonline'");
    
$rows $db->fetch_field($query"rows");
    if(
$rows 0)
    {
        return 
TRUE;
    }
    
    return 
FALSE;


Re-install it again.

Written By: Yaldaram, 28th June 2012

Fix MySQL errors,
Open plugin file and find:

PHP Code:
$query $db->simple_select('users''*''uid IN'.$fkl1); 

Replace it with the following:

PHP Code:
$query $db->simple_select('users''*''uid IN'.$fkl.''1); 

Written By: IcedCoffee, 13th July 2012

Not Worked for me.. Giving MySQL Error..

Written By: mci, 9th August 2012

This broke my site.
SQL error, FYI.

Written By: iTzz_MaDnEsS, 1st September 2012

Hey plzzz help,
it shows online user from 1st userid, when i choose fixed.
i dont wanna show my first 5 users online......
how can i fix this???
-----------------------------------
BTW this is great plugin....!!
------------------------------------------
NOTE to all:- Plz change above settings(MySQL and the 1st one) in fakewhoisonline.php before installing
-------------------------------------------

Written By: HiTMan_47, 5th September 2012

Very sloppy coding, doesn't work without edits, and even with the edits in the review it still doesn't work. Will edit review if fixed.

Written By: Σᴛᴇʀɴᴀʟ, 2nd November 2012

TERRIBLE PLUGIN

DO NOT DOWNLOAD. WORKED ON MY SITE FOR 4 MONTHS. INSTALLED THIS PLUGIN AND IT DESTROYED MY SITE COMPLETELY. THIS GUY THAT DEVELOPED THIS PLUGIN IS USUALLY PRETTY GOOD I AM A PAID MEMBER ON HIS SITE BUT THIS PLUGIN IS COMPLETE SHIT DON'T DOWNLOAD!

Written By: Jaymoney, 31st December 2012

Why lie? :(

Written By: Nahue, 19th March 2013

It's not work properly. It shows every time msql errors. :(

Written By: NomanProdhan, 29th October 2013

Not work

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
Query:
SELECT * FROM forum_users WHERE uid IN()

Written By: traiphonuiktvn, 22nd April 2014

Do not download. Doesn't work gives of MySQl errors. I used the fixes provided. Still them, I removed it still does. Had to reinstall my entire site. Luckily I had a backup.

Written By: Toneage, 13th August 2014

Write Review