MyBB Community Forums

Full Version: Who was been today online
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Where i can get this pluguin for 1.6.7?
http://mods.mybb.com/view/show-users-who...ered-today
You've to change the compatibility line from 14* to 16*
(2012-04-08, 10:48 AM)Yaldaram Wrote: [ -> ]http://mods.mybb.com/view/show-users-who...ered-today
You've to change the compatibility line from 14* to 16*

THIS IS REGISTER TODAY. I Need Who wass been today online to 24 hourse., not register.. Omg?
Ah, try this: http://mods.mybb.com/view/online-today-1.2.2

Open plugin file and find;
"compatibility" =>	"14*",
and Change 14* to 16*

It should work Smile
error

SQL Error:
1366 - Incorrect integer value: '' for column 'tid' at row 1
Query:
INSERT INTO mybb_templates (tid,title,template,sid) VALUES ('','online_today_index',' {$lang->whos_online_today} [{$lang->complete_list}] {$lang->online_note_today}
{$onlinemembers} ','-1')
Open plugin file and find the following;
"tid"		=> NULL,
and Change it into;
"tid"		=> 0,
(2012-04-08, 04:41 PM)Yaldaram Wrote: [ -> ]Open plugin file and find the following;
"tid"		=> NULL,
and Change it into;
"tid"		=> 0,

thank very much.

can help with http://mods.mybb.com/view/usergroup-legend ??

MyBB has experienced an internal SQL error and cannot continue.

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1366 - Incorrect integer value: 'no' for column 'isdefault' at row 1
Query:
INSERT INTO mybb_settinggroups (gid,name,title,description,disporder,isdefault) VALUES ('0','ugl_mybbro','Usergroup Legend','This will add a nice little legend at the end of your forum, above the Board Statistics.','35','no')


error
Open plugin file and search for;
"isdefault"         => "no"
and Change it into;
"isdefault"         => "0"
how to fix it?
Yes, search for each occurance of;
"sid"               => NULL,
and Change it into;
"sid"               => 0,

Then, search for;
"tid"		=> NULL,
and Change it into;
"tid"		=> 0,
Pages: 1 2