vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
vBSEO 3.2.0 Patch Release for vB 3.8 vBSEO Total Support Team Launches DeskPro vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Site Report - Juventud Boricua

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

Go Back   vBulletin SEO Forums > Announcements & Pre-Sales > vBSEO Reviews

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 09-04-2006, 09:25 PM
Peter_Rosado's Avatar
Member
 
Real Name: Peter A. Rosado
Join Date: May 2006
Location: Puerto Rico
Posts: 37
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #2  
Old 09-05-2006, 06:31 PM
Peter_Rosado's Avatar
Member
 
Real Name: Peter A. Rosado
Join Date: May 2006
Location: Puerto Rico
Posts: 37
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #3  
Old 09-06-2006, 06:31 AM
Peter_Rosado's Avatar
Member
 
Real Name: Peter A. Rosado
Join Date: May 2006
Location: Puerto Rico
Posts: 37
Placed Revelant Replacements today
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #4  
Old 09-14-2006, 07:06 AM
Juan Muriente's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Juan Carlos Muriente
Join Date: Jun 2005
Location: Puerto Rico
Posts: 12,769
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
__________________
Juan Muriente / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #5  
Old 09-14-2006, 05:32 PM
Peter_Rosado's Avatar
Member
 
Real Name: Peter A. Rosado
Join Date: May 2006
Location: Puerto Rico
Posts: 37
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #6  
Old 09-14-2006, 11:10 PM
Juan Muriente's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Juan Carlos Muriente
Join Date: Jun 2005
Location: Puerto Rico
Posts: 12,769
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>'
__________________
Juan Muriente / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #7  
Old 09-15-2006, 10:36 AM
Peter_Rosado's Avatar
Member
 
Real Name: Peter A. Rosado
Join Date: May 2006
Location: Puerto Rico
Posts: 37
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)
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Site Report - Gamerz Needs hornstar6969 vBSEO Reviews 64 11-28-2008 04:00 PM
Bug report for this site. hornstar6969 Bug Reporting 2 08-24-2006 10:29 PM


All times are GMT -4. The time now is 04:44 AM.


Powered by vBulletin Version 3.8.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.