Results 1 to 7 of 7

Site Report - Juventud Boricua

This is a discussion on Site Report - Juventud Boricua within the Analysis: Traffic & SERPS forums, part of the vBulletin SEO Discussion category; domain: juventudboricua.com age of site: exactly one month date of vBSEO installation: 4-sept-06 registered users to date: 596 unique users ...

  1. #1
    Member Peter_Rosado's Avatar
    Real Name
    Peter Anthony
    Join Date
    May 2006
    Location
    Puerto Rico
    Posts
    59
    Liked
    0 times

    Site Report - Juventud Boricua

    domain: juventudboricua.com
    age of site: exactly one month
    date of vBSEO installation: 4-sept-06
    registered users to date: 596
    unique users daily to date: 800 - 1k
    serps: doing good.

    I'll keep you guys posted

  2. #2
    Member Peter_Rosado's Avatar
    Real Name
    Peter Anthony
    Join Date
    May 2006
    Location
    Puerto Rico
    Posts
    59
    Liked
    0 times
    Quote Originally Posted by Peter_Rosado View Post
    domain: juventudboricua.com
    age of site: exactly one month
    date of vBSEO installation: 4-sept-06
    registered users to date: 596
    unique users daily to date: 800 - 1k
    serps: doing good.

    I'll keep you guys posted
    mainpage got "hacked" today, the forum was working, good AdSense today.

  3. #3
    Member Peter_Rosado's Avatar
    Real Name
    Peter Anthony
    Join Date
    May 2006
    Location
    Puerto Rico
    Posts
    59
    Liked
    0 times
    Placed Revelant Replacements today

  4. #4
    vBSEO Staff Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,266
    Liked
    586 times
    Your site makes me proud For those not familiarized, "Boricua" is the way we refer to Puerto Ricans - btw, Boricuas rule lol

    Couple points: Try the Functions for Extensibility to vBSEO-enable your homepage. Also, search for www / non-www within the forums to get some rewrite rules to prevent users/spiders from getting to the www (or non-www) version of your pages..

    Finally, why not add your sites to your sig? Those linkbacks can always help

  5. #5
    Member Peter_Rosado's Avatar
    Real Name
    Peter Anthony
    Join Date
    May 2006
    Location
    Puerto Rico
    Posts
    59
    Liked
    0 times
    Quote Originally Posted by Juan Muriente View Post
    Your site makes me proud For those not familiarized, "Boricua" is the way we refer to Puerto Ricans - btw, Boricuas rule lol

    Couple points: Try the Functions for Extensibility to vBSEO-enable your homepage. Also, search for www / non-www within the forums to get some rewrite rules to prevent users/spiders from getting to the www (or non-www) version of your pages..

    Finally, why not add your sites to your sig? Those linkbacks can always help
    Thanks a lot Juan I'm having trouble implementing this on the homepage:
    vBSEO Functions for Extensibility Shall I include it on the header of all external pages? If so, how shall I make it work? It's giving me somewhat of a hard time

  6. #6
    vBSEO Staff Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,266
    Liked
    586 times
    Depending on how your homepage was created, you should be able to either:

    1. Rewrite the whole page content if it is included in one variable first and the output sent like:
    PHP Code:
    $output '<html><head>';
    ..
    $output .= '</body></html>';
    echo 
    $output
    in this case you can add before the last line:
    PHP Code:
    if(include_once('foro/includes/functions_vbseo.php'))
    {
    vbseo_startup();
    $output make_crawlable($output);

    2. Otherwise, find the place where showthread links are included, for instance:
    PHP Code:
    foreach($threads as $thread)
    echo 
    '<a href="showthread.php?t='.$thread['threadid'].'">'.$thread['title'].'</a>'
    and replace with:
    PHP Code:
    include_once('foro/includes/functions_vbseo.php');
    vbseo_startup();
    foreach(
    $threads as $thread)
    echo 
    '<a href="'.vbseo_thread_url_row($thread).'">'.$thread['title'].'</a>'

  7. #7
    Member Peter_Rosado's Avatar
    Real Name
    Peter Anthony
    Join Date
    May 2006
    Location
    Puerto Rico
    Posts
    59
    Liked
    0 times
    Quote Originally Posted by Juan Muriente View Post
    Depending on how your homepage was created, you should be able to either:

    1. Rewrite the whole page content if it is included in one variable first and the output sent like:
    PHP Code:
    $output '<html><head>';
    ..
    $output .= '</body></html>';
    echo 
    $output
    in this case you can add before the last line:
    PHP Code:
    if(include_once('foro/includes/functions_vbseo.php'))
    {
    vbseo_startup();
    $output make_crawlable($output);

    2. Otherwise, find the place where showthread links are included, for instance:
    PHP Code:
    foreach($threads as $thread)
    echo 
    '<a href="showthread.php?t='.$thread['threadid'].'">'.$thread['title'].'</a>'
    and replace with:
    PHP Code:
    include_once('foro/includes/functions_vbseo.php');
    vbseo_startup();
    foreach(
    $threads as $thread)
    echo 
    '<a href="'.vbseo_thread_url_row($thread).'">'.$thread['title'].'</a>'
    thanks I did it for the part that says: "¿Qué hay nuevo?" but I'm having trouble doing it for the javascript.

    This is my "¿Qué hay nuevo?" xml script. I would like to call it 2 times more for the other two RSS feeds, but I get a php error that the function has been called again :( I don't know which variables to adjust or something. HELP
    PHP Code:
    <?php 
    // ######################################################
    // ## configuration
    // ##
    // ## $xml_file= 'http://www.vbulletin.com/forum/external.php?type=xml';
    // ## Adjust this variable to point to your XML feed
    $xml_file 'http://www.juventudboricua.com/foro/external.php?type=xml&count=10';

    // ## configuration end
    // ######################################################


    $is_item false;
    $tag '';
    $title '';
    $description '';
    $link '';
    $n 0;

    $url_array parse_url($xml_file);
    $filename strrchr($url_array['path'], '/');
    $realpath substr($url_array['path'], 0, (strlen($url_array['path']) - strlen($filename)));
    $forumlink $url_array['scheme'] . '://' $url_array['host'] . $realpath '/showthread.php?t=';

    function 
    character_data($parser$data)
    {
        global 
    $is_item$tag$title$author$date$time;
        if (
    $is_item)
        {
            switch (
    $tag)
            {
                case 
    "TITLE":
                    
    $title .= $data;
                break;
                
                case 
    "AUTHOR":
                    
    $author .= $data;
                break;
                
                case 
    "DATE":
                    
    $date .= $data;
                break;
                
                case 
    "TIME":
                    
    $time .= $data;
                break;
            }
        }
    }

    function 
    begin_element($parser$name$attribs)
    {
        global 
    $is_item$tag$attribute;
        if (
    $is_item)
        {
            
    $tag $name;
        }
        else if (
    $name == "THREAD")
        {
            
    $is_item true;
            
    $attribute $attribs[ID];
        }
    }

    function 
    end_element($parser$name)
    {
        global 
    $is_item$title$author$date$time$xml_output$attribute$forumlink;
        if (
    $name == "THREAD")
        {
            
    $description $author " @ " $date "/" $time;
            
    $xml_output .= "<p><a href='" $forumlink $attribute "' class='gold'>" $title "</a>" $description "</p>";
            
    $title "";
            
    $author "";
            
    $date "";
            
    $time "";
            
    $attribute "";
            
    $is_item false;
        }
    }


    $parser xml_parser_create();

    xml_set_element_handler($parser"begin_element""end_element");
    xml_set_character_data_handler($parser"character_data");
    $fp fopen($xml_file,"r");

    while (
    $data fread($fp4096))
    {
        
    xml_parse($parser$datafeof($fp));
    }

    fclose($fp);
    xml_parser_free($parser)
    ?>

Similar Threads

  1. Site Report - Gamerz Needs
    By hornstar6969 in forum Analysis: Traffic & SERPS
    Replies: 82
    Last Post: 12-11-2009, 05:03 AM
  2. Bug report for this site.
    By hornstar6969 in forum Bug Reporting
    Replies: 2
    Last Post: 08-24-2006, 09:29 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
  •