Quote:
Originally posted by wluke
Change all the include() statements to include_once() statements.
|
Hi there,
thank you for your quick help but it didn't solve my problem. I exchanged all require() and include() to include_once() but the error still occurs:
Fatal error: Cannot redeclare class db_sql_vb in ./admin/db_mysql.php3 on line 7
I guess, it has something to do with those two hacks and with the
$DB_site in it.
NUMBER OF POSTS AND THREADS on non-vB page
PHP Code:
<?php
include_once("./admin/config.php3");
$dbclassname="./admin/db_$dbservertype.php3";
require($dbclassname);
$DB_site=new DB_Sql_vb;
$DB_site->appname="VBulletin";
$DB_site->appshortname="VBulletin (forum)";
$DB_site->database=$dbname;
$DB_site->server=$servername;
$DB_site->user=$dbusername;
$DB_site->password=$dbpassword;
$DB_site->connect();
$numbersposts=$DB_site->query_first("SELECT COUNT(postid) AS posts FROM post");
$numberposts=$numbersposts[posts];
$numbersthreads=$DB_site->query_first("SELECT COUNT(threadid) AS threads FROM thread");
$numberthreads=$numbersthreads[threads];
echo "posts: $numberposts <br>threads: $numberthreads <br>";
mysql_close();
?>
CALENDAR EVENTS on non-vB page
PHP Code:
<?php
include_once('./global.php3');
$events = $DB_site->query("SELECT DATE_FORMAT(eventdate,'%b %d') AS date, eventid, subject
FROM calendar_events
WHERE public = 1 AND eventdate >= '".vbdate('Y-m-d',time())."'
ORDER BY eventdate LIMIT 5");
if ($DB_site->num_rows($events)) {
echo "Next Five Events:<br>";
while ($event = $DB_site->fetch_array($events)) {
echo "<a href='./forum/calendar.php3?s=$session[sessionhash]&action=getinfo&eventid=$event[eventid]'>$event[subject]</a><br>";
}
} else {
echo "No Events";
}
?>
Where is the problem and what would be an easy work around for it?
Thank you!!!
Markus