Results 1 to 9 of 9

Thread: Bad site index

  1. #1
    Join Date
    Dec 2007
    Posts
    21

    Exclamation Bad site index

    Hello

    I have nice indexu dir(7200 page indexed) but when i check google using site:domain.com command i see almost every page has the same description only title different.
    How can i tell google to show only link details description?
    Im running indexu 5.4
    Any idea?

  2. #2
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    That's probably your meta tags at work. You can change them in the admin panel.

  3. #3
    Join Date
    Dec 2007
    Posts
    21

    Exclamation

    Hello

    Ok i make it clear, according to SEO if you have unique content you get better rank. Pls check the link: Here
    You ll see the meta description always same in google.Thats the problem cause for example under arts-humanities/awards/ title should be only (or first word) awards and the indexed description should be the link description.
    I hope you get my point.
    Thanx a lot
    Sam

    Quote Originally Posted by Bruceper View Post
    That's probably your meta tags at work. You can change them in the admin panel.

  4. #4
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    I got your point in your first post, your description meta tags are all the same.

    My answer still stands, change the description tag in your pages. How you change them is up to you. You can do a lot of things with them including using some tags to make them unique per page.

  5. #5
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    For more details, take a look at detail.html and find the line below

    meta_description="$link_description"

    You can alter the meta_description line and use variables there to put whatever you would like for the description.

  6. #6
    Join Date
    Dec 2007
    Posts
    21

    Default

    Well if you see the subpage descriptions what googel indexing you ll notice nothing to do with meta, google dont read meta from subpages thats why all of the subpage description are the same.
    I think thi sis not only my problem.I just installed indexu deluxe on that site and problem is the same.

    Let me show you:

    Top > Reference > Almanacs - Page 1
    the entire directory, on the web. Category List. Arts & Humanities (17); Blogs (2); Business & Economy (65); Computers & Internet (73); Education (16) ...
    www.indexu.eu/reference/almanacs/ - 102k -

    Top > Shopping > Auctions - Page 1
    the entire directory, on the web. Category List. Arts & Humanities (17); Blogs (2); Business & Economy (65); Computers & Internet (73); Education (16) ...
    www.indexu.eu/shopping/auctions/ - 102k


    Top > Recreation & Sports > Booksellers - Page 1
    the entire directory, on the web. Category List. Arts & Humanities (17); Blogs (2); Business & Economy (65); Computers & Internet (73); Education (16) ...
    www.indexu.eu/recreation-sports/booksellers/ - 102k -

    You see? Always the same description whatever i change meta or not!


    Let me show you indexu DEMO directory in google index!

    Browse by category: Top > Accountants - Page 1
    the entire directory, on the web. Category List. Accountants (3); Bonsai and Suiseki (150); Canada (7); Cyprus (1); Directories (21); Education (7) ...
    www.nicecoder.com/demo/indexu/accountants/ - 121k -

    Tag Clouds [J]
    the entire directory, on the web. Category List. Accountants+ (3); Bonsai and Suiseki (150); Canada (7); Cyprus (1); Directories (21); Education (7) ...
    nicecoder.com/demo/indexu/tags/J - 15k -

    Browse by category: Top > Pest and Disease Control > Slugs and ...
    the entire directory, on the web. Category List. Accountants (3); Bonsai and Suiseki (150); Canada (7); Cyprus (1); Directories (21); Education (7) ...
    nicecoder.com/demo/indexu/pest-and-disease-control/slugs-and-snails/ - 105k -



    Meta description in google index always the same even in your demo directory!

    Thanx
    Sam



    Quote Originally Posted by Bruceper View Post
    I got your point in your first post, your description meta tags are all the same.

    My answer still stands, change the description tag in your pages. How you change them is up to you. You can do a lot of things with them including using some tags to make them unique per page.

  7. #7
    Join Date
    Jun 2002
    Location
    Winnipeg Canada
    Posts
    4,913

    Default

    You can change your page titles doing the same thing I described as above.

    page titles, meta tags, description, everything is customizable. Check detail.html and you'll see that you can alter the titles using text and variables.

    The demo by the way, is completely "stock". Nothing in it has been modified.

  8. #8
    Join Date
    Dec 2007
    Posts
    21

    Default

    Great help here
    Thanx a lot Bruceper your the best :d
    Sam


    Quote Originally Posted by Bruceper View Post
    You can change your page titles doing the same thing I described as above.

    page titles, meta tags, description, everything is customizable. Check detail.html and you'll see that you can alter the titles using text and variables.

    The demo by the way, is completely "stock". Nothing in it has been modified.

  9. #9
    Join Date
    Jul 2007
    Posts
    126

    Default

    @lexor

    i don't know wether this post will help you or just confuse you more. if i read your post correctly, then this should help you. what i did was just make some amendments to detail.php & detail.html. This displays description and keywords for search. As far as i recall, there were no changes to any class files. these pieces of code are just additions to the code and should be slotted in to your existing code. hope it helps.

    PHP Code:
    DETAIL.PHP

    // get description
        
    $query      "select description, category_id from idx_link where link_id = '$id'";
        
    $result     $dbConn->Execute($query);
        
    $description $result->Fields("description");
        
    $category_id $result->Fields("category_id");
        
        
    // get keywords
        
    $query      "select keywords, category_id from idx_link where link_id = '$id'";
        
    $result     $dbConn->Execute($query);
        
    $keywords $result->Fields("keywords");
        
    $category_id $result->Fields("category_id");

    DisplayTemplate($theme_path "detail.html",
                        
    "\$page_title,\$description,\$keywords,\$avg_review,\$num_review,\$avg_review_image,\$link_detail,".
                        
    "\$pagination,\$review_rows,\$ofc_review,\$link_id,".
                        
    "\$category_id,\$category_name,\$category_path,\$category_path_with_link");
      } 
    PHP Code:
    DETAIL.HTML

    <%include file="header.html"
              
    title="$page_title"
              
    meta_keywords="$keywords"
              
    meta_description="$description"
    %> 
    remember to make a backup of files before making any changes. if this is not what you are looking for, please excuse me for posting. good luck.
    I know more today than i did yesterday...
    V5.3.0

Similar Threads

  1. index you counter
    By mybeshoo in forum v5.x
    Replies: 11
    Last Post: 04-19-2007, 04:43 PM
  2. top 10 on index
    By landuyt in forum v5.x
    Replies: 1
    Last Post: 11-24-2005, 09:56 AM
  3. Index.php
    By tariqali in forum Templates
    Replies: 1
    Last Post: 07-06-2002, 06:28 PM
  4. index no run
    By sam in forum v5.x
    Replies: 1
    Last Post: 11-21-2001, 07:12 PM

Posting Permissions

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