Hi Christine,
i did some further investigation on this. I think i found the error. I configured my PHP file with the following line:
PHP Code:
$bild = "./images/banners/$file";
$info = getimagesize($bild);
$id = filesize($bild);
$size = round ($id / 1024 ,2);
But it should be:
PHP Code:
$bild = "images/banners/$file";
$info = getimagesize($bild);
$id = filesize($bild);
$size = round ($id / 1024 ,2);
Compare the first 2 lines. I looked into the source code and the link was before the fix:
PHP Code:
<IMG SRC="http://www.LoveTalks.de/forum/./images/banners/alogo.gif">
and now it is:
PHP Code:
<IMG SRC="http://www.LoveTalks.de/forum/images/banners/alogo.gif">
I think this was the reason for not showing up. Could you please check now if you can see the pictures ? If yes, then i have to either alter the zip file or include a note in the install instructions to point this out.
Thanks for pointing this out and hopefully this caused the problem because it looks obvious. :nervous:
Cheers,