As seen originaly
here for v 1.1x ...
Code:
<script language="php">
/*
##############################################################################
# vBulletin Static HTML Creator Version 1.06 #
# Copyright 2000 Paul Pearson wandrer@glcomputers.com #
# Created 6/1/00 Last Modified 6/1/00 #
# Scripts Archive at: http://www.glcomputers.com/Wandrer/ #
##############################################################################
*/
/*
##############################################################################
# Randomize #
##############################################################################
*/
srand((double)microtime()*1000000);
/*
##############################################################################
# Load Required Variables #
##############################################################################
*/
include ("admin/config.php");
$filename_prefix = "topic";
$filename_suffix = ".html";
/*
##############################################################################
# Lets Setup and Connect to the Database #
##############################################################################
*/
$db=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);
$querythreads = "SELECT threadid FROM thread ORDER BY threadid ASC";
$resultthreads = mysql_query($querythreads,$db);
if (mysql_affected_rows($db)==0) {
echo "No threads";
exit;
}
/*
##############################################################################
# Lets Find the Threads #
##############################################################################
*/
$indexfilename = "index-thread" . $filename_suffix;
$indexpointer = fopen("$indexfilename", "w");
while ($thread_array = mysql_fetch_array($resultthreads)) {
/*
##############################################################################
# Go one-by-one through the thread query #
##############################################################################
*/
$threadfilename = $filename_prefix . $thread_array[threadid] . $filename_suffix;
$filepointer = fopen("$threadfilename", "w");
$filedata = '<!--#include virtual=';
$filedata .= "\"showthread.php?threadid=";
$filedata .= "$thread_array[threadid]" . "\"-->";
fwrite ($filepointer, $filedata);
fwrite ($indexpointer, "<p><a href=\"$threadfilename\">$threadfilename</a></p><br>");
fclose($filepointer);
echo "$thread_array[threadid] completed...<br>";
}
fclose($indexpointer);
exit();
</script>
Can anyone update this to work with v2? This script alone has been getting me 300+ unique visitors a day from the Search Engines(
Thank you Wandrer!!) I just tried to update my .html files as i do at the begining of everymonth, but it looks like this dosent work with v2
An update would be awesome.