Important: This page is using cookies (cookies). Using this website without turning off cookies in browser, means that you agree for using it.
Buy Now! Features Downloads

Earn with us!

If you would like to start earning money with vBET join to Affiliate Program.
Results 1 to 10 of 10

Thread: Google showing 3 version of same url in webmaster tools

  1. #1
    Senior Member
    Join Date
    Jun 2010
    Posts
    276

    Default Google showing 3 version of same url in webmaster tools

    Just to be sure, as Ive hinted at this issue in different posts but here is an example of an issue i see in webmaster tools. With 60,000 pages having identical title tags (many from post1 / post2 type issue but i see a lot of this as well


  2. #2
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    hello,
    please paste your links between code tag because I would like to try it.

    I checked this one:
    Code:
    phpBB2/ga/promotions/6949-a.html
    and I have - Page not found.

  3. #3
    Senior Member
    Join Date
    Jun 2010
    Posts
    276

    Default

    let me try again, its not easy to copy and paste like that from webmaster tools.

  4. #4
    Senior Member
    Join Date
    Jun 2010
    Posts
    276

    Default

    here is a message as well

    When we tested a sample of URLs from your Sitemap, we found that some URLs redirect to other locations. We recommend that your Sitemap contain URLs that point to the final destination (the redirect target) instead of redirecting to another URL.

    [code]http://www.allfreechips.com/phpBB2/da/archive-casino-stuff/2861-new-$25-no-deposit-100-free-progressive-spins-expired.html[code]

    here is a duplicate from webmaster

    Code:
    http://www.allfreechips.com/phpBB2/mt/dice/2614-%C5%BBbaljat-sorry-slots-alley-acct-isem.html
    
    http://www.allfreechips.com/phpBB2/mt/dice/2614-maaf-salah-slot-acct-alley-nama.html

  5. #5
    Senior Member
    Join Date
    Jun 2010
    Posts
    276

    Default

    any thoughts on the different variations?

  6. #6
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    I am looking which one redirection is made here by vBSEO.

  7. #7
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    Ok I have some idea.
    Please write here your vBET version on your forum. If you don't have the newest one - you can upgrade vBET to the latest version - 3.4.0.
    In vBET 3.4.0 we made a 301 redirections from old 302 (not permanent).
    If you use this old version of VBET and If somebody will use a bad url he will be redirected to the good one by 302 redirection and google will index it! (so this is not good).

    So you can upgrade vBET to 3.4.0 version or use this solution to make 301 redirect in this place:

    1. open and edit file (and make a COPY!):
    forum root/includes/vbenterprisetranslator_functions_hooks.php
    2. in this file find:
    PHP Code:
    function vbet_global_start(&$template_hook) { 
    3. in this function find:
    PHP Code:
    exec_header_redirect($threadurl); 
    4. and replace with:
    PHP Code:
    vbet_vb_exec_header_redirect($threadurl); 
    5. go to the end of this file and find:
    PHP Code:
    ?> 
    6. put before ?> this code:
    PHP Code:
    function vbet_vb_exec_header_redirect($url)
    {
        global 
    $vbulletin;

        
    $url create_full_url($url);
        
    $url str_replace('&''&'$url); // prevent possible oddity

        
    if (strpos($url"\r\n") !== false)
        {
            
    trigger_error("Header may not contain more than a single header, new line detected."E_USER_ERROR);
        }

        
    header("Location: $url"0301);

        if (
    $vbulletin->options['addheaders'] AND (SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi'))
        {
            
    header('Status: 301 Moved Permanently');
        }

        
    define('NOPMPOPUP'1);
        if (
    defined('NOSHUTDOWNFUNC'))
        {
            
    exec_shut_down();
        }
        exit;

    7. save and test it!

  8. #8
    Senior Member
    Join Date
    Jun 2010
    Posts
    276

    Default

    I will update the code but I already updated the Vbulletin redirect to a perm 301 a while back

  9. #9
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    ok I am waiting for your confirmation.

  10. #10
    vBulletin Enterprise Translator (vBET) Staff
    Join Date
    May 2010
    Posts
    1,000

    Default

    no answer- solved, if not - please wite here and i will open this thread again

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •