Welcome, Guest. Please Login or Register.
November 28, 2024, 09:30:38 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.5.x] Who's Online w/ Hidden Users w/ Flags « previous next »
Pages: 1 ... 6 7 [8] 9 10 ... 15 Reply Ignore Print
Author Topic: [Done 1.5.x] Who's Online w/ Hidden Users w/ Flags  (Read 69835 times)
BiErLeEuW
Full Member
***
Posts: 174


WWW
Re:[Beta 1.4.1] Who's Online
« Reply #105 on: December 29, 2002, 10:43:08 PM »
Reply with quote

tnx  :) I think i will take the mod :)
Logged
HighBoy
Jr. Member
**
Posts: 72


I love it !

Re:[Beta 1.4.1] Who's Online
« Reply #106 on: December 30, 2002, 03:40:42 PM »
Reply with quote

Hi !

I am using the mod on my 1.5.0 board and it works great..
But i have one small problem, and i also had this problem with the version for the 1.4.1.

Check this image

As you can see HighBoy (That's me) is listed as a user an as a guest at the same time....
It always does that, and i would really appreciate if anyone could come up with a solution...
Logged
1979Z28
Sr. Member
****
Posts: 324


WWW
Re:[Beta 1.4.1] Who's Online
« Reply #107 on: December 30, 2002, 04:30:04 PM »
Reply with quote

As this mod works perfectly, the only thing I can suggest is it's something you're doing. ;)

I see that you have two windows open there. In one of them, are you logged in, and not logged in on the other? If you 'log in automatically', you shouldn't have this problem. I browse in multiple windows all the time, and because I have the forum automatically log me in whenever I visit, there's only one line with me in it, rather than being a 'guest' and logged in.

It's the ONLY thing it can be. ;) You're logged in on one window and viewing 'the news' with it, while you're looking at the who's online page with your registered window.
Logged
HighBoy
Jr. Member
**
Posts: 72


I love it !

Re:[Beta 1.4.1] Who's Online
« Reply #108 on: December 30, 2002, 05:04:02 PM »
Reply with quote

Quote from: 1979Z28 on December 30, 2002, 04:30:04 PMAs this mod works perfectly, the only thing I can suggest is it's something you're doing. ;)

I see that you have two windows open there. In one of them, are you logged in, and not logged in on the other? If you 'log in automatically', you shouldn't have this problem. I browse in multiple windows all the time, and because I have the forum automatically log me in whenever I visit, there's only one line with me in it, rather than being a 'guest' and logged in.

It's the ONLY thing it can be. ;) You're logged in on one window and viewing 'the news' with it, while you're looking at the who's online page with your registered window.
Hmmm my board does log me on automatically....... ???
Logged
1979Z28
Sr. Member
****
Posts: 324


WWW
Re:[Beta 1.4.1] Who's Online
« Reply #109 on: December 30, 2002, 05:14:37 PM »
Reply with quote

That's.. weird then. Might be a cookie issue with your browser not recognizing your login at first, so it displays guest, but anytime you go to another page somewhere else on the forum, it'll show you're logged in..

Uh, mebbe try this:
Go to Internet Options, and Privacy. See what setting that is on. I'd suggest either 'Accept all Cookies', or 'Low'. MAYBE 'Medium'. Anything higher than that might be asking for some problems.

Then again, this might not even be it. ;) Might wanna try it out, and if that doesn't end up fixing it, then you can reset the settings. Be sure to give it about 15 minutes, if it shows you on as a 'Guest' and as logged in, to remove the Guest listing.
Logged
1979Z28
Sr. Member
****
Posts: 324


WWW
Re:[Beta 1.4.1] Who's Online
« Reply #110 on: December 31, 2002, 03:30:02 AM »
Reply with quote

I found a typo in the mod file. When you go to edit ModSettings.php, there's a \ where there shouldn't be, and if you go to your modsettings file from the admin screen, an error at the top of the message will show as such, that there's a \ in the wrong place ;D

Here's the exact line in the mod file:

<add after>
                        <td class="titlebg" bgcolor="' . $color['windowbg2'] . '" colspan="3" align="center"><strong>' . $txt['who80'] . '</strong></td>
                     </tr><tr>
                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"></td>
                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"><font size="2">' . $txt['who94'] . '</font></td>
                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"><input type="checkbox" name="who_enable"' . $who_enable . '></td>
                     </tr><tr>
                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"></td>
                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"><font size="2">' . $txt['who95'] . '</font></td>
                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"><select name="who_view"><option value="0"' . $who_viewGuest . '>' . $txt\
['who96'] . '</option><option value="1"' . $who_viewMember . '>' . $txt['who97'] . '</option><option value="2"' . $who_viewGM . '>' . $txt['who98'] . '</option></select></td>
                     </tr><tr>
</add after>


More specificly, here's the exact line:


                  <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"><select name="who_view"><option value="0"' . $who_viewGuest . '>' . $txt\
['who96'] . '</option><option value="1"' . $who_viewMember . '>' . $txt['who97'] . '</option><option value="2"' . $who_viewGM . '>' . $txt['who98'] . '</option></select></td>

It should be:


                        <td class="windowbg2" bgcolor="' . $color['windowbg2'] . '"><select name="who_view"><option value="0"' . $who_viewGuest . '>' . $txt['who96'] . '</option><option value="1"' . $who_viewMember . '>' . $txt['who97'] . '</option><option value="2"' . $who_viewGM . '>' . $txt['who98'] . '</option></select></td>



« Last Edit: December 31, 2002, 03:35:21 AM by 1979Z28 » Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.4.1] Who's Online
« Reply #111 on: December 31, 2002, 09:43:45 AM »
Reply with quote

Oops copy and pasted from the command line and forget to get rid of that, fixed now.

As for what the final version add probably not anything else but we'll see. :)

As for your problem Highboy the mod doesn't actually change anything regarding when an entry is written to the log_online table so if you are showing up twice and you know you shouldn't be that would be a problem with YaBB not the mod. The log is kept based on either the memberName, if you're logged in, or the IP if you are a guest. So it is possible to have a guest and user with the same IP.
Logged
HighBoy
Jr. Member
**
Posts: 72


I love it !

Re:[Beta 1.4.1] Who's Online
« Reply #112 on: December 31, 2002, 10:20:23 AM »
Reply with quote

Quote from: Gobalopper on December 31, 2002, 09:43:45 AMOops copy and pasted from the command line and forget to get rid of that, fixed now.

As for what the final version add probably not anything else but we'll see. :)

As for your problem Highboy the mod doesn't actually change anything regarding when an entry is written to the log_online table so if you are showing up twice and you know you shouldn't be that would be a problem with YaBB not the mod. The log is kept based on either the memberName, if you're logged in, or the IP if you are a guest. So it is possible to have a guest and user with the same IP.
Ok thanks...
Happy New Year to all of you !
Logged
Yordy
Noobie
*
Posts: 40


Dekroeg!

ICQ - 96762844Yo_rdy@hotmail.com WWW
Re:[Beta 1.4.1] Who's Online
« Reply #113 on: January 01, 2003, 04:29:58 PM »
Reply with quote

Can someone please tell me where to download the MOD, the link is broken.

Thanks in Advance.
Logged
Dr_Michael
Sr. Member
****
Posts: 317


Hellenic web

WWW
Re:[Beta 1.4.1] Who's Online
« Reply #114 on: January 01, 2003, 05:19:35 PM »
Reply with quote

Quote from: Yordy on January 01, 2003, 04:29:58 PMCan someone please tell me where to download the MOD, the link is broken.

Thanks in Advance.

Yes please where can I find the last version of it? The link is broken!
Logged

Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.4.1] Who's Online
« Reply #115 on: January 01, 2003, 10:26:35 PM »
Reply with quote

Server is down as it crashed last night, should hopefully go back up shortly.
Logged
Yordy
Noobie
*
Posts: 40


Dekroeg!

ICQ - 96762844Yo_rdy@hotmail.com WWW
Re:[Beta 1.4.1] Who's Online
« Reply #116 on: January 02, 2003, 11:02:55 AM »
Reply with quote

Site seems to be up again.
Installed the MOD and it looks superb!
Thanks m8!
Logged
Behr
Noobie
*
Posts: 43


Re:[Beta 1.5.1RCB37] Who's Online
« Reply #117 on: January 26, 2003, 03:36:47 AM »
Reply with quote

This is just the mod file to make it work with 1.5.1RCB37.
I changed it for some of my friends so i m putting it here too. Its just mod file only. You have to download the rest of the package from the previous posts.

Who Mod File Only.

Behr
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Who's Online
« Reply #118 on: February 17, 2003, 07:59:30 AM »
Reply with quote

I've updated the file for the latest version of 1.5.1 and included some small bug fixes. Let me know of any problems.
Logged
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Beta 1.5.1] Who's Online
« Reply #119 on: February 17, 2003, 10:39:48 AM »
Reply with quote

kewl, will try it soon :)
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
Pages: 1 ... 6 7 [8] 9 10 ... 15 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.5.x] Who's Online w/ Hidden Users w/ Flags « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.062 seconds with 20 queries.