Temada banner sorunu

Temalar ile ilgili soru, sorun ve tartışmalar.

Temada banner sorunu

İleti Netjackson 11.07.2006, 13:03

Phpbb forumum için bir tema yükledim temada herhangi bi sorun çıkmadı ama banner gözükmüyor.

Resim

Bannerla ilgili bi php dosyası var.Belki onda bi sorun vardır diye düşündüm. Yardımcı olursanız minnettar kalırım.

[syntax="php"]<?php


$folder = '.';


$extList = array();
$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpeg';
$extList['jpeg'] = 'image/jpeg';
$extList['png'] = 'image/png';


$img = null;


if (substr($folder,-1) != '/') {
$folder = $folder.'/';
}


if (isset($_GET['img'])) {
$imageInfo = pathinfo($_GET['img']);
if (
isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
file_exists( $folder.$imageInfo['basename'] )
) {
$img = $folder.$imageInfo['basename'];
}
} else {
$fileList = array();
$handle = opendir($folder);
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (
isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
$fileList[] = $file;
}
}
closedir($handle);


if (count($fileList) > 0) {
$imageNumber = time() % count($fileList);
$img = $folder.$fileList[$imageNumber];
}
}
if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
} else {
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate (100, 100)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
imagepng ($im);
imagedestroy($im);
}
}
?>[/syntax]
Netjackson
Üye
Üye
 
İleti: 3
Kayıt: 29.01.2006, 12:32

İleti CeRBeR 11.07.2006, 15:16

o resme sağ tıkla yolunu kontrol et resmi o yolda tarif edilen yer e at veya tema dosyalarının içinden overall_header.tpl dosyasını bul o resmin yolunu kendine göre editle
Kullanıcı avatarı
CeRBeR
Üye
Üye
 
İleti: 232
Kayıt: 05.10.2005, 20:37


Soru(n)lar & Tartışmalar



Kimler çevrimiçi

Bu forumu görüntüleyenler: Kayıtlı kullanıcı yok ve 0 misafir

cron