The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
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> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|