Auf uniqueceramics.eu läuft das Serendipity-Blog und per RSS soll das jeweils aktuelle Bild auf der Website http://www.uniqueceramics.eu gezeigt werden.
Diese Kombi läuft ganz wunderbar auf naturetoprint.de -> nature-to-print.de und genau dieses RSS-Scripte habe ich auch verwendet.
Es handelt sich um denselben Server.
Und in der php.ini steht jeweils:
allow_url_fopen = On;
safe_mode = Off;
in der htacess:
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
Das Skript vom Reader hatte Garvin damals so angepasst:
Code: Select all
echo('<table width="100%" border="0" cellpadding="0" cellspacing="0">');
for ($i=1;(($i<=$this->newscount) && (($i<=$this->maxnewscount) || ($this->maxnewscount<=0)));$i++) {
echo('<tr>');
echo('<td><img src="'.$this->bulletfile.'" border=0 alt=""></td>');
echo('<td width=100%>');
/* GARVIN DEAKTIVIERT START
echo('<a class="s2d" target="_blank" href="'.$this->link[$i].'">'.$this->title[$i].'</a>');
* GARVIN DEAKTIVIERT ENDE */
echo('</td></tr>');
if ($this->description[$i] && $this->showdescription) {
echo ('<tr><td></td><td>');
echo ('<p>'.$this->description[$i].'<br></p>');
echo ('</td></tr>');
}
}
if ($this->footer) {
echo('<tr><td></td><td><p align="right">'.$this->footer.'</p></td></tr>');
}
echo('</table>');http://www.uniqueceramics.eu/index.php? ... index.rss2
Nur angezeigt wird auf der Website nichts. Warum, weshalb, wieso? Wer hilft mir bitte auf die Sprünge. Danke vorab.
Herzlichst
Fiona