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)
-   -   vB Easy Archive FINAL - Search Engine Spiderable Hack! Get your posts listed @ google (https://vborg.vbsupport.ru/showthread.php?t=47087)

cklaszlo 01-08-2003 12:34 PM

Quote:

Originally posted by SkuZZy


Nice job! It's good to submit your archive and add a link to it.

Google will add pages at the end of the month. The main spidering happens 5 days after the dance. The dance is when google updates all links and adds newly spidered pages. The dance this month was January 1st. So spidering happens between the 5th and 10th. All the pages spidered between the 5th and 10th will be added on the next dance, which will happen at the end of January or maybe very early febuary. So to answer your question, in about 3 weeks a ++++ load of your pages will be spidered.

On this note, i'd like to add one more thing. Not all your pages will be added to google at once. They only add a certain percentage per month to prevent spamming. I think it's like 2000 pages per month available to be added. (Each thread counts as 1 page). So about 2000 of your threads will get put in google the first month. Be patient though, the next month will get even more added!

SkuZZy

Good to know. Thanks. Now, not that I am complaining but this is now day 5 and crawl.googlebot.com is back at it. For about 4 hours this morning. How many days, on average, will it crawl? And , :D ad revenue page views!!!

Now if someone would only help me in placing a black border around the archive links. hint hint.

Thanks,

Alex

hamed 01-08-2003 01:15 PM

Quote:

Originally posted by SkuZZy


VB code is activated automatically... and your welcome ;)

Thank you for your reply. But some parts of it are not working. Like IMG tags and links.

Tanx again. This hack is the best vb archive system ever :) .

cklaszlo 01-08-2003 01:22 PM

Quote:

Originally posted by hamed


Thank you for your reply. But some parts of it are not working. Like IMG tags and links.

Tanx again. This hack is the best vb archive system ever :) .

For us as well. VB code isn't working:

http://www.thrillnetwork.com/boards/...pic/3616.html?

Thanks,

Alex

NTLDR 01-08-2003 03:05 PM

Quote:

Originally posted by SkuZZy
If you really need to use a color similiar, then use one that is very light.
Thanks, I've changed it to the same colour as my footer text, while were on this kin d of subject, I modified the archive so that if it dedects MSIE or Mozilla in the User Agent then it redirects to the actual page (eg showthread.php?threadid=X), would you suggest that I remove that code? I'm not sure if google would look down on that too, I'm guessing they would.

Quote:

BTW, I like your avatar. Is that you? Or is it one of the three sisters or whatever.
*lol* Unfortunaly its not me, wrong gender for starters ;) Its Rose McGowan who plays Paige in Charmed.

Mutt 01-08-2003 06:40 PM

Quote:

Originally posted by Velocd
For those of you having chdir() problems, the only code you should need inside the chdir() is the following:

PHP Code:

chdir("../forums");
require(
"global.php"); 


I was getting the blank page too, but this fixed it. Thanks

Mutt 01-08-2003 07:32 PM

Quote:

Originally posted by NTLDR
I modified the archive so that if it dedects MSIE or Mozilla in the User Agent then it redirects to the actual page
mind sharing the code changes

I changed a line in topic from this
PHP Code:

echo "<html><body><head><title>[$thread[title]] - $title</title></head><base href=\"$forumurl/\">"

to this
PHP Code:

echo "<html><body><head><title>[$thread[title]] - $title</title>
<script>
var browser_type=navigator.appName
if (browser_type==\"Netscape\"||browser_type==\"Microsoft Internet Explorer\") {
window.location.replace(\"
$forumurl/showthread.php?s=&threadid=$thread[threadid]\")
}
</script>
</head><base href=\"
$forumurl/\">"

It seems to work, but will this screw up the search spidering?

NTLDR 01-08-2003 09:22 PM

Google has been on my site browsing through the archive with no problems, its just the issue of wether or not they allow it. Heres the changes I made:

index.php right after you have required config.php add:

PHP Code:

    // check the browser and redirect if needed
    
if (eregi("MSIE",$HTTP_USER_AGENT)) { // browser is IE
        
header("Location: $forumurl");

    } elseif (
eregi("Mozilla/5.0",$HTTP_USER_AGENT)) { // browser is NS 6
        
header("Location: $forumurl");

    } elseif (
eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
        
header("Location: $forumurl");
    } 

topic again add after requiring config.php:

PHP Code:

    // check the browser and redirect if needed
    
if (eregi("MSIE",$HTTP_USER_AGENT)) { // browser is IE
        
header("Location: $forumurl/showthread.php?threadid=$threadid");

    } elseif (
eregi("Mozilla/5.0",$HTTP_USER_AGENT)) { // browser is NS 6
        
header("Location: $forumurl/showthread.php?threadid=$threadid");

    } elseif (
eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
        
header("Location: $forumurl/showthread.php?threadid=$threadid");
    } 

And forum (as above for code placement):

PHP Code:

// check the browser and redirect if needed
    
if (eregi("MSIE",$HTTP_USER_AGENT)) { // browser is IE
        
header("Location: $forumurl/forumdisplay.php?forumid=$forumid");

    } elseif (
eregi("Mozilla/5.0",$HTTP_USER_AGENT)) { // browser is NS 6
        
header("Location: $forumurl/forumdisplay.php?forumid=$forumid");

    } elseif (
eregi("Mozilla/4.",$HTTP_USER_AGENT)) { // browser is NS4
        
header("Location: $forumurl/forumdisplay.php?forumid=$forumid");
    } 


codewebs 01-08-2003 09:29 PM

isnt that called like mirroring or masking or something? (google spent 5 hours on my archive yesterday :))

codewebs 01-08-2003 09:39 PM

heres the answers: (off google.com)

Quality Guidelines - Specific recommendations:

Avoid hidden text or hidden links.
Don't employ cloaking or sneaky redirects.
Don't send automated queries to Google.
Don't load pages with irrelevant words.
Don't create multiple pages, subdomains, or domains with substantially duplicate content.
Avoid "doorway" pages created just for search engines, or other "cookie cutter" approaches such as affiliate programs with little or no original content

EDIT: Im getting spidered again!!! also i added another hack so threads and forums are .html and google is liking it.

NTLDR 01-08-2003 09:41 PM

Thanks codewebs, do you have a link to that page? I looked for guidelines but couldn't find them!

I think I'll remove the redirects based on browsers to be sure :)


All times are GMT. The time now is 03:53 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.01558 seconds
  • Memory Usage 1,772KB
  • 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
  • (6)bbcode_php_printable
  • (7)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