ini_set('display_errors', 'off');이렇게 되어 있다... 이 옵션을 on하게 되면 대부분의 경우 문제가 없으나
1.0.6 이하 버전에서 이올린 싱크( 발행) 가 안될 수도 있다.
이럴때는 걍 off로 나두던가( 사는데 아무 지장없음)
blog/sync/item.php
.....
echo ' <author>', htmlspecialchars($author), '</author>', CRLF;
echo ' <pubDate>', $item['pubDate'], '</pubDate>', CRLF;
echo '</response>';
mysql_free_result($result); //요 두줄을 추가 해주면 된다.
mysql_free_result($tag_result);보너스


















