ptejada
09-11-2009, 05:59 PM
Ok so, every single page i have on my site has been indexed, but my Home Page. Even all the dynamic links of the topics and posts in my forums. The Home page is the most important page on my site, is where my freshes content is. I really need help with this one, i dont know what else to do, i've use every Google tool possible to get this page indexed. Here is the source code:
<?php $page_title = "Home"; $page_meta = "home"; include('includes/header_first.php'); ?>
<?php include('includes/header_second.php'); ?>
<div id="Sections">
<div id="left">
<div class="round">
<h3>Follow on</h3>
<p class="roundDiv"> <a href="http://twitter.com/thechozenfew" target="_blank"><img src="images/twitter_logo.png" width="130"></a></p>
</div>
<!-- FeedSweep v4.0.1.0 --><center>
<script type="text/javascript" src="http://www.feedsweep.com/products/feedsweep/producer.aspx?feeds=http%3a%2f%2ffeeds.ign.com%2fignfeeds%2fps3%2f&title=PS3+News&maxoutput=10&dates ort=descending&displaydates=false&cat=24&width=170&includexmlbutton=false&backgroundcolor=%23FFFFFF& linecolor=%23CCCCCC&headercolor=%23000000&titlecolor=%23000000&textcolor=%23333333&datecolor=%236666 66&titlealignment=center&key=3LeTZHeY6kOUAM0gd0O-Yw&ver=4.0.1.0"></script>
<!-- FeedSweep --></center>
</div>
<div id="right">
<?php include('includes/user_box.php'); ?>
</div>
<div id="center">
<?php
include($phpbb_root_path . 'mods/fetchall/common.' . $phpEx);
include($phpbb_root_path . 'mods/fetchall/fetch.' . $phpEx);
$fetch = new Fetch();
$news = $fetch->fetch_posts(8);
$start = request_var('start', 0);
$limit = 4; // items per page
$items = sizeof($news);
for ($i = $start; ($i < $start + $limit) && ($i < $items); $i++)
{
$PostData =array();
$PostData = array(
'post_time' => date('D M d, Y', $news[$i]['post_time'])
);
echo "<div class='round post'><h1>{$news[$i]['topic_title']}</h1>";
echo "<span>By {$news[$i]['userlink']} | <span>{$PostData['post_time']}</span></span>";
echo "{$news[$i]['post_text']}</div>";
echo "<img class='toTop button roundDiv' src='images/buttons/upArrow.gif' alt='Go to Top'>";
echo "<a class='commentBnt button roundDiv' href='javascript:'>Comments</a>";
echo "<div class='roundDiv echo'><div class='js-kit-comments' uniq='topic-{$news[$i]['topic_id']}' paginate='5' label='Leave a Comment' backwards='yes' ></div></div>";
}
?>
<div id="pagination" class="round">Page <?php echo generate_pagination('home.php', $items, $limit, $start); ?></div>
</div>
</div> <!--Sections Div ends-->
<?php include('includes/footer.php'); ?>
Here is the live link
http://thechozenfew.net/home.php
The PHP code inside the #center Div Fetches the content from my forum, this is the content that is not been indexed at all. So my Google Custom Search is kind of useless right now...
Any Opinion, suggestion, comments, recomendation will be apreciated
Thank You in advance...
<?php $page_title = "Home"; $page_meta = "home"; include('includes/header_first.php'); ?>
<?php include('includes/header_second.php'); ?>
<div id="Sections">
<div id="left">
<div class="round">
<h3>Follow on</h3>
<p class="roundDiv"> <a href="http://twitter.com/thechozenfew" target="_blank"><img src="images/twitter_logo.png" width="130"></a></p>
</div>
<!-- FeedSweep v4.0.1.0 --><center>
<script type="text/javascript" src="http://www.feedsweep.com/products/feedsweep/producer.aspx?feeds=http%3a%2f%2ffeeds.ign.com%2fignfeeds%2fps3%2f&title=PS3+News&maxoutput=10&dates ort=descending&displaydates=false&cat=24&width=170&includexmlbutton=false&backgroundcolor=%23FFFFFF& linecolor=%23CCCCCC&headercolor=%23000000&titlecolor=%23000000&textcolor=%23333333&datecolor=%236666 66&titlealignment=center&key=3LeTZHeY6kOUAM0gd0O-Yw&ver=4.0.1.0"></script>
<!-- FeedSweep --></center>
</div>
<div id="right">
<?php include('includes/user_box.php'); ?>
</div>
<div id="center">
<?php
include($phpbb_root_path . 'mods/fetchall/common.' . $phpEx);
include($phpbb_root_path . 'mods/fetchall/fetch.' . $phpEx);
$fetch = new Fetch();
$news = $fetch->fetch_posts(8);
$start = request_var('start', 0);
$limit = 4; // items per page
$items = sizeof($news);
for ($i = $start; ($i < $start + $limit) && ($i < $items); $i++)
{
$PostData =array();
$PostData = array(
'post_time' => date('D M d, Y', $news[$i]['post_time'])
);
echo "<div class='round post'><h1>{$news[$i]['topic_title']}</h1>";
echo "<span>By {$news[$i]['userlink']} | <span>{$PostData['post_time']}</span></span>";
echo "{$news[$i]['post_text']}</div>";
echo "<img class='toTop button roundDiv' src='images/buttons/upArrow.gif' alt='Go to Top'>";
echo "<a class='commentBnt button roundDiv' href='javascript:'>Comments</a>";
echo "<div class='roundDiv echo'><div class='js-kit-comments' uniq='topic-{$news[$i]['topic_id']}' paginate='5' label='Leave a Comment' backwards='yes' ></div></div>";
}
?>
<div id="pagination" class="round">Page <?php echo generate_pagination('home.php', $items, $limit, $start); ?></div>
</div>
</div> <!--Sections Div ends-->
<?php include('includes/footer.php'); ?>
Here is the live link
http://thechozenfew.net/home.php
The PHP code inside the #center Div Fetches the content from my forum, this is the content that is not been indexed at all. So my Google Custom Search is kind of useless right now...
Any Opinion, suggestion, comments, recomendation will be apreciated
Thank You in advance...