Click to See Complete Forum and Search --> : Need Help with my home Page...


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&amp;title=PS3+News&amp;maxoutput=10&amp;dates ort=descending&amp;displaydates=false&amp;cat=24&amp;width=170&amp;includexmlbutton=false&amp;backgroundcolor=%23FFFFFF&amp; linecolor=%23CCCCCC&amp;headercolor=%23000000&amp;titlecolor=%23000000&amp;textcolor=%23333333&amp;datecolor=%236666 66&amp;titlealignment=center&amp;key=3LeTZHeY6kOUAM0gd0O-Yw&amp;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...

developerguru
09-12-2009, 03:11 AM
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&amp;title=PS3+News&amp;maxoutput=10&amp;dates ort=descending&amp;displaydates=false&amp;cat=24&amp;width=170&amp;includexmlbutton=false&amp;backgroundcolor=%23FFFFFF&amp; linecolor=%23CCCCCC&amp;headercolor=%23000000&amp;titlecolor=%23000000&amp;textcolor=%23333333&amp;datecolor=%236666 66&amp;titlealignment=center&amp;key=3LeTZHeY6kOUAM0gd0O-Yw&amp;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...

I checked in google & its cached: http://74.125.153.132/search?hl=en&q=cache%3Ahttp%3A%2F%2Fthechozenfew.net%2F&btnG=Search

ptejada
09-12-2009, 01:39 PM
Yeah, it even has the description in in the META tag as the snippet but the Content on the #center Div is not been index, and need it to be indexed, im using the Custom Google Search as the the main search to search my site.

developerguru
09-14-2009, 05:54 AM
Yeah, it even has the description in in the META tag as the snippet but the Content on the #center Div is not been index, and need it to be indexed, im using the Custom Google Search as the the main search to search my site.

The content in the center section is in php & google isn't able to read the contents in a script which is why you don't see it in its index.

ptejada
09-14-2009, 09:49 AM
The content in the center section is in php & google isn't able to read the contents in a script which is why you don't see it in its index.

But what confuses me is that the whole forum has been indexed and and all the posts and topics are dynamic, Data is pull from a database and it still been indexed...