Hide Bots & Spiders

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
User avatar
madmartyau
Registered User
Posts: 440
Joined: Sun Sep 12, 2004 12:42 pm
Location: Brisbane,Australia
Name: Marty

Re: Hide Bots & Spiders

Post by madmartyau »

This works beautifully! Thank you.
Call me Grumpy.
oogotbagsoo
Registered User
Posts: 10
Joined: Thu Nov 05, 2009 2:23 pm

Re: Hide Bots & Spiders

Post by oogotbagsoo »

does this work for subsilver2 as well? i dont see an xml file for subsilver2 only for prosilver
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Hide Bots & Spiders

Post by MartectX »

oogotbagsoo wrote:does this work for subsilver2 as well? i dont see an xml file for subsilver2 only for prosilver
There are no style changes, the XML file is for the overall modifications done to your board's files.
hojko
Registered User
Posts: 69
Joined: Wed Aug 11, 2004 2:20 am
Location: Slovakia

Re: Hide Bots & Spiders

Post by hojko »

Dont works at 3.0.6, bots are visibles (tested on admin/founder and normal user account).
User avatar
Neuropass
Registered User
Posts: 1163
Joined: Fri Apr 17, 2009 2:02 pm
Location: SciTE4AutoIt3

Re: Hide Bots & Spiders

Post by Neuropass »

hojko wrote:Dont works at 3.0.6, bots are visibles (tested on admin/founder and normal user account).

is that correct?
User avatar
imkingdavid
Former Team Member
Posts: 2673
Joined: Sun Jul 26, 2009 7:59 pm
Location: EST
Name: David King

Re: Hide Bots & Spiders

Post by imkingdavid »

hojko wrote:Dont works at 3.0.6, bots are visibles (tested on admin/founder and normal user account).
Works for me. I literally just installed it on 3.0.6 using AutoMOD. Make sure you did all file edits and purged your cache. ;)
NicksNet wrote:hello,

nice mod, works perfectly ;)

but... how can i hide the bots in the view of last 24 hours?

Screenshot_209.jpg
thanks
I believe you are using the Activity Stats MOD by Highway of Life? If so, just click the link I just showed you and do a find for "How can I get the list to exclude the bots (spiders)?" The fix is right there. ;)
Don't forget to smile today. :)
Please do NOT contact for support via PM or email.
User avatar
Neuropass
Registered User
Posts: 1163
Joined: Fri Apr 17, 2009 2:02 pm
Location: SciTE4AutoIt3

Re: Hide Bots & Spiders

Post by Neuropass »

same here i can still see bots on php3.06. admin founder account. is that normal?
User avatar
madmartyau
Registered User
Posts: 440
Joined: Sun Sep 12, 2004 12:42 pm
Location: Brisbane,Australia
Name: Marty

Re: Hide Bots & Spiders

Post by madmartyau »

Neuropass wrote:same here i can still see bots on php3.06. admin founder account. is that normal?
Admins can still see bots as they are treated like hidden users.
Call me Grumpy.
atomicz
Registered User
Posts: 2
Joined: Tue Jan 26, 2010 7:01 am

Re: Hide Bots & Spiders

Post by atomicz »

Hi,

Apologised if I am asking a silly question. Hope you don't mind.
Is this mod package working well too on phpbb 3.06?
Appreciate it if anyone can advise.

Thank you. :)
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Hide Bots & Spiders

Post by MartectX »

atomicz wrote:Is this mod package working well too on phpbb 3.06?
Here is your answer.
John T. Folden
Registered User
Posts: 188
Joined: Tue Sep 04, 2007 12:16 am

Re: Hide Bots & Spiders

Post by John T. Folden »

Works under 3.0.6 for me...
The Blue Whale Pub - SPN/SF/F TV Discussion Forum
ZOMBIE ALERT: The Walking Dead are coming to AMC!
User avatar
Stitch625
Registered User
Posts: 683
Joined: Wed Jun 20, 2007 3:38 pm
Location: Michigan

Re: Hide Bots & Spiders

Post by Stitch625 »

Very cool mod..Thank you.

I want to hide all bots on the index page from all Moderators and admins as well. We do not wish to see them on the index page but viewonline is ok.

How can this be done? Thanks ;)
User avatar
MartectX
Registered User
Posts: 1324
Joined: Wed Dec 19, 2007 8:05 pm
Location: Marienplatz

Re: Hide Bots & Spiders

Post by MartectX »

Stitch625 wrote:I want to hide all bots on the index page from all Moderators and admins as well.
Here you go.
User avatar
Stitch625
Registered User
Posts: 683
Joined: Wed Jun 20, 2007 3:38 pm
Location: Michigan

Re: Hide Bots & Spiders

Post by Stitch625 »

Thanks!! ;)

Sorry, It was a bit late when I was reading this topic. Looks like I read right past that post. :oops:
User avatar
hinix
Registered User
Posts: 18
Joined: Tue Feb 16, 2010 1:54 pm

Re: Hide Bots & Spiders

Post by hinix »

MartectX wrote:
Snorlaxative wrote:How can I hide them from the users with permission to see them as well.. I just don't like seeing bots at all :cry:
OPEN viewonline.php

FIND

Code: Select all

	if ($row['user_id'] != ANONYMOUS && !isset($prev_id[$row['user_id']]))
ADD BEFORE

Code: Select all

if ($row['user_type'] == USER_NORMAL || $row['user_type'] == USER_FOUNDER || $row['user_id'] == ANONYMOUS)
{
FIND

Code: Select all

$db->sql_freeresult($result);
unset($prev_id, $prev_ip);
ADD BEFORE

Code: Select all

}
OPEN includes/functions.php

FIND

Code: Select all

			$online_users['online_users'][$row['session_user_id']] = (int) $row['session_user_id'];
			if ($row['session_viewonline'])
			{
				$online_users['visible_online']++;
			}
			else
			{
				$online_users['hidden_users'][$row['session_user_id']] = (int) $row['session_user_id'];
				$online_users['hidden_online']++;
			}
REPLACE WITH

Code: Select all

			if ($row['user_type'] == USER_NORMAL || $row['user_type'] == USER_FOUNDER || $row['user_id'] == ANONYMOUS)
			{
				$online_users['online_users'][$row['session_user_id']] = (int) $row['session_user_id'];

				if ($row['session_viewonline'])
				{
					$online_users['visible_online']++;
				}
				else
				{
					$online_users['hidden_users'][$row['session_user_id']] = (int) $row['session_user_id'];
					$online_users['hidden_online']++;
				}
			}
I have question about that modification. Bots can view forum, they are only hide in viewonline etc?
And in that stats I can see how much people watch my forum. Bots are included or not?
I mean here:
Image

Regards.
(\__/)
(O.o)
(> <) <-- This is Bunny. Copy Bunny into your signature to help him on his way to world domination!

Return to “[3.0.x] MOD Database Releases”