Okay, backup your LinkMe.php file and then replace the contents with this:
Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT','LinkMe');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
// get special data templates from the datastore
// pre-cache templates used by all actions
$globaltemplates = array(
'LinkMe');
// pre-cache templates used by specific actions
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
$advertising = "";
$direktory = "./images/banners";
$handle=opendir($direktory);
while ($file = readdir($handle)) {
$filelist[] = $file;
}
asort($filelist);
while (list ($a, $file) = each ($filelist)) {
if ($file == "." || $file == ".." || $file == "index.htm" || $file == "CVS") {
} else {
$bild = "./images/banners/$file";
$info = getimagesize($bild);
$id = filesize($bild);
$size = round ($id / 1024 ,2);
$advertising .= "<IMG SRC=\"$vboptions[bburl]/images/banners/".$file."\"><BR>Pixel : ". $info[0] ." x " . $info[1] ." ca. ".$size." KB";
$advertising .= "
<BR>
<BR>
<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"650px\">
<tr>
<td class=\"smallfont\" align=\"left\">
Source Code to be linked:</td><td class=\"smallfont\" align=\"right\">
(Box Double-Click copies source code to clipboard)
</td>
</tr>
</table>";
}
}
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('LinkMe') . '");');
?>