Hejsa php fans
Jeg har nu prøvet alt, og jeg kan simpelthen ikke få Simplepie til at lade være med at vise denne warning på min side:
Warning:
./cache/a68b04d1d2b0ab56075220ca079d0edf.spc is not writeable in /hsphere/local/home/dondykurt/servalle.dk/wp-content/plugins/simplepie-core/simplepie.inc on line 1769Jeg har skrevet til surftown, og de kan ikke gøre noget.
Jeg har lavet mappen og filerne "writeable(777)"
Min kode på min side ser således ud:
<?php
$feed = new Simplepie('http://servalle.dk/category/nyheder/feed/');
$feed->handle_content_type();
?>
<?php
function shorten($string, $length)
{
// By default, an ellipsis will be appended to the end of the text.
$suffix = '...';
// Convert 'smart' punctuation to 'dumb' punctuation, strip the HTML tags,
// and convert all tabs and line-break characters to single spaces.
$short_desc = trim(str_replace(array("\r","\n", "\t"), ' ', strip_tags($string)));
// Cut the string to the requested length, and strip any extraneous spaces
// from the beginning and end.
$desc = trim(substr($short_desc, 0, $length));
// Find out what the last displayed character is in the shortened string
$lastchar = substr($desc, -1, 1);
// If the last character is a period, an exclamation point, or a question
// mark, clear out the appended text.
if ($lastchar == '.' || $lastchar == '!' || $lastchar == '?') $suffix='';
// Append the text.
$desc .= $suffix;
// Send the new description back to the page.
return $desc;
}
?>
<?php if ($feed->error): ?>
<p><?php echo $feed->error; ?></p>
<?php endif; ?>
<?php foreach ($feed->get_items() as $item): ?>
<div class="news">
<a href="http://servalle.dk/nyhedsarkiv/"><div class="calender"><div class="month"><!-- FEED TID OG DATO --><?php echo $item->get_date('M'); ?><!-- /FEED TID OG DATO --></div><div class="date"><!-- FEED TID OG DATO --><?php echo $item->get_date('j'); ?><!-- /FEED TID OG DATO --></div></div></a>
<div class="txt">
<h3><a href="<?php echo $item->get_permalink(); ?>"><!-- FEED TITEL --><?php echo $item->get_title(); ?><!-- /FEED TITEL --></a></h3>
<p><!-- FEED RESUMÈ --><?php echo shorten($item->get_description(), 150); ?> <a href="<?php echo $item->get_permalink(); ?>">læs mere her</a><!-- /FEED RESUMÈ --></p>
</div>
</div>
<!--</div>-->
<?php endforeach; ?>
Indlæg senest redigeret d. 19.01.2010 13:32 af Bruger #15612