Webdork
11-03-2002, 10:00 PM
Just a very quick hack that will print a static php page listing your categories and topics.
Search engines like Google wont index a dynamic URL off a dynamic URL so by providing a static page listing your topics dynamic URL's you will get a deeper crawl. I know there are different approaches on this board to optimizing for Google, but try this as well. It works :)
I then just create a link from the home page to the this file (you should try and name it sitemap.php or something similar.
Please note that I have deliberately not used any vbulletin templates etc... the goal of this page is to be as simple and clean as possible for crawlers like Google and AlltheWeb to index as much as possible.
Example of output here: http://www.sizematters.com.au/forums/sitemap.php
Just cut and paste the code and play. In another version I made it so the first 100 characters of the first post in each topic was created, but I dont think it helps much.
<?php require('./global.php');
// This file can be saved as any name, but upload to your forum dir.
// Only real variables for you to change. Include the trailing /
$siteurl = "http://www.sizematters.com.au/forums";
$sitename = "SizeMatters";
// You can safely edit the header and footer as well.
?>
<html>
<head>
<title>SizeMatters Forum Site Map</title>
<meta name="description" content="">
<meta name="keywords" content="">
<style>
<!--
h1 { font-family: Verdana; font-size: 14pt; color: #666666 }
h2 { font-family: Verdana; font-size: 12pt; color: #666666 }
body { font-family: Verdana; font-size: 8pt; color: #666666 }
p { font-family: Verdana; font-size: 8pt; color: #666666 }
-->
</style>
</head>
<body>
<?php
echo "\r\n<h1>$sitename Forum Site Map</h1>\r\n";
echo "\r\n<p>Click here to return to <a href='$siteurl/'>$sitename</a></p>\r\n";
echo "\r\n<h2>$sitename Forum Categories</h2>\r\r\n";
$result = mysql_query("SELECT title, forumid, description FROM forum ORDER BY forumid");
echo "<b>Number of Forums: </b>".mysql_num_rows($result)."<br><br>\r\n";
while($row = mysql_fetch_assoc($result))
{
echo "<a href='$siteurl/forumdisplay.php?s=&forumid=".$row["forumid"]."'>".$row["title"]."</a> - ".$row["description"]."<br>\r\n";
}
echo "\r\n<h2>$sitename Most Recent Forum Topics</h2>\r\r\n";
$result = mysql_query("SELECT title, threadid FROM thread ORDER BY threadid LIMIT 20");
echo "<b>20 Most Recent Topics</b><br><br>\r\n";
while($row = mysql_fetch_assoc($result))
{
echo "<a href='$siteurl/showthread.php?s=&threadid=".$row["threadid"]."'>".$row["title"]."</a><br>\r\n";
}
echo "\r\n<h2>$sitename Forum Topics</h2>\r\r\n";
$result = mysql_query("SELECT title, threadid FROM thread ORDER BY title");
echo "<b>Number of Topics: </b>".mysql_num_rows($result)."<br><br>\r\n";
while($row = mysql_fetch_assoc($result))
{
echo "<a href='$siteurl/showthread.php?s=&threadid=".$row["threadid"]."'>".$row["title"]."</a><br>\r\n";
}
?>
</body>
</html>
If you do make some changes that you think work well - please share :)
NOTE: This version WILL show contents of private forums if you have them. If you have certain forums you dont want to have their content listed - see the revised code a couple of posts below.
Search engines like Google wont index a dynamic URL off a dynamic URL so by providing a static page listing your topics dynamic URL's you will get a deeper crawl. I know there are different approaches on this board to optimizing for Google, but try this as well. It works :)
I then just create a link from the home page to the this file (you should try and name it sitemap.php or something similar.
Please note that I have deliberately not used any vbulletin templates etc... the goal of this page is to be as simple and clean as possible for crawlers like Google and AlltheWeb to index as much as possible.
Example of output here: http://www.sizematters.com.au/forums/sitemap.php
Just cut and paste the code and play. In another version I made it so the first 100 characters of the first post in each topic was created, but I dont think it helps much.
<?php require('./global.php');
// This file can be saved as any name, but upload to your forum dir.
// Only real variables for you to change. Include the trailing /
$siteurl = "http://www.sizematters.com.au/forums";
$sitename = "SizeMatters";
// You can safely edit the header and footer as well.
?>
<html>
<head>
<title>SizeMatters Forum Site Map</title>
<meta name="description" content="">
<meta name="keywords" content="">
<style>
<!--
h1 { font-family: Verdana; font-size: 14pt; color: #666666 }
h2 { font-family: Verdana; font-size: 12pt; color: #666666 }
body { font-family: Verdana; font-size: 8pt; color: #666666 }
p { font-family: Verdana; font-size: 8pt; color: #666666 }
-->
</style>
</head>
<body>
<?php
echo "\r\n<h1>$sitename Forum Site Map</h1>\r\n";
echo "\r\n<p>Click here to return to <a href='$siteurl/'>$sitename</a></p>\r\n";
echo "\r\n<h2>$sitename Forum Categories</h2>\r\r\n";
$result = mysql_query("SELECT title, forumid, description FROM forum ORDER BY forumid");
echo "<b>Number of Forums: </b>".mysql_num_rows($result)."<br><br>\r\n";
while($row = mysql_fetch_assoc($result))
{
echo "<a href='$siteurl/forumdisplay.php?s=&forumid=".$row["forumid"]."'>".$row["title"]."</a> - ".$row["description"]."<br>\r\n";
}
echo "\r\n<h2>$sitename Most Recent Forum Topics</h2>\r\r\n";
$result = mysql_query("SELECT title, threadid FROM thread ORDER BY threadid LIMIT 20");
echo "<b>20 Most Recent Topics</b><br><br>\r\n";
while($row = mysql_fetch_assoc($result))
{
echo "<a href='$siteurl/showthread.php?s=&threadid=".$row["threadid"]."'>".$row["title"]."</a><br>\r\n";
}
echo "\r\n<h2>$sitename Forum Topics</h2>\r\r\n";
$result = mysql_query("SELECT title, threadid FROM thread ORDER BY title");
echo "<b>Number of Topics: </b>".mysql_num_rows($result)."<br><br>\r\n";
while($row = mysql_fetch_assoc($result))
{
echo "<a href='$siteurl/showthread.php?s=&threadid=".$row["threadid"]."'>".$row["title"]."</a><br>\r\n";
}
?>
</body>
</html>
If you do make some changes that you think work well - please share :)
NOTE: This version WILL show contents of private forums if you have them. If you have certain forums you dont want to have their content listed - see the revised code a couple of posts below.