vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   vbArchive - Search Engine Indexer for vBulletin (https://vborg.vbsupport.ru/showthread.php?t=47667)

sajjid 05-30-2003 02:33 PM

Currently 2 members, 1 guests and 18 web robots (Google) on the boards.|

is it normal tohave 14 google bots on the boards they been on for few hours now i thought they only stay for few mminutes plus what does this mean

Google | Retrieving Password | 02:30 PM | 64.68.82.50

This is what I saw on the "Who's Online" section. What does it mean retrieving password? Is it taking our passwords?

telc 05-30-2003 03:50 PM

Quote:


This is what I saw on the "Who's Online" section. What does it mean retrieving password? Is it taking our passwords?
no its not taking your passwords its just following this URL:

http://www.spinzone.org/forums/member.php?action=lostpw

That as far as it will get.

infiniterb 05-30-2003 04:41 PM

I've never even seen a google bot on the forums and I've been using the Search Archiver hack for about 2 months.

sajjid 05-30-2003 04:44 PM

Quote:

Today at 06:41 PM infiniterb said this in Post #603
I've never even seen a google bot on the forums and I've been using the Search Archiver hack for about 2 months.

come and visit my forums and you will see loads of googlebots
did you submit your site to all the search engines listed in the first post?

infiniterb 05-30-2003 04:51 PM

Yup, did it initially when I installed the hack. Very weird. Now I'm working on the optimizations and making my archive folder .html instead of just www.clantt.com/archive/ in hopes that will help.

sajjid 05-30-2003 05:03 PM

i was going to edit my preious post to say place a link on my forums maybe the bots will pick it up but i see you already done i may it live link you have more chances one of the bots picking it up.
also did you do the

Quote:

Forums Optimizations
You MUST perform also some the mods listed below if you want your forums optimized properly for search engines indexing.
Steps 1 to 3 are vital, the rest is optional.

1. TO STRIP THE sessionhash FROM TEMPLATES (ONLY FOR CRAWLERS), READ MORE HERE.
2. TO BLOCK CRAWLERS GO TO CERTAIN PAGES, READ MORE HERE.
3. TO LINK EACH FORUM/THREAD DIRECTLY TO ARCHIVE FILES, READ MORE HERE.
4. TO DISPLAY NICE LOCATIONS, THE FIX FOR online.php FILE IS HERE.
5. TO DISPLAY CRAWLER NAME INSTEAD OF GUEST ON FRONTPAGE AND ONLINE PAGE, READ MORE HERE. (mod by Inphinity and xiphoid)
6. TO DISPLAY CRAWLER NAME INSTEAD OF GUEST ON ONLINE PAGE only, READ MORE HERE.
7. IF YOU WANT THE MAIN ARCHIVE FILE TO HAVE A .php EXTENSION, READ MORE HERE.
8. TO CHANGE THE threads/posts per page NUMERIC VALUES, READ MORE HERE.
9. TO DISPLAY THE SMILIES AS image parsed, READ MORE HERE (mod by Logician).

IMPORTANT
Kill crawler918.com! READ MORE HERE.
i wonder how will these bot stay on my forums because they been here allday today Thanks to TECK
TECK i must say you have made one hell of a hack i never had this amny visits from bot before

infiniterb 05-30-2003 05:15 PM

Thanks a lot man. I'm having trouble now with the Friendly Urls...it seems to not be working right.

Also, in the user agent checking, where do you put this code:

## function for user ip address checking
## matches full/part of an ip address
## might be useful for people who dont have a .htaccess file
## or those who want to identify bots who dont supply a valid or a cloaked
## useragent. probably should be called on return of 0 from useragentcheck
## in online.php
##
## i think its unnecessary. also the ip address matching isnt great since php
## cant handle CIDR addresses so either you break the ip address up and match
## values or you use ranges (as below) which will also identify ip outside
## the allocated range
## ie crawler918.com
## http://ws.arin.net/cgi-bin/whois.pl?queryinput=!%20NET-12-148-209-192-1
## 12.148.209.192/26
## /26 is 62 ip addresses identifying 12.148.209. means that you're blocking 254 ip
## address which will exclude non rogue ips.
## ip address have a tendancy to change and would result in a fairly bit list.

function useripaddresscheck( $match_addr, $addr_code )
{

$addr = array(
'12.148.209.' => 'www.nameprotect.com|||crawler918.com',
'12.148.196.' => 'www.nameprotect.com|||crawler918.com',
'12.175.0.' => 'www.nameprotect.com|||crawler918.com',

'63.148.99.' => 'www.cyveillance.com|||cyveillance',
'65.118.41.' => 'www.cyveillance.com|||cyveillance'
);

foreach( $addr as $useraddr => $addrurl )
{
if ( preg_match ("/^\d+$/", $useraddr) )
{
$useraddr = $addrurl;
$addrurl = "Web Robot";
}

if ( preg_match ("/^". preg_quote ($useraddr) ."\d+/i", $match_addr) )
{
$addrinfo = preg_split ("/\|\|\|/", $addrurl);
if (!($addrinfo[1])) {
$addrinfo[0] = "http://www.robotstxt.org/wc/active.html";
$addrinfo[1] = "Web Robot ".$useraddr."*";
}

switch ($addr_code) {
case 0:
return 1;
break;
case 1:
return $addrinfo[1];
break;
case 2:
return '</a><a href="http://'. $addrinfo[0] .'" alt="'. $addrinfo[1] .'"><i>'. $addrinfo[1] .'</i>';
break;
}
}
}

}

## ----------------------------------------------------------------------------- ##

infiniterb 05-30-2003 05:49 PM

I'm also having problems with the Friendly URL's not showing up...seems like some of the code isn't exact in the hack as it is in the templates.

sajjid 05-30-2003 06:04 PM

Quote:

Today at 07:15 PM infiniterb said this in Post #607
Thanks a lot man. I'm having trouble now with the Friendly Urls...it seems to not be working right.

Also, in the user agent checking, where do you put this code:

## function for user ip address checking
## matches full/part of an ip address
## might be useful for people who dont have a .htaccess file
## or those who want to identify bots who dont supply a valid or a cloaked
## useragent. probably should be called on return of 0 from useragentcheck
## in online.php
##
## i think its unnecessary. also the ip address matching isnt great since php
## cant handle CIDR addresses so either you break the ip address up and match
## values or you use ranges (as below) which will also identify ip outside
## the allocated range
## ie crawler918.com
## http://ws.arin.net/cgi-bin/whois.pl?queryinput=!%20NET-12-148-209-192-1
## 12.148.209.192/26
## /26 is 62 ip addresses identifying 12.148.209. means that you're blocking 254 ip
## address which will exclude non rogue ips.
## ip address have a tendancy to change and would result in a fairly bit list.

## ----------------------------------------------------------------------------- ##

i was not sure on the last bit because instructions were not very
clear so i left it out here is screen shot of my forums
http://www.spinzone.org/web_ro1.jpg

infiniterb 05-30-2003 06:24 PM

I got my friendly URLs fixed...forgot the Navbar thing at the end.

Yeah, I guess I'll leave that out since I don't know exactly where to put it.


All times are GMT. The time now is 06:13 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01601 seconds
  • Memory Usage 1,754KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete