08.01.2008, 12:38
Ich habe den Code direkt eingefügt:
So wie du mir gesagt hast und habe im Footer
die Variabel {$forentoplist} eingefügt, dennoch wird die Toplist nicht unter Impressum und wichtige Regeln angezeigt. Hab ich was falsch gemacht? (Was ja sehr wahrscheinlich ist, dem Ergebniss nach zu Urteilen ^_^")
PHP-Code:
<?php
//Forentoplist extra eingefügt
ob_start();
if(@fsockopen("foren-toplist.de",80,$errno,$errstr,2)) {
@include("http://foren-toplist.de/image3.php?id=Stormsyn&type=php");
}
$forentoplist = ob_get_contents();
ob_end_clean();
/**
* MyBB 1.2
* Copyright © 2006 MyBB Group, All Rights Reserved
*
* Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html
*
* $Id: global.php 3488 2007-11-17 17:27:22Z Tikitiki $
*/
// Load main MyBB core file which begins all of the magic
require_once "./inc/init.php";
$shutdown_queries = array();
// Read the usergroups cache as well as the moderators cache
$groupscache = $cache->read("usergroups");
$mcache = $cache->read("moderators");
~~~~
So wie du mir gesagt hast und habe im Footer
Code:
...
<!-- End copyright -->
<center><br><a href="{$mybb->settings['bburl']}/impressum.php">Impressum und wichtige Regeln</a><br /><br><br>
{$forentoplist}
</center>
...
die Variabel {$forentoplist} eingefügt, dennoch wird die Toplist nicht unter Impressum und wichtige Regeln angezeigt. Hab ich was falsch gemacht? (Was ja sehr wahrscheinlich ist, dem Ergebniss nach zu Urteilen ^_^")