Author |
Message |
welrob
New Member
Joined: Feb 08, 2005
Posts: 10
Location: Nederland
|
Posted:
Sat Oct 17, 2009 12:07 pm |
|
I have a problem with the on-line status members can hide there online status and i switch it off in the your account module. so the members don't see that option no more.
But the std is hide so if new members register, the are auto on hide is there a way to put that off so the user is not auto hide anymore? |
|
|
|
|
Palbin
Site Admin
Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Sat Oct 17, 2009 12:49 pm |
|
Try changing line 127 of modules/Your_Account/public/new_finish.php
From:
Code:$user_allow_viewonline = (isset($user_allow_viewonline)) ? intval($user_allow_viewonline) : 1;
|
To:
Code:
$user_allow_viewonline = (isset($user_allow_viewonline)) ? intval($user_allow_viewonline) : 0;
|
|
_________________ "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan. |
|
|
|
welrob
|
Posted:
Sat Oct 17, 2009 1:04 pm |
|
tanx
I have done it on a deferent way a went to de db and in the user table i went to the account of anonymous i have done the same put user_allow_viewonline to 0 that works fine as well
this is not working!!!! |
Last edited by welrob on Mon Oct 19, 2009 4:05 pm; edited 1 time in total |
|
|
|
welrob
|
Posted:
Mon Oct 19, 2009 4:04 pm |
|
i have done it your way and it wont doe the trick if i look in the db there is stil a 0 in de tabel instead of the 1 it suppose to be.
The user can not change this value but i dont want hidden user on my board.
The std value is:Code:user_allow_viewonline tinyint(1) Nee 1
|
But it is changing some how but where?????
Please Help
p.s. my trick was hopeless as well |
|
|
|
|
Palbin
|
Posted:
Mon Oct 19, 2009 5:15 pm |
|
Anything we suggested above will not work for existing users. We can fix that, but first does it work for new users? |
|
|
|
|
welrob
|
Posted:
Mon Oct 19, 2009 5:24 pm |
|
it wont work for the new users, now i look in the db every day and select the new user and then i put the 0 to a 1 |
|
|
|
|
Palbin
|
Posted:
Mon Oct 19, 2009 8:36 pm |
|
I'm reinstalling everything on my computer so it may be a few days until I can respond. |
|
|
|
|
Guardian2003
Site Admin
Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam
|
Posted:
Tue Oct 20, 2009 1:50 am |
|
Hidden users only applies to the forum and they are never hidden from the admin. |
|
|
|
|
welrob
|
Posted:
Wed Oct 21, 2009 2:18 pm |
|
Hi Guardian,
I know that i can see the hidden users thats not the problem.
Normal i don't have a problem with it but i have made a board for woman and the owner don't want anybody hidden of the site.
I work with ravennuke now for 3 years and never had a problem with it accept now in the 2.4 version.
Greetz |
|
|
|
|
Palbin
|
Posted:
Wed Oct 21, 2009 3:21 pm |
|
It also applies to the user info block. My comp is DOA at the moment so I an unable to look into this. Maybe one of the other guys can take a look at it. |
|
|
|
|
Guardian2003
|
Posted:
Thu Oct 22, 2009 12:52 am |
|
You can try changing the default value for the field directly in the database
user_allow_viewonline tinyint(1) NOT NULL default '1'
Other than that I don't know what to suggest as essentially, the owner is removing the users legal right to privacy, which I'm uncomfortable with. |
|
|
|
|
Palbin
|
Posted:
Thu Oct 22, 2009 7:32 am |
|
I don't see how it is their right to be hidden. They have the option to not logon and/or sign up in the first place. A user is essentially anonymous unless they decide not to be. |
|
|
|
|
myrtletrees
Involved
Joined: Sep 13, 2005
Posts: 259
Location: Cornfields of Indiana
|
Posted:
Tue Mar 29, 2011 9:53 am |
|
I have the same issue.
If I DEACTIVATE the Allow View Online option in YA Config. Then each user that registers and activates is activated with a Hide Online Status value of "ON".
I've tried all sorts of fixes and nothing seems to work. |
|
|
|
|
|