extraman adlı üyeden alıntı: mesajı görüntüle
Warning: Cannot modify header information - headers already sent by (output started at /home/siteadi/public_html/rss.php:1) in /home/siteadi/public_html/Inc/Setup.php on line 11

Warning: Cannot modify header information - headers already sent by (output started at /home/siteadi/public_html/rss.php:1) in /home/siteadi/public_html/Inc/Setup.php on line 12

Bu şekilde hata verdi hocam.
Böyle denermisiniz ve Notepad++ kullaniyorsaniz utf-8 bomsuz olarak kaydedin
<?php
ob_start();  
require_once 'Inc/Setup.php'; 
header("Content-type: text/xml\n\n"); 
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?> 
<rss version=\"2.0\"> 
<channel> 
<title>".$set->siteh1."</title> 
<link>".$siteurl."</link> 
<description>".$set->siteh1." RSS Beslemesi</description> 
<language>".$lang['gl']."-".$lang['gl']."</language> 
<copyright>copyright ".$siteurl."</copyright> 
"; 
$bak = mysql_query("select * from games where status = '1' && etime <= '$thetime' order by id desc limit 10"); 
while($diz = mysql_fetch_object($bak)) { 
    $kat=mysql_fetch_object(mysql_query("select name from category where id='$diz->category'")); 
    $yeniaciklama=strip_tags(html_entity_decode(stripslashes($diz->description), ENT_QUOTES, 'UTF-8')); 
    $kisaltx=mb_substr($yeniaciklama,0,30,"UTF-8"); 
?> 
<item> 
<title><?php echo $diz->name; ?></title> 
<link><?php echo gameurl($diz->id, $diz->sef); ?></link> 
<pubDate><?php echo date("r", $diz->time); ?></pubDate> 
<description><?php echo $kisaltx; ?>...</description> 
<category><?php echo $kat->name; ?></category> 
</item> 
<?php 
} 
echo " 
</channel> 
</rss>"; 
?>