From php 5.2 the function ereg() is deprecated. Using 2.2a my server reported this error several time.

To fix it replace on line 266

if(ereg('HTTP_(.+)',$h,$hp)){

with

if(preg_match('/HTTP_(.+)/',$h,$hp)){

I also noticed the feed was not valid because the string

is not generated on the top of the rss file

If you notice that remove this line 306-307:

echo '' . "n";

echo '' . "n";

Also on line 328 remove the © carachter from the tag

Attached the modified file



More...